Loading [MathJax]/extensions/tex2jax.js
Neko 0.9.99
A portable framework for high-order spectral element flow simulations
All Classes Namespaces Files Functions Variables Typedefs Enumerator Macros Pages
wall_model_bc Module Reference

Defines the wall_model_bc_t type. Maintainer: Timofey Mukha.

Data Types

type  wall_model_bc_t
 A shear stress boundary condition, computing the stress values using a wall model. More...
 

Functions/Subroutines

subroutine wall_model_bc_apply_scalar (this, x, n, t, tstep, strong)
 Apply shear stress for a scalar field x.
 
subroutine wall_model_bc_apply_vector (this, x, y, z, n, t, tstep, strong)
 Apply the boundary condition to the right-hand side.
 
subroutine wall_model_bc_apply_scalar_dev (this, x_d, t, tstep, strong)
 Boundary condition apply for a generic wall_model_bc condition to a vector x (device version)
 
subroutine wall_model_bc_apply_vector_dev (this, x_d, y_d, z_d, t, tstep, strong)
 Boundary condition apply for a generic wall_model_bc condition to vectors x, y and z (device version)
 
subroutine wall_model_bc_init (this, coef, json)
 Constructor.
 
subroutine wall_model_bc_free (this)
 Destructor.
 
subroutine wall_model_bc_finalize (this)
 Finalize by building mask arrays and init'ing the wall model.
 

Function/Subroutine Documentation

◆ wall_model_bc_apply_scalar()

subroutine wall_model_bc::wall_model_bc_apply_scalar ( class(wall_model_bc_t), intent(inout this,
real(kind=rp), dimension(n), intent(inout x,
integer, intent(in n,
real(kind=rp), intent(in), optional  t,
integer, intent(in), optional  tstep,
logical, intent(in), optional  strong 
)

Definition at line 78 of file wall_model_bc.f90.

◆ wall_model_bc_apply_scalar_dev()

subroutine wall_model_bc::wall_model_bc_apply_scalar_dev ( class(wall_model_bc_t), intent(inout), target  this,
type(c_ptr)  x_d,
real(kind=rp), intent(in), optional  t,
integer, intent(in), optional  tstep,
logical, intent(in), optional  strong 
)
private

Definition at line 143 of file wall_model_bc.f90.

◆ wall_model_bc_apply_vector()

subroutine wall_model_bc::wall_model_bc_apply_vector ( class(wall_model_bc_t), intent(inout this,
real(kind=rp), dimension(n), intent(inout x,
real(kind=rp), dimension(n), intent(inout y,
real(kind=rp), dimension(n), intent(inout z,
integer, intent(in n,
real(kind=rp), intent(in), optional  t,
integer, intent(in), optional  tstep,
logical, intent(in), optional  strong 
)
private
Parameters
xThe x component of the right-hand side
yThe y component of the right-hand side
zThe z component of the right-hand side
nThe size of the right-hand side arrays.
tThe time value.
tstepThe time step.

Definition at line 97 of file wall_model_bc.f90.

◆ wall_model_bc_apply_vector_dev()

subroutine wall_model_bc::wall_model_bc_apply_vector_dev ( class(wall_model_bc_t), intent(inout), target  this,
type(c_ptr)  x_d,
type(c_ptr)  y_d,
type(c_ptr)  z_d,
real(kind=rp), intent(in), optional  t,
integer, intent(in), optional  tstep,
logical, intent(in), optional  strong 
)
private

Definition at line 156 of file wall_model_bc.f90.

◆ wall_model_bc_finalize()

subroutine wall_model_bc::wall_model_bc_finalize ( class(wall_model_bc_t), intent(inout), target  this)
private

Definition at line 195 of file wall_model_bc.f90.

◆ wall_model_bc_free()

subroutine wall_model_bc::wall_model_bc_free ( class(wall_model_bc_t), intent(inout), target  this)
private

Definition at line 186 of file wall_model_bc.f90.

◆ wall_model_bc_init()

subroutine wall_model_bc::wall_model_bc_init ( class(wall_model_bc_t), intent(inout), target  this,
type(coef_t), intent(in coef,
type(json_file), intent(inout json 
)
private
Parameters
[in]coefThe SEM coefficients.
[in,out]jsonThe JSON object configuring the boundary condition.

Definition at line 173 of file wall_model_bc.f90.