Neko 0.9.99
A portable framework for high-order spectral element flow simulations
|
Base abstract type for LES models based on the Boussinesq approximation. More...
Public Member Functions | |
procedure, pass(this) | init_base (this, fluid, nut_name, delta_type, if_ext) |
Constructor for the les_model_t (base) class. | |
procedure, pass(this) | free_base (this) |
Destructor for the les_model_t (base) class. | |
procedure, pass(this) | compute_delta (this) |
Compute the LES length-scale. | |
procedure(les_model_init), deferred, pass | init (this, fluid, json) |
The common constructor. | |
procedure(les_model_free), deferred, pass | free (this) |
Destructor. | |
procedure(les_model_compute), deferred, pass | compute (this, t, tstep) |
Compute eddy viscosity. | |
Public Attributes | |
type(time_scheme_controller_t), pointer | ext_bdf => null() |
Pointer to the extrapolation scheme. | |
type(field_series_t), pointer | ulag => null() |
Pointer to the lag list of the velocities. | |
type(field_series_t), pointer | vlag => null() |
type(field_series_t), pointer | wlag => null() |
class(rhs_maker_sumab_t), allocatable | sumab |
Summation of AB/BDF contributions to extrapolate the field. | |
logical | if_ext = .false. |
Logical variable for extrapolation. | |
type(field_t), pointer | nut => null() |
Subgrid kinematic viscosity. | |
character(len=:), allocatable | delta_type |
LES lengthscale type. | |
type(field_t), pointer | delta => null() |
LES lengthscale. | |
type(coef_t), pointer | coef => null() |
SEM coefficients. | |
Definition at line 65 of file les_model.f90.
|
pure virtual |
Definition at line 96 of file les_model.f90.
procedure, pass(this) les_model::les_model_t::compute_delta | ( | class(les_model_t), intent(inout) | this | ) |
Definition at line 90 of file les_model.f90.
|
pure virtual |
Definition at line 94 of file les_model.f90.
Definition at line 88 of file les_model.f90.
|
pure virtual |
Definition at line 92 of file les_model.f90.
procedure, pass(this) les_model::les_model_t::init_base | ( | class(les_model_t), intent(inout) | this, |
class(fluid_scheme_base_t), intent(inout), target | fluid, | ||
character(len=*), intent(in) | nut_name, | ||
character(len=*), intent(in) | delta_type, | ||
logical, intent(in) | if_ext | ||
) |
object | The object to be allocated. |
type_name | The name of the LES model. |
dofmap | SEM map of degrees of freedom. |
coef | SEM coefficients. |
json | A dictionary with parameters. Constructor for the les_model_t (base) class. |
fluid | The fluid_scheme_t object. |
nu_name | The name of the turbulent viscosity field. |
delta_type | The type of filter size. |
if_ext | Whether trapolate the velocity. |
Definition at line 86 of file les_model.f90.
Definition at line 83 of file les_model.f90.
Definition at line 81 of file les_model.f90.
character(len=:), allocatable les_model::les_model_t::delta_type |
Definition at line 79 of file les_model.f90.
type(time_scheme_controller_t), pointer les_model::les_model_t::ext_bdf => null() |
Definition at line 67 of file les_model.f90.
logical les_model::les_model_t::if_ext = .false. |
Definition at line 75 of file les_model.f90.
Definition at line 77 of file les_model.f90.
class(rhs_maker_sumab_t), allocatable les_model::les_model_t::sumab |
Definition at line 73 of file les_model.f90.
type(field_series_t), pointer les_model::les_model_t::ulag => null() |
Definition at line 69 of file les_model.f90.
type(field_series_t), pointer les_model::les_model_t::vlag => null() |
Definition at line 70 of file les_model.f90.
type(field_series_t), pointer les_model::les_model_t::wlag => null() |
Definition at line 71 of file les_model.f90.