Neko 1.99.1
A portable framework for high-order spectral element flow simulations
|
Implements wall_model_t
.
Data Types | |
type | allocator_entry |
Called in user modules to add an allocator for custom types. More... | |
interface | wall_model_allocate |
Wall model factory. Both constructs and initializes the object. More... | |
interface | wall_model_compute |
Compute wall shear stress. More... | |
interface | wall_model_finalize |
Finilzation of partial construction, similar to bc_t More... | |
interface | wall_model_free |
Destructor. More... | |
interface | wall_model_init |
Common constructor. More... | |
interface | wall_model_partial_init |
Partial constructor from JSON, meant to work as the first stage of initialization before the finalize call. More... | |
type | wall_model_t |
Base abstract type for wall-stress models for wall-modelled LES. More... | |
Functions/Subroutines | |
subroutine | wall_model_init_base (this, scheme_name, coef, msk, facet, index) |
Constructor for the wall_model_t (base) class. | |
subroutine | wall_model_partial_init_base (this, coef, json) |
Partial initialization based on JSON, prior to knowing the mask and facets. | |
subroutine | wall_model_finalize_base (this, msk, facet) |
subroutine | wall_model_free_base (this) |
Destructor for the wall_model_t (base) class. | |
subroutine | wall_model_find_points (this) |
Find sampling points based on the requested index. | |
subroutine | wall_model_compute_mag_field (this) |
Variables | |
type(allocator_entry), dimension(:), allocatable | wall_model_registry |
Registry of wall model allocators for user-defined types. | |
integer | wall_model_registry_size = 0 |
The size of the wall_model_registry | |
|
private |
|
private |
Definition at line 333 of file wall_model.f90.
|
private |
|
private |
|
private |
coef | SEM coefficients. |
msk | The underlying mask of the boundary condition. |
facet,The | underlying facet index list of the boundary condition. |
scheme_name | The name of the scheme for which the wall model is used. |
index | The off-wall index of the sampling point. |
Definition at line 283 of file wall_model.f90.
|
private |
coef | SEM coefficients. |
The | name of the scheme for which the wall model is used. |
json | A dictionary with parameters. |
Definition at line 312 of file wall_model.f90.
type(allocator_entry), dimension(:), allocatable wall_model::wall_model_registry |
Definition at line 268 of file wall_model.f90.
|
private |
Definition at line 271 of file wall_model.f90.