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

Defines a Blasius profile dirichlet condition.

Data Types

type  blasius_t
 Blasius profile for inlet (vector valued). More...
 

Functions/Subroutines

subroutine blasius_init (this, coef, json)
 Constructor.
 
subroutine blasius_init_from_components (this, coef, delta, uinf, approximation)
 Constructor from components.
 
subroutine blasius_free (this)
 
subroutine blasius_apply_scalar (this, x, n, time, strong)
 No-op scalar apply.
 
subroutine blasius_apply_scalar_dev (this, x_d, time, strong, strm)
 No-op scalar apply (device version)
 
subroutine blasius_apply_vector (this, x, y, z, n, time, strong)
 Apply blasius conditions (vector valued)
 
subroutine blasius_apply_vector_dev (this, x_d, y_d, z_d, time, strong, strm)
 Apply blasius conditions (vector valued) (device version)
 
subroutine blasius_set_params (this, uinf, delta, type)
 Set Blasius parameters.
 
subroutine blasius_finalize (this, only_facets)
 Finalize.
 

Function/Subroutine Documentation

◆ blasius_apply_scalar()

subroutine blasius::blasius_apply_scalar ( class(blasius_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 162 of file blasius.f90.

◆ blasius_apply_scalar_dev()

subroutine blasius::blasius_apply_scalar_dev ( class(blasius_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 171 of file blasius.f90.

◆ blasius_apply_vector()

subroutine blasius::blasius_apply_vector ( class(blasius_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 180 of file blasius.f90.

Here is the call graph for this function:

◆ blasius_apply_vector_dev()

subroutine blasius::blasius_apply_vector_dev ( class(blasius_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 229 of file blasius.f90.

Here is the call graph for this function:

◆ blasius_finalize()

subroutine blasius::blasius_finalize ( class(blasius_t), intent(inout), target  this,
logical, intent(in), optional  only_facets 
)
private

Definition at line 338 of file blasius.f90.

◆ blasius_free()

subroutine blasius::blasius_free ( class(blasius_t), intent(inout), target  this)
private

Definition at line 141 of file blasius.f90.

Here is the call graph for this function:

◆ blasius_init()

subroutine blasius::blasius_init ( class(blasius_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 82 of file blasius.f90.

◆ blasius_init_from_components()

subroutine blasius::blasius_init_from_components ( class(blasius_t), intent(inout), target  this,
type(coef_t), intent(in), target  coef,
real(kind=rp)  delta,
real(kind=rp), dimension(3)  uinf,
character(len=*)  approximation 
)
private
Parameters
[in]coefThe SEM coefficients.
[in]deltaThe boundary layer thickness.
[in]uinfThe freestream velocity.
[in]approximationThe type of approximation for the profile.

Definition at line 110 of file blasius.f90.

Here is the call graph for this function:

◆ blasius_set_params()

subroutine blasius::blasius_set_params ( class(blasius_t), intent(inout this,
real(kind=rp), dimension(3), intent(in uinf,
real(kind=rp), intent(in delta,
character(len=*)  type 
)
private

Definition at line 311 of file blasius.f90.