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