Sets block periodicity in each direction.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(block_obj), | intent(inout) | :: | this |
A block object |
||
| logical, | intent(in) | :: | periods(3) |
Periodicity |
pure subroutine block_obj_SetPeriodicity(this,periods) !> Sets block periodicity in each direction. implicit none class(block_obj), intent(inout) :: this !! A block object logical, intent(in) :: periods(3) !! Periodicity this%periods = periods return end subroutine block_obj_SetPeriodicity