13#include "scaleFElib.h"
29 use scale_file_history,
only: &
30 file_history_set_nowdate
65 character(len=H_MID),
private,
parameter :: MODELNAME =
"SCALE-DG ver. "//version
67 type(AtmosComponent) :: atmos
72 comm_world, cnf_fname, path, add_path )
76 time_nowdate, time_nowsubsec, time_nowstep, time_nstep, &
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
91 logical :: output_topo
98 if ( add_path .and. path /=
"" )
then
99 call io_setup( modelname, trim(path)//cnf_fname, prefix=path )
102 call io_setup( modelname, trim(path)//cnf_fname )
108 call prc_local_setup( comm_world, &
113 call io_log_setup( myrank, ismaster )
120 call prof_setprefx(
'MAIN')
121 call prof_rapstart(
'Main_prep', 0)
126 call prof_rapstart(
'MkTopo',1)
127 call mktopo( output_topo, &
128 atmos%mesh, atmos%mesh%topography )
129 call prof_rapend (
'MkTopo',1)
132 call atmos%mesh%Setup_vcoordinate()
135 call prof_rapstart(
'MkInit',1)
138 atmos%vars%PROGVARS_manager, &
139 atmos%vars%AUXVARS_manager, &
140 atmos%vars%QTRCVARS_manager )
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 )
149 call prof_rapend (
'MkInit',1)
150 call prof_rapend(
'Main_prep', 0)
154 if ( output_topo )
call mktopo_write( atmos%mesh, atmos%mesh%topography )
157 call prof_rapstart(
'MkInit_restart',1)
159 call prof_rapend (
'MkInit_restart',1)
171 subroutine initialize()
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
195 call prof_setprefx(
'INIT')
196 call prof_rapstart(
'Initialize', 0)
209 call atmos_hydrometeor_setup
216 call user_%setup( atmos )
218 call atmos%setup_vars()
226 call prof_rapend(
'Initialize', 0)
229 end subroutine initialize
231 subroutine finalize()
237 call prof_setprefx(
'FIN')
238 call prof_rapstart(
'All', 1)
244 call atmos%finalize()
249 call prof_rapend (
'All', 1)
250 call prof_rapreport()
253 end subroutine finalize
255 subroutine set_total_energy( atm_prgvars_manager, & ! (inout)
256 atm_auxvars_manager, model_mesh )
273 class(
atmosmesh),
target,
intent(in) :: model_mesh
284 real(rp),
allocatable :: drhot_save(:,:)
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, &
295 allocate( drhot_save(lcmesh3d%refElem3D%Np,lcmesh3d%NeA) )
297 do ke=lcmesh3d%NeS, lcmesh3d%NeE
298 drhot_save(:,ke) = therm%val(:,ke)
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 )
306 deallocate( drhot_save )
310 end subroutine set_total_energy
312 subroutine restart_write
316 if ( atmos%isActivated() )
call atmos%vars%Write_restart_file()
319 end subroutine restart_write
321end module mod_dg_prep
module ATMOSPHERE component
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)
subroutine, public dg_prep(comm_world, cnf_fname, path, add_path)
subroutine, public mkinit_setup
Setup.
subroutine, public mkinit(output, model_mesh, atm_prgvars_manager, atm_auxvars_manager, atm_trcvars_manager)
Driver.
subroutine, public mktopo_setup
Setup.
subroutine, public mktopo(output, model_mesh, topography)
Driver.
subroutine, public mktopo_write(model_mesh, topography)
Output topography data.
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 / File / History
subroutine, public file_history_meshfield_write()
subroutine, public file_history_meshfield_finalize()
module FElib / File / Restart
subroutine, public file_restart_meshfield_setup()
module FElib / Mesh / Local 3D
module FElib / Data / base
module FElib / Mesh / Base 3D
FElib / model framework / variable manager.
subroutine, public time_manager_advance()
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)