FE-Project
Loading...
Searching...
No Matches
mod_dg_driver.F90
Go to the documentation of this file.
1!-------------------------------------------------------------------------------
11!-------------------------------------------------------------------------------
12#include "scaleFElib.h"
14 !-----------------------------------------------------------------------------
15 !
16 !++ used modules
17 !
18 use scale_precision
19 use scale_io
20 use scale_prof
21 use scale_prc
22
25 use scale_file_history, only: &
26 file_history_set_nowdate
28 file_monitor_meshfield_write
29
30 use mod_atmos_component, only: &
32 use mod_user, only: &
33 user
34
35 !-----------------------------------------------------------------------------
36 implicit none
37 private
38 !-----------------------------------------------------------------------------
39 !
40 !++ included parameters
41 !
42#include "scale-dg.h"
43
44 !-----------------------------------------------------------------------------
45 !
46 !++ Public procedure
47 !
48 public :: dg_driver
49 !-----------------------------------------------------------------------------
50 !
51 !++ Public parameters & variables
52 !
53 !-----------------------------------------------------------------------------
54 !
55 !++ Private procedure
56 !
57 !-----------------------------------------------------------------------------
58 !
59 !++ Private parameters & variables
60 !
61 character(len=H_MID), private, parameter :: MODELNAME = "SCALE-DG ver. "//version
62
63 type(AtmosComponent) :: atmos
64 type(User) :: user_
65
66contains
67!OCL SERIAL
68 subroutine dg_driver( &
69 comm_world, cnf_fname, &
70 path, add_path )
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)
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
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
203 end subroutine dg_driver
204
205 !----------------------------
206
207!OCL SERIAL
208 subroutine initialize()
209
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
214 use scale_time_manager, only: time_dtsec
215
216 use scale_time_manager, only: &
219 use scale_meshfield_statistics, only: &
222 restart_file, &
225 file_monitor_meshfield_setup
226 implicit none
227
228 !----------------------------------------------
229
230 ! namelist compatibility check
231 !call ADMIN_versioncheck
232
233 ! setup PROF
234 call prof_setup
235
236 call prof_setprefx('INIT')
237 call prof_rapstart('Initialize', 0)
238
239 ! setup constants
240 call const_setup
241
242 ! setup calendar & initial time
243 call calendar_setup
244
245 ! setup random number
246 call random_setup
247
248 ! setup tracer index
249 call atmos_hydrometeor_setup
250
251 ! setup a module for restart file
253 call time_manager_init( &
254 setup_timeintegration = .true., &
255 restart_in_basename = restart_file%in_basename )
256
257 ! setup statistics
259
260 ! setup monitor
261 call file_monitor_meshfield_setup( time_dtsec )
262
263 ! setup submodels
264 call atmos%setup()
265 call user_%setup( atmos )
266
267 call atmos%setup_vars()
268
269 ! report information of time intervals
271
272 !----------------------------------------
273
274 call prof_rapend('Initialize', 0)
275
276 return
277 end subroutine initialize
278
279!OCL SERIAL
280 subroutine finalize()
281 use scale_file, only: &
282 file_close_all
286 file_monitor_meshfield_final
287 use scale_time_manager, only: &
289 implicit none
290
291 !----------------------------------------------
292 call prof_setprefx('FIN')
293 call prof_rapstart('All', 1)
294
295 call prof_rapstart('Monit', 2)
296 call file_monitor_meshfield_final
297 call prof_rapend ('Monit', 2)
298
299 !-
300 call prof_rapstart('File', 2)
302 call prof_rapend ('File', 2)
303
304 ! finalization submodels
305 call atmos%finalize()
306 call user_%final()
307
308 !-
310
311 call prof_rapend ('All', 1)
312 call prof_rapreport
313
314 return
315 end subroutine finalize
316
317!OCL SERIAL
318 subroutine restart_read()
319 implicit none
320 !----------------------------------------
321
322 !- read restart data
323 if ( atmos%isActivated() ) then
324 call atmos%vars%Read_restart_file( atmos%mesh, atmos%dyn_proc%dyncore_driver )
325 end if
326
327 !- Calculate the tendencies
328
329 if ( atmos%IsActivated() ) then
330 call atmos%calc_tendency( force= .true. )
331 end if
332
333 call user_%calc_tendency( atmos )
334
335 !- History & Monitor
336
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()
346 end if
347
348 return
349 end subroutine restart_read
350
351!OCL SERIAL
352 subroutine restart_write
355 implicit none
356 !----------------------------------------
357
358 if ( .not. restart_file%flag_output ) return
359
360 if ( atmos%isActivated() .and. atmos%time_manager%do_restart) then
361 call atmos%vars%Write_restart_file()
362 end if
363
364 return
365 end subroutine restart_write
366
367
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 USER
Definition mod_user.F90:12
type(file_restart_meshfield), public restart_file
module FElib / Data / Statistics
subroutine, public meshfield_statistics_setup()
Setup.
module common / time
subroutine, public time_manager_advance()
subroutine, public time_manager_report_timeintervals()
subroutine, public time_manager_checkstate()
subroutine, public time_manager_final()
logical, public time_doresume
subroutine, public time_manager_init(setup_timeintegration, restart_in_basename)