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
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, t, tstep, strong)
 No-op scalar apply.
 
subroutine blasius_apply_scalar_dev (this, x_d, t, tstep, strong)
 No-op scalar apply (device version)
 
subroutine blasius_apply_vector (this, x, y, z, n, t, tstep, strong)
 Apply blasius conditions (vector valued)
 
subroutine blasius_apply_vector_dev (this, x_d, y_d, z_d, t, tstep, strong)
 Apply blasius conditions (vector valued) (device version)
 
subroutine blasius_set_params (this, uinf, delta, type)
 Set Blasius parameters.
 
subroutine blasius_finalize (this)
 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,
real(kind=rp), intent(in), optional  t,
integer, intent(in), optional  tstep,
logical, intent(in), optional  strong 
)
private

Definition at line 159 of file blasius.f90.

◆ blasius_apply_scalar_dev()

subroutine blasius::blasius_apply_scalar_dev ( class(blasius_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 169 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,
real(kind=rp), intent(in), optional  t,
integer, intent(in), optional  tstep,
logical, intent(in), optional  strong 
)
private

Definition at line 178 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)  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 224 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)
private

Definition at line 327 of file blasius.f90.

◆ blasius_free()

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

Definition at line 138 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 coef,
type(json_file), intent(inout json 
)
Parameters
[in]coefThe SEM coefficients.
[in,out]jsonThe JSON object configuring the boundary condition.

Definition at line 81 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 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 109 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 302 of file blasius.f90.