Neko 1.99.1
A portable framework for high-order spectral element flow simulations
Loading...
Searching...
No Matches
dirichlet Module Reference

Defines a dirichlet boundary condition.

Data Types

type  dirichlet_t
 Generic Dirichlet boundary condition \( x = g \) on \(\partial \Omega\). More...
 

Functions/Subroutines

subroutine dirichlet_init (this, coef, json)
 Constructor from JSON.
 
subroutine dirichlet_init_from_components (this, coef, g)
 Constructor from components.
 
subroutine dirichlet_apply_scalar (this, x, n, time, strong)
 Boundary condition apply for a generic Dirichlet condition to a vector x.
 
subroutine dirichlet_apply_vector (this, x, y, z, n, time, strong)
 Boundary condition apply for a generic Dirichlet condition to vectors x, y and z.
 
subroutine dirichlet_apply_scalar_dev (this, x_d, time, strong, strm)
 Boundary condition apply for a generic Dirichlet condition to a vector x (device version)
 
subroutine dirichlet_apply_vector_dev (this, x_d, y_d, z_d, time, strong, strm)
 Boundary condition apply for a generic Dirichlet condition to vectors x, y and z (device version)
 
subroutine dirichlet_set_g (this, g)
 Set value of \( g \).
 
subroutine dirichlet_free (this)
 Destructor.
 
subroutine dirichlet_finalize (this, only_facets)
 Finalize.
 

Function/Subroutine Documentation

◆ dirichlet_apply_scalar()

subroutine dirichlet::dirichlet_apply_scalar ( class(dirichlet_t), intent(inout this,
real(kind=rp), dimension(n), intent(inout x,
integer, intent(in n,
type(time_state_t), intent(in), optional  time,
logical, intent(in), optional  strong 
)
private

Definition at line 98 of file dirichlet.f90.

◆ dirichlet_apply_scalar_dev()

subroutine dirichlet::dirichlet_apply_scalar_dev ( class(dirichlet_t), intent(inout), target  this,
type(c_ptr), intent(inout x_d,
type(time_state_t), intent(in), optional  time,
logical, intent(in), optional  strong,
type(c_ptr), intent(inout strm 
)
private

Definition at line 155 of file dirichlet.f90.

Here is the call graph for this function:

◆ dirichlet_apply_vector()

subroutine dirichlet::dirichlet_apply_vector ( class(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,
type(time_state_t), intent(in), optional  time,
logical, intent(in), optional  strong 
)
private

Definition at line 124 of file dirichlet.f90.

◆ dirichlet_apply_vector_dev()

subroutine dirichlet::dirichlet_apply_vector_dev ( class(dirichlet_t), intent(inout), target  this,
type(c_ptr), intent(inout x_d,
type(c_ptr), intent(inout y_d,
type(c_ptr), intent(inout z_d,
type(time_state_t), intent(in), optional  time,
logical, intent(in), optional  strong,
type(c_ptr), intent(inout strm 
)
private

Definition at line 178 of file dirichlet.f90.

Here is the call graph for this function:

◆ dirichlet_finalize()

subroutine dirichlet::dirichlet_finalize ( class(dirichlet_t), intent(inout), target  this,
logical, intent(in), optional  only_facets 
)
private

Definition at line 220 of file dirichlet.f90.

◆ dirichlet_free()

subroutine dirichlet::dirichlet_free ( class(dirichlet_t), intent(inout), target  this)
private

Definition at line 212 of file dirichlet.f90.

◆ dirichlet_init()

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

Definition at line 72 of file dirichlet.f90.

◆ dirichlet_init_from_components()

subroutine dirichlet::dirichlet_init_from_components ( class(dirichlet_t), intent(inout), target  this,
type(coef_t), intent(in), target  coef,
real(kind=rp), intent(in g 
)
private
Parameters
[in]coefThe SEM coefficients.
[in]gThe value to apply at the boundary.

Definition at line 87 of file dirichlet.f90.

◆ dirichlet_set_g()

subroutine dirichlet::dirichlet_set_g ( class(dirichlet_t), intent(inout this,
real(kind=rp), intent(in g 
)
private

Definition at line 203 of file dirichlet.f90.