particle_set_CreateMonitor Subroutine

private impure subroutine particle_set_CreateMonitor(this)

Creates monitor file for Point Particles.

Type Bound

particle_set

Arguments

Type IntentOptional Attributes Name
class(particle_set), intent(inout) :: this

Collection of Point Particles


Calls

proc~~particle_set_createmonitor~~CallsGraph proc~particle_set_createmonitor particle_set%particle_set_CreateMonitor proc~monitor_set_create monitor_set%monitor_set_Create proc~particle_set_createmonitor->proc~monitor_set_create proc~monitor_set_set monitor_set%monitor_set_Set proc~particle_set_createmonitor->proc~monitor_set_set proc~hashtbl_obj_hashstring hashtbl_obj%hashtbl_obj_HashString proc~monitor_set_create->proc~hashtbl_obj_hashstring proc~hashtbl_obj_put hashtbl_obj%hashtbl_obj_Put proc~monitor_set_create->proc~hashtbl_obj_put proc~monitor_obj_init monitor_obj%monitor_obj_Init proc~monitor_set_create->proc~monitor_obj_init proc~monitor_set_expand monitor_set%monitor_set_Expand proc~monitor_set_create->proc~monitor_set_expand proc~parallel_obj_rankisroot parallel_obj%parallel_obj_RankIsRoot proc~monitor_set_create->proc~parallel_obj_rankisroot proc~monitor_obj_setval monitor_obj%monitor_obj_SetVal proc~monitor_set_set->proc~monitor_obj_setval proc~monitor_set_getindex monitor_set%monitor_set_GetIndex proc~monitor_set_set->proc~monitor_set_getindex proc~monitor_set_set->proc~parallel_obj_rankisroot proc~sllist_obj_put sllist_obj%sllist_obj_Put proc~hashtbl_obj_put->proc~sllist_obj_put proc~monitor_obj_formats monitor_obj%monitor_obj_Formats proc~monitor_obj_init->proc~monitor_obj_formats proc~sysutils_obj_createdirectory sysutils_obj%sysutils_obj_CreateDirectory proc~monitor_obj_init->proc~sysutils_obj_createdirectory proc~monitor_set_getindex->proc~hashtbl_obj_hashstring none~get~3 hashtbl_obj%Get proc~monitor_set_getindex->none~get~3 proc~hashtbl_obj_get_int4 hashtbl_obj%hashtbl_obj_Get_int4 none~get~3->proc~hashtbl_obj_get_int4 proc~hashtbl_obj_get_int8 hashtbl_obj%hashtbl_obj_Get_int8 none~get~3->proc~hashtbl_obj_get_int8 proc~hashtbl_obj_get_real_dp hashtbl_obj%hashtbl_obj_Get_real_dp none~get~3->proc~hashtbl_obj_get_real_dp proc~hashtbl_obj_get_real_sp hashtbl_obj%hashtbl_obj_Get_real_sp none~get~3->proc~hashtbl_obj_get_real_sp proc~sllist_obj_put->proc~sllist_obj_put none~get~2 sllist_obj%Get proc~hashtbl_obj_get_int4->none~get~2 proc~hashtbl_obj_get_int8->none~get~2 proc~hashtbl_obj_get_real_dp->none~get~2 proc~hashtbl_obj_get_real_sp->none~get~2 proc~sllist_obj_get_int4 sllist_obj%sllist_obj_Get_int4 none~get~2->proc~sllist_obj_get_int4 proc~sllist_obj_get_int8 sllist_obj%sllist_obj_Get_int8 none~get~2->proc~sllist_obj_get_int8 proc~sllist_obj_get_real_dp sllist_obj%sllist_obj_Get_real_dp none~get~2->proc~sllist_obj_get_real_dp proc~sllist_obj_get_real_sp sllist_obj%sllist_obj_Get_real_sp none~get~2->proc~sllist_obj_get_real_sp proc~sllist_obj_get_int4->proc~sllist_obj_get_int4 proc~sllist_obj_get_int8->proc~sllist_obj_get_int8 proc~sllist_obj_get_real_dp->proc~sllist_obj_get_real_dp proc~sllist_obj_get_real_sp->proc~sllist_obj_get_real_sp

Source Code

    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