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
inflow Module Reference

Defines inflow dirichlet conditions.

Data Types

type  inflow_t
 Dirichlet condition for inlet (vector valued) More...
 

Functions/Subroutines

subroutine inflow_init (this, coef, json)
 Constructor.
 
subroutine inflow_apply_scalar (this, x, n, t, tstep, strong)
 No-op scalar apply.
 
subroutine inflow_apply_scalar_dev (this, x_d, t, tstep, strong)
 No-op scalar apply (device version)
 
subroutine inflow_apply_vector (this, x, y, z, n, t, tstep, strong)
 Apply inflow conditions (vector valued)
 
subroutine inflow_apply_vector_dev (this, x_d, y_d, z_d, t, tstep, strong)
 Apply inflow conditions (vector valued) (device version)
 
subroutine inflow_free (this)
 Destructor.
 
subroutine inflow_finalize (this)
 Finalize.
 

Function/Subroutine Documentation

◆ inflow_apply_scalar()

subroutine inflow::inflow_apply_scalar ( class(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 78 of file inflow.f90.

◆ inflow_apply_scalar_dev()

subroutine inflow::inflow_apply_scalar_dev ( class(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 88 of file inflow.f90.

◆ inflow_apply_vector()

subroutine inflow::inflow_apply_vector ( class(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 97 of file inflow.f90.

◆ inflow_apply_vector_dev()

subroutine inflow::inflow_apply_vector_dev ( class(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 124 of file inflow.f90.

Here is the call graph for this function:

◆ inflow_finalize()

subroutine inflow::inflow_finalize ( class(inflow_t), intent(inout), target  this)
private

Definition at line 151 of file inflow.f90.

◆ inflow_free()

subroutine inflow::inflow_free ( class(inflow_t), intent(inout), target  this)
private

Definition at line 144 of file inflow.f90.

◆ inflow_init()

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

Definition at line 66 of file inflow.f90.