Defines a zero-valued Dirichlet boundary condition.
|
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...
|
|
|
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.
|
|
◆ 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 |
◆ 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 |
◆ 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 |
◆ 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 |
◆ zero_dirichlet_finalize()
◆ zero_dirichlet_free()
◆ zero_dirichlet_init()
- Parameters
-
[in] | coef | The SEM coefficients. |
[in,out] | json | The JSON object configuring the boundary condition. |
Definition at line 71 of file zero_dirichlet.f90.
◆ zero_dirichlet_init_from_components()