Changes filter size to desired value.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(solid_set), | intent(inout) | :: | this |
A collection of solids |
||
| real(kind=wp), | intent(in) | :: | l_filter |
Filter size |
impure subroutine solid_set_SetFilterSize(this,l_filter) !> Changes filter size to desired value. implicit none class(solid_set), intent(inout) :: this !! A collection of solids real(wp), intent(in) :: l_filter !! Filter size ! Work variable integer :: n if (allocated(this%p)) then do n=1,this%count call this%p(n)%SetFilterSize(l_filter) end do end if return end subroutine solid_set_SetFilterSize