Localizes markers of all solids in this set on the grid.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(solid_set), | intent(inout) | :: | this |
A collection of solids |
impure subroutine solid_set_Localize(this) !> Localizes markers of all solids in this set on the grid. implicit none class(solid_set), intent(inout) :: this !! A collection of solids ! Work variables integer :: n do n=1,this%count call this%p(n)%Localize end do return end subroutine solid_set_Localize