Defines inflow dirichlet conditions.
|
| subroutine | inflow_init (this, coef, json) |
| | Constructor.
|
| |
| subroutine | inflow_apply_scalar (this, x, n, time, strong) |
| | No-op scalar apply.
|
| |
| subroutine | inflow_apply_scalar_dev (this, x_d, time, strong, strm) |
| | No-op scalar apply (device version)
|
| |
| subroutine | inflow_apply_vector (this, x, y, z, n, time, strong) |
| | Apply inflow conditions (vector valued)
|
| |
| subroutine | inflow_apply_vector_dev (this, x_d, y_d, z_d, time, strong, strm) |
| | Apply inflow conditions (vector valued) (device version)
|
| |
| subroutine | inflow_free (this) |
| | Destructor.
|
| |
| subroutine | inflow_finalize (this, only_facets) |
| | Finalize.
|
| |
◆ inflow_apply_scalar()
| subroutine inflow::inflow_apply_scalar |
( |
class(inflow_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 |
◆ inflow_apply_scalar_dev()
| subroutine inflow::inflow_apply_scalar_dev |
( |
class(inflow_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 |
◆ inflow_apply_vector()
| subroutine inflow::inflow_apply_vector |
( |
class(inflow_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 |
◆ inflow_apply_vector_dev()
| subroutine inflow::inflow_apply_vector_dev |
( |
class(inflow_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 |
◆ inflow_finalize()
◆ inflow_free()
◆ inflow_init()
- Parameters
-
| [in] | coef | The SEM coefficients. |
| [in,out] | json | The JSON object configuring the boundary condition. |
Definition at line 67 of file inflow.f90.