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_1',13,stdout=.false. ) call this%monitors%set ('ResPart_1', 1,label='Iteration' ) call this%monitors%set ('ResPart_1', 2,label='Time' ) call this%monitors%set ('ResPart_1', 3,label='NbrCenters' ) call this%monitors%set ('ResPart_1', 4,label='NbrMarkers' ) call this%monitors%set ('ResPart_1', 5,label='avg(X1)' ) call this%monitors%set ('ResPart_1', 6,label='avg(X2)' ) call this%monitors%set ('ResPart_1', 7,label='avg(X3)' ) call this%monitors%set ('ResPart_1', 8,label='avg(V1)' ) call this%monitors%set ('ResPart_1', 9,label='avg(V2)' ) call this%monitors%set ('ResPart_1',10,label='avg(V3)' ) call this%monitors%set ('ResPart_1',11,label='avg(W1)' ) call this%monitors%set ('ResPart_1',12,label='avg(W2)' ) call this%monitors%set ('ResPart_1',13,label='avg(W3)' ) call this%monitors%create('ResPart_2',10,stdout=.false. ) call this%monitors%set ('ResPart_2', 1,label='Iteration' ) call this%monitors%set ('ResPart_2', 2,label='Time' ) call this%monitors%set ('ResPart_2', 3,label='NbrCenters' ) call this%monitors%set ('ResPart_2', 4,label='NbrMarkers' ) call this%monitors%set ('ResPart_2', 5,label='avg(Fh1)' ) call this%monitors%set ('ResPart_2', 6,label='avg(Fh2)' ) call this%monitors%set ('ResPart_2', 7,label='avg(Fh3)' ) call this%monitors%set ('ResPart_2', 8,label='avg(Th1)' ) call this%monitors%set ('ResPart_2', 9,label='avg(Th2)' ) call this%monitors%set ('ResPart_2',10,label='avg(Th3)' ) call this%monitors%create('ResPart_3',10,stdout=.false. ) call this%monitors%set ('ResPart_3', 1,label='Iteration' ) call this%monitors%set ('ResPart_3', 2,label='Time' ) call this%monitors%set ('ResPart_3', 3,label='NbrCenters' ) call this%monitors%set ('ResPart_3', 4,label='NbrMarkers' ) call this%monitors%set ('ResPart_3', 5,label='avg(Fc1)' ) call this%monitors%set ('ResPart_3', 6,label='avg(Fc2)' ) call this%monitors%set ('ResPart_3', 7,label='avg(Fc3)' ) call this%monitors%set ('ResPart_3', 8,label='avg(Tc1)' ) call this%monitors%set ('ResPart_3', 9,label='avg(Tc2)' ) call this%monitors%set ('ResPart_3',10,label='avg(Tc3)' ) return end subroutine ResPart_set_CreateMonitor