Creates monitor file for Resolved Particles
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(ResPart_set), | intent(inout) | :: | this |
Collection of Resolved Particles |
impure subroutine ResPart_set_CreateMonitor(this) !> Creates monitor file for Resolved Particles implicit none class(ResPart_set), intent(inout) :: this !! Collection of Resolved Particles call this%monitors%create('ResPart',10,stdout=.false. ) call this%monitors%set ('ResPart', 1,label='Iteration' ) call this%monitors%set ('ResPart', 2,label='Time' ) call this%monitors%set ('ResPart', 3,label='NbrCenters' ) call this%monitors%set ('ResPart', 4,label='NbrMarkers' ) call this%monitors%set ('ResPart', 5,label='avg|V1|' ) call this%monitors%set ('ResPart', 6,label='avg|V2|' ) call this%monitors%set ('ResPart', 7,label='avg|V3|' ) call this%monitors%set ('ResPart', 8,label='avg|Fh1|' ) call this%monitors%set ('ResPart', 9,label='avg|Fh2|' ) call this%monitors%set ('ResPart',10,label='avg|Fh3|' ) return end subroutine ResPart_set_CreateMonitor