Neko 1.99.1
A portable framework for high-order spectral element flow simulations
|
Implements spalding_t
.
Data Types | |
type | spalding_t |
Wall model based on Spalding's law of the wall. Reference: http://dx.doi.org/10.1115/1.3641728. More... | |
Functions/Subroutines | |
subroutine | spalding_init (this, scheme_name, coef, msk, facet, h_index, json) |
Constructor from JSON. | |
subroutine | spalding_partial_init (this, coef, json) |
Constructor from JSON. | |
subroutine | spalding_finalize (this, msk, facet) |
Finalize the construction using the mask and facet arrays of the bc. | |
subroutine | spalding_init_from_components (this, scheme_name, coef, msk, facet, h_index, kappa, b) |
Constructor from components. | |
subroutine | spalding_compute_nu (this) |
Compute the kinematic viscosity vector. | |
subroutine | spalding_free (this) |
Destructor for the spalding_t (base) class. | |
subroutine | spalding_compute (this, t, tstep) |
Compute the wall shear stress. | |
|
private |
t | The time value. |
tstep | The current time-step. |
Definition at line 193 of file spalding.f90.
|
private |
|
private |
msk | The boundary mask. |
facet | The boundary facets. |
Definition at line 125 of file spalding.f90.
|
private |
Definition at line 183 of file spalding.f90.
subroutine spalding::spalding_init | ( | class(spalding_t), intent(inout) | this, |
character(len=*), intent(in) | scheme_name, | ||
type(coef_t), intent(in) | coef, | ||
integer, dimension(:), intent(in) | msk, | ||
integer, dimension(:), intent(in) | facet, | ||
integer, intent(in) | h_index, | ||
type(json_file), intent(inout) | json | ||
) |
scheme_name | The name of the scheme for which the wall model is used. |
coef | SEM coefficients. |
msk | The boundary mask. |
facet | The boundary facets. |
h_index | The off-wall index of the sampling cell. |
json | A dictionary with parameters. |
Definition at line 91 of file spalding.f90.
|
private |
scheme_name | The name of the scheme for which the wall model is used. |
coef | SEM coefficients. |
msk | The boundary mask. |
facet | The boundary facets. |
h_index | The off-wall index of the sampling cell. |
kappa | The von Karman coefficient. |
B | The log-law intercept. |
Definition at line 142 of file spalding.f90.
|
private |
coef | SEM coefficients. |
json | A dictionary with parameters. |
Definition at line 111 of file spalding.f90.