FE-Project
Loading...
Searching...
No Matches
mod_dg_prep.F90
Go to the documentation of this file.
1!-------------------------------------------------------------------------------
12!-------------------------------------------------------------------------------
13#include "scaleFElib.h"
15 !-----------------------------------------------------------------------------
16 !
17 !++ used modules
18 !
19 use scale_precision
20 use scale_io
21 use scale_prof
22 use scale_prc
23
24 use mod_atmos_component, only: &
26
29 use scale_file_history, only: &
30 file_history_set_nowdate
31
32 use mod_user, only: &
33 user
34 use mod_mktopo, only: &
36 use mod_mkinit, only: &
37 mkinit
38
39 !-----------------------------------------------------------------------------
40 implicit none
41 private
42 !-----------------------------------------------------------------------------
43 !
44 !++ included parameters
45 !
46#include "scale-dg.h"
47
48 !-----------------------------------------------------------------------------
49 !
50 !++ Public procedure
51 !
52 public :: dg_prep
53 !-----------------------------------------------------------------------------
54 !
55 !++ Public parameters & variables
56 !
57 !-----------------------------------------------------------------------------
58 !
59 !++ Private procedure
60 !
61 !-----------------------------------------------------------------------------
62 !
63 !++ Private parameters & variables
64 !
65 character(len=H_MID), private, parameter :: MODELNAME = "SCALE-DG ver. "//version
66
67 type(AtmosComponent) :: atmos
68 type(User) :: user_
69
70contains
71 subroutine dg_prep( &
72 comm_world, cnf_fname, path, add_path )
73
74 use scale_time_manager, only: &
76 time_nowdate, time_nowsubsec, time_nowstep, time_nstep, &
78
79 implicit none
80
81 integer, intent(in) :: comm_world
82 character(len=*), intent(in) :: cnf_fname
83 character(len=*), intent(in) :: path
84 logical, intent(in) :: add_path
85
86
87 integer :: myrank
88 logical :: ismaster
89
90 logical :: output
91 logical :: output_topo
92 !---------------------------------------------------------------------------
93
94 !########## Initial setup ##########
95
96#ifdef SCALE_DEVELOP
97 ! setup standard I/O
98 if ( add_path .and. path /= "" ) then
99 call io_setup( modelname, trim(path)//cnf_fname, prefix=path )
100 else
101#endif
102 call io_setup( modelname, trim(path)//cnf_fname )
103#ifdef SCALE_DEVELOP
104 end if
105#endif
106
107 ! setup MPI
108 call prc_local_setup( comm_world, & ! [IN]
109 myrank, & ! [OUT]
110 ismaster ) ! [OUT]
111
112 ! setup Log
113 call io_log_setup( myrank, ismaster )
114
115 call initialize()
116
117 !###########################################################################
118
119 !########## main ##########
120 call prof_setprefx('MAIN')
121 call prof_rapstart('Main_prep', 0)
122
123 !- Execute preprocess
124
125 !- Execute mktopo
126 call prof_rapstart('MkTopo',1)
127 call mktopo( output_topo, &
128 atmos%mesh, atmos%mesh%topography )
129 call prof_rapend ('MkTopo',1)
130
131 !- Re-setup
132 call atmos%mesh%Setup_vcoordinate()
133
134 !- Execute mkinit
135 call prof_rapstart('MkInit',1)
136 call mkinit( output, &
137 atmos%mesh, &
138 atmos%vars%PROGVARS_manager, &
139 atmos%vars%AUXVARS_manager, &
140 atmos%vars%QTRCVARS_manager )
141
142! call USER_mkinit( atmos )
143 call user_%mkinit( atmos )
144 if ( atmos%dyn_proc%dyncore_driver%ENTOT_CONSERVE_SCHEME_FLAG ) then
145 call set_total_energy( atmos%vars%PROGVARS_manager, &
146 atmos%vars%AUXVARS_manager, atmos%mesh )
147 end if
148
149 call prof_rapend ('MkInit',1)
150 call prof_rapend('Main_prep', 0)
151
152 !- Output
153
154 if ( output_topo ) call mktopo_write( atmos%mesh, atmos%mesh%topography )
155
156 if ( output ) then
157 call prof_rapstart('MkInit_restart',1)
158 call restart_write()
159 call prof_rapend ('MkInit_restart',1)
160 end if
161
162 !########## Finalize ##########
163 call user_%mkfinal()
164 call finalize()
165
166 return
167 end subroutine dg_prep
168
169 !----------------------------
170
171 subroutine initialize()
172
173 use scale_const, only: const_setup
174 use scale_calendar, only: calendar_setup
175 use scale_random, only: random_setup
176 use scale_atmos_hydrometeor, only: atmos_hydrometeor_setup
177
181
182 use mod_mktopo, only: mktopo_setup
183 use mod_mkinit, only: mkinit_setup
184
185 implicit none
186
187 !----------------------------------------------
188
189 ! namelist compatibility check
190 !call ADMIN_versioncheck
191
192 ! setup PROF
193 call prof_setup
194
195 call prof_setprefx('INIT')
196 call prof_rapstart('Initialize', 0)
197
198 ! setup constants
199 call const_setup
200
201 ! setup calendar & initial time
202 call calendar_setup
203 call time_manager_init( .false. )
204
205 ! setup random number
206 call random_setup
207
208 ! setup tracer index
209 call atmos_hydrometeor_setup
210
211 ! setup a module for restart file
213
214 ! setup submodels
215 call atmos%setup()
216 call user_%setup( atmos )
217
218 call atmos%setup_vars()
219
220 ! setup mktopo
221 call mktopo_setup
222
223 ! setup mkinit
224 call mkinit_setup()
225
226 call prof_rapend('Initialize', 0)
227
228 return
229 end subroutine initialize
230
231 subroutine finalize()
234 implicit none
235
236 !----------------------------------------------
237 call prof_setprefx('FIN')
238 call prof_rapstart('All', 1)
239
240 !-
242
243 ! finalization submodels
244 call atmos%finalize()
245
246 !-
247 call time_manager_final()
248
249 call prof_rapend ('All', 1)
250 call prof_rapreport()
251
252 return
253 end subroutine finalize
254
255 subroutine set_total_energy( atm_prgvars_manager, & ! (inout)
256 atm_auxvars_manager, model_mesh )
257
264
265 use mod_atmos_mesh, only: atmosmesh
266 use mod_atmos_vars, only: &
268
269 implicit none
270
271 class(modelvarmanager), intent(inout) :: atm_prgvars_manager
272 class(modelvarmanager), intent(inout) :: atm_auxvars_manager
273 class(atmosmesh), target, intent(in) :: model_mesh
274
275 class(localmeshfieldbase), pointer :: ddens, momx, momy, momz, therm
276 class(localmeshfieldbase), pointer :: dens_hyd, pres_hyd
277 class(localmeshfieldbase), pointer :: rtot, cptot, cvtot
278
279 integer :: n
280 integer :: ke
281 class(localmesh3d), pointer :: lcmesh3d
282 class(meshbase3d), pointer :: mesh
283
284 real(rp), allocatable :: drhot_save(:,:)
285 !---------------------------------------------------------------------------
286
287 mesh => model_mesh%ptr_mesh
288 do n=1, mesh%LOCAL_MESH_NUM
290 mesh, atm_prgvars_manager, atm_auxvars_manager, &
291 ddens, momx, momy, momz, therm, &
292 dens_hyd, pres_hyd, rtot, cvtot, cptot, &
293 lcmesh3d )
294
295 allocate( drhot_save(lcmesh3d%refElem3D%Np,lcmesh3d%NeA) )
296 !$omp parallel do
297 do ke=lcmesh3d%NeS, lcmesh3d%NeE
298 drhot_save(:,ke) = therm%val(:,ke)
299 end do
300
302 ddens%val, momx%val, momy%val, momz%val, drhot_save, &
303 dens_hyd%val, pres_hyd%val, rtot%val, cvtot%val, cptot%val, &
304 lcmesh3d, lcmesh3d%refElem3D )
305
306 deallocate( drhot_save )
307 end do
308
309 return
310 end subroutine set_total_energy
311
312 subroutine restart_write
313 implicit none
314 !----------------------------------------
315
316 if ( atmos%isActivated() ) call atmos%vars%Write_restart_file()
317
318 return
319 end subroutine restart_write
320
321end module mod_dg_prep
module ATMOSPHERE component
module Atmosphere / Mesh
module ATMOSPHERE / Variables
subroutine, public atmosvars_getlocalmeshprgvars(domid, mesh, prgvars_list, auxvars_list, ddens, momx, momy, momz, therm, dens_hyd, pres_hyd, rtot, cvtot, cptot, lcmesh3d)
module SCALE-DG prep
subroutine, public dg_prep(comm_world, cnf_fname, path, add_path)
module INITIAL
subroutine, public mkinit_setup
Setup.
subroutine, public mkinit(output, model_mesh, atm_prgvars_manager, atm_auxvars_manager, atm_trcvars_manager)
Driver.
module INITIAL
subroutine, public mktopo_setup
Setup.
subroutine, public mktopo(output, model_mesh, topography)
Driver.
subroutine, public mktopo_write(model_mesh, topography)
Output topography data.
module USER
Definition mod_user.F90:12
module FElib / Fluid dyn solver / Atmosphere / Nonhydrostatic model / Common
subroutine, public atm_dyn_dgm_nonhydro3d_common_drhot2entot(entot, ddens, momx, momy, momz, drhot, dens_hyd, pres_hyd, rtot, cvtot, cptot, lcmesh, elem3d)
module FElib / Mesh / Local 3D
module FElib / Mesh / Base 3D
FElib / model framework / variable manager.
module common / time
subroutine, public time_manager_advance()
subroutine, public time_manager_checkstate()
subroutine, public time_manager_final()
logical, public time_doresume
subroutine, public time_manager_init(setup_timeintegration, restart_in_basename)