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

Defines a zero-valued Dirichlet boundary condition.

Data Types

type  zero_dirichlet_t
 Zero-valued Dirichlet boundary condition. Used for no-slip walls, but also for various auxillary conditions, such as for residuals. More...
 

Functions/Subroutines

subroutine zero_dirichlet_init (this, coef, json)
 Constructor.
 
subroutine zero_dirichlet_init_from_components (this, coef)
 Constructor.
 
subroutine zero_dirichlet_apply_scalar (this, x, n, t, tstep, strong)
 Apply boundary condition to a scalar field. to a vector x.
 
subroutine zero_dirichlet_apply_vector (this, x, y, z, n, t, tstep, strong)
 Apply boundary condition to a vector field.
 
subroutine zero_dirichlet_apply_scalar_dev (this, x_d, t, tstep, strong)
 Apply boundary condition to a scalar field, device version.
 
subroutine zero_dirichlet_apply_vector_dev (this, x_d, y_d, z_d, t, tstep, strong)
 Apply boundary condition to a vector field, device version.
 
subroutine zero_dirichlet_free (this)
 Destructor.
 
subroutine zero_dirichlet_finalize (this)
 Finalize.
 

Function/Subroutine Documentation

◆ zero_dirichlet_apply_scalar()

subroutine zero_dirichlet::zero_dirichlet_apply_scalar ( class(zero_dirichlet_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 90 of file zero_dirichlet.f90.

◆ zero_dirichlet_apply_scalar_dev()

subroutine zero_dirichlet::zero_dirichlet_apply_scalar_dev ( class(zero_dirichlet_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 140 of file zero_dirichlet.f90.

Here is the call graph for this function:

◆ zero_dirichlet_apply_vector()

subroutine zero_dirichlet::zero_dirichlet_apply_vector ( class(zero_dirichlet_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 113 of file zero_dirichlet.f90.

◆ zero_dirichlet_apply_vector_dev()

subroutine zero_dirichlet::zero_dirichlet_apply_vector_dev ( class(zero_dirichlet_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 157 of file zero_dirichlet.f90.

Here is the call graph for this function:

◆ zero_dirichlet_finalize()

subroutine zero_dirichlet::zero_dirichlet_finalize ( class(zero_dirichlet_t), intent(inout), target  this)
private

Definition at line 186 of file zero_dirichlet.f90.

◆ zero_dirichlet_free()

subroutine zero_dirichlet::zero_dirichlet_free ( class(zero_dirichlet_t), intent(inout), target  this)
private

Definition at line 178 of file zero_dirichlet.f90.

◆ zero_dirichlet_init()

subroutine zero_dirichlet::zero_dirichlet_init ( class(zero_dirichlet_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 71 of file zero_dirichlet.f90.

◆ zero_dirichlet_init_from_components()

subroutine zero_dirichlet::zero_dirichlet_init_from_components ( class(zero_dirichlet_t), intent(inout), target  this,
type(coef_t), intent(in coef 
)
private
Parameters
[in]coefThe SEM coefficients.

Definition at line 81 of file zero_dirichlet.f90.