Loading [MathJax]/jax/output/HTML-CSS/config.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
usr_inflow Module Reference

Defines inflow dirichlet conditions.

Data Types

interface  usr_inflow_eval
 Abstract interface defining a user defined inflow condition (pointwise) More...
 
type  usr_inflow_t
 User defined dirichlet condition for velocity. More...
 

Functions/Subroutines

subroutine usr_inflow_init (this, coef, json)
 Constructor.
 
subroutine usr_inflow_free (this)
 
subroutine usr_inflow_apply_scalar (this, x, n, t, tstep, strong)
 No-op scalar apply.
 
subroutine usr_inflow_apply_scalar_dev (this, x_d, t, tstep, strong)
 No-op scalar apply (device version)
 
subroutine usr_inflow_apply_vector (this, x, y, z, n, t, tstep, strong)
 Apply user defined inflow conditions (vector valued)
 
subroutine usr_inflow_apply_vector_dev (this, x_d, y_d, z_d, t, tstep, strong)
 
subroutine usr_inflow_set_eval (this, usr_eval)
 Assign user provided eval function.
 
subroutine usr_inflow_validate (this)
 Validate user inflow condition.
 
subroutine usr_inflow_finalize (this)
 Finalize.
 

Function/Subroutine Documentation

◆ usr_inflow_apply_scalar()

subroutine usr_inflow::usr_inflow_apply_scalar ( class(usr_inflow_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 
)
private

Definition at line 141 of file usr_inflow.f90.

◆ usr_inflow_apply_scalar_dev()

subroutine usr_inflow::usr_inflow_apply_scalar_dev ( class(usr_inflow_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 151 of file usr_inflow.f90.

◆ usr_inflow_apply_vector()

subroutine usr_inflow::usr_inflow_apply_vector ( class(usr_inflow_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

Definition at line 160 of file usr_inflow.f90.

Here is the call graph for this function:

◆ usr_inflow_apply_vector_dev()

subroutine usr_inflow::usr_inflow_apply_vector_dev ( class(usr_inflow_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 235 of file usr_inflow.f90.

Here is the call graph for this function:

◆ usr_inflow_finalize()

subroutine usr_inflow::usr_inflow_finalize ( class(usr_inflow_t), intent(inout), target  this)
private

Definition at line 375 of file usr_inflow.f90.

◆ usr_inflow_free()

subroutine usr_inflow::usr_inflow_free ( class(usr_inflow_t), intent(inout), target  this)
private

Definition at line 121 of file usr_inflow.f90.

Here is the call graph for this function:

◆ usr_inflow_init()

subroutine usr_inflow::usr_inflow_init ( class(usr_inflow_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 113 of file usr_inflow.f90.

◆ usr_inflow_set_eval()

subroutine usr_inflow::usr_inflow_set_eval ( class(usr_inflow_t), intent(inout this,
procedure(usr_inflow_eval usr_eval 
)
private
Parameters
user_evalUser specified boundary condition for u,v,w (vector)

Definition at line 346 of file usr_inflow.f90.

◆ usr_inflow_validate()

subroutine usr_inflow::usr_inflow_validate ( class(usr_inflow_t), intent(inout this)
private

Definition at line 353 of file usr_inflow.f90.