Defines a shear stress boundary condition for a vector field. Maintainer: Timofey Mukha.
|
| subroutine | shear_stress_apply_scalar (this, x, n, time, strong) |
| | Apply shear stress for a scalar field x.
|
| |
| subroutine | shear_stress_apply_vector (this, x, y, z, n, time, strong) |
| | Boundary condition apply for a generic shear_stress condition to vectors x, y and z.
|
| |
| subroutine | shear_stress_apply_scalar_dev (this, x_d, time, strong, strm) |
| | Boundary condition apply for a generic shear_stress condition to a vector x (device version)
|
| |
| subroutine | shear_stress_apply_vector_dev (this, x_d, y_d, z_d, time, strong, strm) |
| | Boundary condition apply for a generic shear_stress condition to vectors x, y and z (device version)
|
| |
| subroutine | shear_stress_init (this, coef, json) |
| | Constructor.
|
| |
| subroutine | shear_stress_init_from_components (this, coef, value) |
| | Constructor from components.
|
| |
| subroutine | shear_stress_finalize (this) |
| |
| subroutine | shear_stress_set_stress_scalar (this, tau_x, tau_y, tau_z) |
| | Set the value of the shear stress vector using 3 scalars.
|
| |
| subroutine | shear_stress_set_stress_array (this, tau_x, tau_y, tau_z) |
| | Set the shear stress components.
|
| |
| subroutine | shear_stress_free (this) |
| | Destructor.
|
| |
◆ shear_stress_apply_scalar()
| subroutine shear_stress::shear_stress_apply_scalar |
( |
class(shear_stress_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 |
|
) |
| |
◆ shear_stress_apply_scalar_dev()
| subroutine shear_stress::shear_stress_apply_scalar_dev |
( |
class(shear_stress_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 |
◆ shear_stress_apply_vector()
| subroutine shear_stress::shear_stress_apply_vector |
( |
class(shear_stress_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 |
◆ shear_stress_apply_vector_dev()
| subroutine shear_stress::shear_stress_apply_vector_dev |
( |
class(shear_stress_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 |
◆ shear_stress_finalize()
◆ shear_stress_free()
◆ shear_stress_init()
- Parameters
-
| [in] | coef | The SEM coefficients. |
| [in,out] | json | The JSON object configuring the boundary condition. |
Definition at line 191 of file shear_stress.f90.
◆ shear_stress_init_from_components()
- Parameters
-
| [in] | coef | The SEM coefficients. |
| [in] | value | The value of the shear stress to apply. |
Definition at line 210 of file shear_stress.f90.
◆ shear_stress_set_stress_array()
- Parameters
-
| tau_x | The x component of the stress. |
| tau_y | The y component of the stress. |
| tau_z | The z component of the stress. |
Definition at line 259 of file shear_stress.f90.
◆ shear_stress_set_stress_scalar()