FE-Project
Loading...
Searching...
No Matches
Functions/Subroutines
mod_dg_driver Module Reference

module SCALE-DG (a main routine of regional/global model) More...

Functions/Subroutines

subroutine, public dg_driver (comm_world, cnf_fname, path, add_path)
 

Detailed Description

module SCALE-DG (a main routine of regional/global model)

Description
SCALE: Scalable Computing by Advanced Library and Environment SCALE-DG: Regional / global model with atmospheric dynamical core based on DGM
Author
Yuta Kawai, Team SCALE

Function/Subroutine Documentation

◆ dg_driver()

subroutine, public mod_dg_driver::dg_driver ( integer, intent(in) comm_world,
character(len=*), intent(in) cnf_fname,
character(len=*), intent(in) path,
logical, intent(in) add_path )

Definition at line 68 of file mod_dg_driver.F90.

71
72 use scale_time_manager, only: &
74 time_nowdate, time_nowsubsec, time_nowstep, time_nstep, &
76
77 implicit none
78
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
83
84 integer :: myrank
85 integer :: fpm_counter
86 logical :: ismaster
87 logical :: sign_exit
88 !---------------------------------------------------------------------------
89
90 !########## Initial setup ##########
91
92 ! setup standard I/O
93 if ( add_path .and. path /= "" ) then
94 call io_setup( modelname, trim(path)//cnf_fname, prefix=path )
95 else
96 call io_setup( modelname, trim(path)//cnf_fname )
97 end if
98
99 ! setup MPI
100 call prc_local_setup( comm_world, & ! [IN]
101 myrank, & ! [OUT]
102 ismaster ) ! [OUT]
103
104 ! setup Log
105 call io_log_setup( myrank, ismaster )
106
107 call initialize
108
109 !###########################################################################
110
111 !########## main ##########
112
113#ifdef FIPP
114 call fipp_start
115#endif
116
117 log_newline
118 log_progress(*) 'START TIMESTEP'
119 call prof_setprefx('MAIN')
120 call prof_rapstart('Main_Loop', 0)
121
122 do
123
124 !*******************************************
125
126 ! report current time
128
129 if (time_doresume) then
130 ! set state from restart file
131 call restart_read
132 ! history & monitor file output
133 call file_monitor_meshfield_write('MAIN', time_nowstep)
134 call file_history_meshfield_write
135 end if
136
137 !* Advance time *********************************
138
140 call file_history_set_nowdate( time_nowdate, time_nowsubsec, time_nowstep )
141
142 !* change to next state *************************
143
144 !- USER
145 call user_%update_pre( atmos )
146
147 !- ATMOS
148 if ( atmos%IsActivated() .and. atmos%time_manager%do_step ) then
149 call atmos%update()
150 end if
151
152 !- USER
153 call user_%update( atmos )
154
155 !* restart and monitor output *******************
156 if ( atmos%IsActivated() ) call atmos%vars%Monitor()
157 call restart_write
158 call file_monitor_meshfield_write('MAIN', time_nowstep)
159
160
161 !* setup surface condition
162 if ( atmos%IsActivated() ) call atmos%set_surface()
163
164 !* calc tendencies and diagnostices *************
165
166 !- ATMOS
167 if ( atmos%IsActivated() .and. atmos%time_manager%do_step ) then
168 call atmos%calc_tendency( force=.false. )
169 end if
170
171 !- USER
172 call user_%calc_tendency( atmos )
173
174 !* output history files *************************
175
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()
180
181
182 call file_history_meshfield_write
183
184 !*******************************************
185 if (time_doend) exit
186
187 if( io_l ) call flush(io_fid_log)
188 end do
189
190 call prof_rapend('Main_Loop', 0)
191
192 log_progress(*) 'END TIMESTEP'
193 log_newline
194
195#ifdef FIPP
196 call fipp_stop
197#endif
198
199 !########## Finalize ##########
200 call finalize
201
202 return
module common / time
subroutine, public time_manager_advance()
subroutine, public time_manager_checkstate()
logical, public time_doresume

References scale_file_history_meshfield::file_history_meshfield_finalize(), scale_file_history_meshfield::file_history_meshfield_write(), scale_file_restart_meshfield::file_restart_meshfield_setup(), scale_meshfield_statistics::meshfield_statistics_setup(), scale_file_restart_meshfield::restart_file, scale_time_manager::time_doend, scale_time_manager::time_doresume, scale_time_manager::time_manager_advance(), scale_time_manager::time_manager_checkstate(), scale_time_manager::time_manager_final(), scale_time_manager::time_manager_init(), and scale_time_manager::time_manager_report_timeintervals().

Referenced by mod_dg_launcher::launcher().