MPI-AMRVAC 3.1
The MPI - Adaptive Mesh Refinement - Versatile Advection Code (development version)
|
The lookup table type. There can be one or more columns, for which values can be looked up for a given 'x-coordinate'. More...
Public Attributes | |
integer | n_points |
The number of points. | |
integer | n_cols |
The number of columns. | |
real(dp) | x_min |
The minimum lookup coordinate. | |
real(dp) | dx |
The x-spacing in the lookup coordinate. | |
real(dp) | inv_dx |
The inverse x-spacing. | |
real(dp), dimension(:, :), allocatable | cols_rows |
The table in column-major order. | |
real(dp), dimension(:, :), allocatable | rows_cols |
The table in row-major order. | |
The lookup table type. There can be one or more columns, for which values can be looked up for a given 'x-coordinate'.
Definition at line 19 of file mod_lookup_table.t.
real(dp), dimension(:, :), allocatable mod_lookup_table::lt_t::cols_rows |
The table in column-major order.
Definition at line 27 of file mod_lookup_table.t.
real(dp) mod_lookup_table::lt_t::dx |
The x-spacing in the lookup coordinate.
Definition at line 23 of file mod_lookup_table.t.
real(dp) mod_lookup_table::lt_t::inv_dx |
The inverse x-spacing.
Definition at line 24 of file mod_lookup_table.t.
integer mod_lookup_table::lt_t::n_cols |
The number of columns.
Definition at line 21 of file mod_lookup_table.t.
integer mod_lookup_table::lt_t::n_points |
The number of points.
Definition at line 20 of file mod_lookup_table.t.
real(dp), dimension(:, :), allocatable mod_lookup_table::lt_t::rows_cols |
The table in row-major order.
Definition at line 28 of file mod_lookup_table.t.
real(dp) mod_lookup_table::lt_t::x_min |
The minimum lookup coordinate.
Definition at line 22 of file mod_lookup_table.t.