12#include "scaleFElib.h"
25 use scale_file_history,
only: &
26 file_history_set_nowdate
28 file_monitor_meshfield_write
61 character(len=H_MID),
private,
parameter :: MODELNAME =
"SCALE-DG ver. "//version
63 type(AtmosComponent) :: atmos
69 comm_world, cnf_fname, &
74 time_nowdate, time_nowsubsec, time_nowstep, time_nstep, &
79 integer,
intent(in) :: comm_world
80 character(len=*),
intent(in) :: cnf_fname
81 character(len=*),
intent(in) :: path
82 logical,
intent(in) :: add_path
85 integer :: fpm_counter
93 if ( add_path .and. path /=
"" )
then
94 call io_setup( modelname, trim(path)//cnf_fname, prefix=path )
96 call io_setup( modelname, trim(path)//cnf_fname )
100 call prc_local_setup( comm_world, &
105 call io_log_setup( myrank, ismaster )
118 log_progress(*)
'START TIMESTEP'
119 call prof_setprefx(
'MAIN')
120 call prof_rapstart(
'Main_Loop', 0)
133 call file_monitor_meshfield_write(
'MAIN', time_nowstep)
140 call file_history_set_nowdate( time_nowdate, time_nowsubsec, time_nowstep )
145 call user_%update_pre( atmos )
148 if ( atmos%IsActivated() .and. atmos%time_manager%do_step )
then
153 call user_%update( atmos )
156 if ( atmos%IsActivated() )
call atmos%vars%Monitor()
158 call file_monitor_meshfield_write(
'MAIN', time_nowstep)
162 if ( atmos%IsActivated() )
call atmos%set_surface()
167 if ( atmos%IsActivated() .and. atmos%time_manager%do_step )
then
168 call atmos%calc_tendency( force=.false. )
172 call user_%calc_tendency( atmos )
176 if ( atmos%IsActivated() )
call atmos%vars%History()
177 if ( atmos%phy_tb_proc%IsActivated() )
call atmos%phy_tb_proc%vars%History()
178 if ( atmos%phy_mp_proc%IsActivated() )
call atmos%phy_mp_proc%vars%History()
179 if ( atmos%phy_sfc_proc%IsActivated() )
call atmos%phy_sfc_proc%vars%History()
187 if( io_l )
call flush(io_fid_log)
190 call prof_rapend(
'Main_Loop', 0)
192 log_progress(*)
'END TIMESTEP'
208 subroutine initialize()
210 use scale_const,
only: const_setup
211 use scale_calendar,
only: calendar_setup
212 use scale_random,
only: random_setup
213 use scale_atmos_hydrometeor,
only: atmos_hydrometeor_setup
225 file_monitor_meshfield_setup
236 call prof_setprefx(
'INIT')
237 call prof_rapstart(
'Initialize', 0)
249 call atmos_hydrometeor_setup
254 setup_timeintegration = .true., &
261 call file_monitor_meshfield_setup( time_dtsec )
265 call user_%setup( atmos )
267 call atmos%setup_vars()
274 call prof_rapend(
'Initialize', 0)
277 end subroutine initialize
280 subroutine finalize()
281 use scale_file,
only: &
286 file_monitor_meshfield_final
292 call prof_setprefx(
'FIN')
293 call prof_rapstart(
'All', 1)
295 call prof_rapstart(
'Monit', 2)
296 call file_monitor_meshfield_final
297 call prof_rapend (
'Monit', 2)
300 call prof_rapstart(
'File', 2)
302 call prof_rapend (
'File', 2)
305 call atmos%finalize()
311 call prof_rapend (
'All', 1)
315 end subroutine finalize
318 subroutine restart_read()
323 if ( atmos%isActivated() )
then
324 call atmos%vars%Read_restart_file( atmos%mesh, atmos%dyn_proc%dyncore_driver )
329 if ( atmos%IsActivated() )
then
330 call atmos%calc_tendency( force= .true. )
333 call user_%calc_tendency( atmos )
337 if ( atmos%isActivated() )
then
338 call atmos%vars%History()
339 if ( atmos%phy_sfc_proc%IsActivated() ) &
340 call atmos%phy_sfc_proc%vars%History()
341 if ( atmos%phy_tb_proc%IsActivated() ) &
342 call atmos%phy_tb_proc%vars%History()
343 if ( atmos%phy_mp_proc%IsActivated() ) &
344 call atmos%phy_mp_proc%vars%History()
345 call atmos%vars%Monitor()
349 end subroutine restart_read
352 subroutine restart_write
360 if ( atmos%isActivated() .and. atmos%time_manager%do_restart)
then
361 call atmos%vars%Write_restart_file()
365 end subroutine restart_write
368end module mod_dg_driver
module ATMOSPHERE component
module SCALE-DG (a main routine of regional/global model)
subroutine, public dg_driver(comm_world, cnf_fname, path, add_path)
module FElib / File / History
subroutine, public file_history_meshfield_write()
subroutine, public file_history_meshfield_finalize()
module FElib / File / Monitor
module FElib / File / Restart
subroutine, public file_restart_meshfield_setup()
type(file_restart_meshfield), public restart_file
module FElib / Data / Statistics
subroutine, public meshfield_statistics_setup()
Setup.
subroutine, public time_manager_advance()
subroutine, public time_manager_report_timeintervals()
subroutine, public time_manager_checkstate()
subroutine, public time_manager_final()
logical, public time_doend
logical, public time_doresume
subroutine, public time_manager_init(setup_timeintegration, restart_in_basename)