Defines a shear stress boundary condition for a vector field. Maintainer: Timofey Mukha.
|
subroutine | shear_stress_apply_scalar (this, x, n, t, tstep) |
| Apply shear stress for a scalar field x.
|
|
subroutine | shear_stress_apply_vector (this, x, y, z, n, t, tstep) |
| Boundary condition apply for a generic shear_stress condition to vectors x, y and z.
|
|
subroutine | shear_stress_apply_scalar_dev (this, x_d, t, tstep) |
| 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, t, tstep) |
| Boundary condition apply for a generic shear_stress condition to vectors x, y and z (device version)
|
|
subroutine | shear_stress_init_shear_stress (this, coef) |
| Additional constructor that should be run after the finalization of the bc. Similar to the symmetry condition.
|
|
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, |
|
|
real(kind=rp), intent(in), optional |
t, |
|
|
integer, intent(in), optional |
tstep |
|
) |
| |
◆ shear_stress_apply_scalar_dev()
◆ 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, |
|
|
real(kind=rp), intent(in), optional |
t, |
|
|
integer, intent(in), optional |
tstep |
|
) |
| |
|
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) |
x_d, |
|
|
type(c_ptr) |
y_d, |
|
|
type(c_ptr) |
z_d, |
|
|
real(kind=rp), intent(in), optional |
t, |
|
|
integer, intent(in), optional |
tstep |
|
) |
| |
|
private |
◆ shear_stress_free()
◆ shear_stress_init_shear_stress()
◆ shear_stress_set_stress_array()
subroutine shear_stress::shear_stress_set_stress_array |
( |
class(shear_stress_t), intent(inout) |
this, |
|
|
real(kind=rp), dimension(this%msk(0)), intent(in) |
tau_x, |
|
|
real(kind=rp), dimension(this%msk(0)), intent(in) |
tau_y, |
|
|
real(kind=rp), dimension(this%msk(0)), intent(in) |
tau_z |
|
) |
| |
|
private |
◆ shear_stress_set_stress_scalar()