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

Defines a dong outflow condition.

Data Types

type  dong_outflow_t
 Dong outflow condition Follows "A Convective-like Energy-Stable Open Boundary Condition for Simulations of Incompressible Flows" by S. Dong. More...
 

Functions/Subroutines

subroutine dong_outflow_init (this, coef, json)
 Constructor.
 
subroutine dong_outflow_apply_scalar (this, x, n, t, tstep, strong)
 Boundary condition apply for a generic Dirichlet condition to a vector x.
 
subroutine dong_outflow_apply_vector (this, x, y, z, n, t, tstep, strong)
 Boundary condition apply for a generic Dirichlet condition to vectors x, y and z.
 
subroutine dong_outflow_apply_scalar_dev (this, x_d, t, tstep, strong)
 Boundary condition apply for a generic Dirichlet condition to a vector x (device version)
 
subroutine dong_outflow_apply_vector_dev (this, x_d, y_d, z_d, t, tstep, strong)
 Boundary condition apply for a generic Dirichlet condition to vectors x, y and z (device version)
 
subroutine dong_outflow_free (this)
 Destructor.
 
subroutine dong_outflow_finalize (this)
 Finalize.
 

Function/Subroutine Documentation

◆ dong_outflow_apply_scalar()

subroutine dong_outflow::dong_outflow_apply_scalar ( class(dong_outflow_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 99 of file dong_outflow.f90.

Here is the call graph for this function:

◆ dong_outflow_apply_scalar_dev()

subroutine dong_outflow::dong_outflow_apply_scalar_dev ( class(dong_outflow_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 147 of file dong_outflow.f90.

Here is the call graph for this function:

◆ dong_outflow_apply_vector()

subroutine dong_outflow::dong_outflow_apply_vector ( class(dong_outflow_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 133 of file dong_outflow.f90.

◆ dong_outflow_apply_vector_dev()

subroutine dong_outflow::dong_outflow_apply_vector_dev ( class(dong_outflow_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 169 of file dong_outflow.f90.

◆ dong_outflow_finalize()

subroutine dong_outflow::dong_outflow_finalize ( class(dong_outflow_t), intent(inout), target  this)
private

Definition at line 193 of file dong_outflow.f90.

Here is the call graph for this function:

◆ dong_outflow_free()

subroutine dong_outflow::dong_outflow_free ( class(dong_outflow_t), intent(inout), target  this)
private

Definition at line 185 of file dong_outflow.f90.

◆ dong_outflow_init()

subroutine dong_outflow::dong_outflow_init ( class(dong_outflow_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 83 of file dong_outflow.f90.