Neko  0.8.99
A portable framework for high-order spectral element flow simulations
wall_model_bc Module Reference

Defines the wall_model_bc_t type.

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)
 Apply shear stress for a scalar field x. More...
 
subroutine wall_model_bc_apply_vector (this, x, y, z, n, t, tstep)
 Boundary condition apply for a generic wall_model_bc condition to vectors x, y and z. More...
 
subroutine wall_model_bc_apply_scalar_dev (this, x_d, t, tstep)
 Boundary condition apply for a generic wall_model_bc condition to a vector x (device version) More...
 
subroutine wall_model_bc_apply_vector_dev (this, x_d, y_d, z_d, t, tstep)
 Boundary condition apply for a generic wall_model_bc condition to vectors x, y and z (device version) More...
 
subroutine wall_model_bc_init_wall_model_bc (this, coef)
 Constructor. More...
 

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 
)

Definition at line 64 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 
)
private

Definition at line 110 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 
)
private

Definition at line 77 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 
)
private

Definition at line 122 of file wall_model_bc.f90.

◆ wall_model_bc_init_wall_model_bc()

subroutine wall_model_bc::wall_model_bc_init_wall_model_bc ( class(wall_model_bc_t), intent(inout)  this,
type(coef_t), intent(in), target  coef 
)
private
Parameters
coefThe SEM coefficients.

Definition at line 136 of file wall_model_bc.f90.