Filters a quantity to the Eulerian grid
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(ResPart_set), | intent(inout) | :: | this |
Set of resolved particles |
||
| character(len=*), | intent(in) | :: | var |
Variable to compute |
||
| type(eulerian_obj_r), | intent(inout) | :: | field |
Filtered quantity |
impure subroutine ResPart_set_Filter(this,var,field) !> Filters a quantity to the Eulerian grid implicit none class(ResPart_set), intent(inout) :: this !! Set of resolved particles character(len=*), intent(in) :: var !! Variable to compute type(eulerian_obj_r), intent(inout) :: field !! Filtered quantity call this%ib%Filter(var,field) return end subroutine ResPart_set_Filter