Sets a boundary condition on the specified local DOF.
More...
|
subroutine | boundary_conditions_set_local_dof1 (BOUNDARY_CONDITIONS, FIELD, VARIABLE_TYPE, DOF_INDEX, CONDITION, VALUE, ERR, ERROR,) |
| Sets a boundary condition on the specified DOF. More...
|
|
subroutine | boundary_conditions_set_local_dofs (BOUNDARY_CONDITIONS, FIELD, VARIABLE_TYPE, DOF_INDICES, CONDITIONS, VALUES, ERR, ERROR,) |
| Sets a boundary condition on the specified DOFs. More...
|
|
Sets a boundary condition on the specified local DOF.
Definition at line 143 of file boundary_condition_routines.f90.
subroutine boundary_conditions_routines::boundary_conditions_set_local_dof::boundary_conditions_set_local_dof1 |
( |
type(boundary_conditions_type), pointer |
BOUNDARY_CONDITIONS, |
|
|
type(field_type), pointer |
FIELD, |
|
|
integer(intg), intent(in) |
VARIABLE_TYPE, |
|
|
integer(intg), intent(in) |
DOF_INDEX, |
|
|
integer(intg), intent(in) |
CONDITION, |
|
|
real(dp), intent(in) |
VALUE, |
|
|
integer(intg), intent(out) |
ERR, |
|
|
type(varying_string), intent(out) |
ERROR |
|
) |
| |
|
private |
Sets a boundary condition on the specified DOF.
- Parameters
-
| boundary_conditions | A pointer to the boundary conditions to set the boundary condition for |
| field | The dependent field to set the boundary condition on. |
[in] | variable_type | The variable type to set the boundary condition at |
[in] | dof_index | The local dof index to set the boundary condition at |
[in] | condition | The boundary condition type to set |
- See also
- BOUNDARY_CONDITIONS_ROUTINES::BoundaryConditions,BOUNDARY_CONDITIONS_ROUTINES
- Parameters
-
[in] | value | The value of the boundary condition to set |
[out] | err | The error code |
[out] | error | The error string |
Definition at line 1327 of file boundary_condition_routines.f90.
subroutine boundary_conditions_routines::boundary_conditions_set_local_dof::boundary_conditions_set_local_dofs |
( |
type(boundary_conditions_type), pointer |
BOUNDARY_CONDITIONS, |
|
|
type(field_type), pointer |
FIELD, |
|
|
integer(intg), intent(in) |
VARIABLE_TYPE, |
|
|
integer(intg), dimension(:), intent(in) |
DOF_INDICES, |
|
|
integer(intg), dimension(:), intent(in) |
CONDITIONS, |
|
|
real(dp), dimension(:), intent(in) |
VALUES, |
|
|
integer(intg), intent(out) |
ERR, |
|
|
type(varying_string), intent(out) |
ERROR |
|
) |
| |
|
private |
Sets a boundary condition on the specified DOFs.
- Parameters
-
| boundary_conditions | A pointer to the boundary conditions to set the boundary condition for |
| field | The dependent field to set the boundary condition on. |
[in] | variable_type | The variable type to set the boundary condition at |
[in] | dof_indices | DOF_INDICES(:). The local dof index for the i'th dof to set the boundary condition at |
[in] | conditions | CONDITIONS(:). The boundary condition type to set for the i'th dof |
- See also
- BOUNDARY_CONDITIONS_ROUTINES::BoundaryConditions,BOUNDARY_CONDITIONS_ROUTINES
- Parameters
-
[in] | values | VALUES(:). The value of the boundary condition for the i'th dof to set |
[out] | err | The error code |
[out] | error | The error string |
Definition at line 1355 of file boundary_condition_routines.f90.