Defines overset interface scalar boundary conditions.
|
| subroutine | overset_interface_init (this, coef, json) |
| | Constructor.
|
| |
| subroutine | overset_interface_init_from_components (this, coef, field_name, tol, pad) |
| | Constructor from components.
|
| |
| subroutine | overset_interface_free (this) |
| | Destructor.
|
| |
| subroutine | overset_interface_apply_scalar (this, x, n, time, strong) |
| | Apply scalar.
|
| |
| subroutine | overset_interface_apply_scalar_dev (this, x_d, time, strong, strm) |
| | Apply scalar (device).
|
| |
| subroutine | overset_interface_apply_vector (this, x, y, z, n, time, strong) |
| | (No-op) Apply vector.
|
| |
| subroutine | overset_interface_apply_vector_dev (this, x_d, y_d, z_d, time, strong, strm) |
| | (No-op) Apply vector (device).
|
| |
| subroutine | overset_interface_finalize (this, only_facets) |
| | Finalize by building the mask arrays and preparing interpolation data.
|
| |
| subroutine | overset_interface_update (this, time) |
| | Update values at the overset interface.
|
| |
| subroutine | build_masks_ (this) |
| | Build masks.
|
| |
| subroutine | gather_interface_dofs_ (this) |
| | Gather interface dofs.
|
| |
| subroutine | setup_interpolator_ (this) |
| | Set up the global interpolator.
|
| |
◆ build_masks_()
◆ gather_interface_dofs_()
◆ overset_interface_apply_scalar()
| subroutine overset_interface::overset_interface_apply_scalar |
( |
class(overset_interface_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 |
- Parameters
-
| x | Field onto which to copy the values. |
| n | Size of the array x. |
| time | The current time state. |
Definition at line 255 of file overset_interface.f90.
◆ overset_interface_apply_scalar_dev()
| subroutine overset_interface::overset_interface_apply_scalar_dev |
( |
class(overset_interface_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 |
- Parameters
-
| x_d | Device pointer to the field onto which to copy the values. |
| time | The current time state. |
| strm | Device stream |
Definition at line 284 of file overset_interface.f90.
◆ overset_interface_apply_vector()
| subroutine overset_interface::overset_interface_apply_vector |
( |
class(overset_interface_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 |
◆ overset_interface_apply_vector_dev()
| subroutine overset_interface::overset_interface_apply_vector_dev |
( |
class(overset_interface_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 |
◆ overset_interface_finalize()
◆ overset_interface_free()
◆ overset_interface_init()
- Parameters
-
| [in] | coef | The SEM coefficients. |
| [in,out] | json | The JSON object configuring the boundary condition. |
Definition at line 155 of file overset_interface.f90.
◆ overset_interface_init_from_components()
| subroutine overset_interface::overset_interface_init_from_components |
( |
class(overset_interface_t), intent(inout), target |
this, |
|
|
type(coef_t), intent(in) |
coef, |
|
|
character(len=*), intent(in) |
field_name, |
|
|
real(kind=rp), intent(in), optional |
tol, |
|
|
real(kind=rp), intent(in), optional |
pad |
|
) |
| |
|
private |
◆ overset_interface_update()
Change the coordinates of the interface if set up by the user
Find points if needed - later make sure only in first substep
Definition at line 382 of file overset_interface.f90.
◆ setup_interpolator_()