Defines a dirichlet boundary condition.
|
type | dirichlet_t |
| Generic Dirichlet boundary condition \( x = g \) on \(\partial \Omega\). More...
|
|
|
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, t, tstep, strong) |
| Boundary condition apply for a generic Dirichlet condition to a vector x.
|
|
subroutine | dirichlet_apply_vector (this, x, y, z, n, t, tstep, strong) |
| Boundary condition apply for a generic Dirichlet condition to vectors x, y and z.
|
|
subroutine | dirichlet_apply_scalar_dev (this, x_d, t, tstep, strong) |
| 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, t, tstep, strong) |
| 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) |
| Finalize.
|
|
◆ 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, |
|
|
real(kind=rp), intent(in), optional |
t, |
|
|
integer, intent(in), optional |
tstep, |
|
|
logical, intent(in), optional |
strong |
|
) |
| |
|
private |
◆ dirichlet_apply_scalar_dev()
subroutine dirichlet::dirichlet_apply_scalar_dev |
( |
class(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 |
◆ 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, |
|
|
real(kind=rp), intent(in), optional |
t, |
|
|
integer, intent(in), optional |
tstep, |
|
|
logical, intent(in), optional |
strong |
|
) |
| |
|
private |
◆ dirichlet_apply_vector_dev()
subroutine dirichlet::dirichlet_apply_vector_dev |
( |
class(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 |
◆ dirichlet_finalize()
◆ dirichlet_free()
◆ dirichlet_init()
- Parameters
-
[in] | coef | The SEM coefficients. |
[in,out] | json | The JSON object configuring the boundary condition. |
Definition at line 71 of file dirichlet.f90.
◆ dirichlet_init_from_components()
- Parameters
-
[in] | coef | The SEM coefficients. |
[in] | g | The value to apply at the boundary. |
Definition at line 86 of file dirichlet.f90.
◆ dirichlet_set_g()