11#include "scaleFElib.h"
53 character(len=H_SHORT) :: mesh_type
65 procedure,
public :: setup_vars => atmos_setup_vars
66 procedure,
public :: calc_tendency => atmos_calc_tendency
67 procedure,
public :: update => atmos_update
68 procedure,
public :: set_surface => atmos_set_surface
69 procedure,
public :: finalize => atmos_finalize
89 use scale_const,
only: &
90 undef8 => const_undef8
92 use scale_atmos_hydrometeor,
only: &
93 atmos_hydrometeor_dry, &
94 atmos_hydrometeor_regist
95 use scale_atmos_thermodyn,
only: &
97 use scale_atmos_saturation,
only: &
98 atmos_saturation_setup
109 logical :: ACTIVATE_FLAG = .true.
111 real(DP) :: TIME_DT = undef8
112 character(len=H_SHORT) :: TIME_DT_UNIT =
'SEC'
113 real(DP) :: TIME_DT_RESTART = undef8
114 character(len=H_SHORT) :: TIME_DT_RESTART_UNIT =
'SEC'
116 logical :: ATMOS_DYN_DO = .true.
117 logical :: ATMOS_PHY_SF_DO = .false.
118 logical :: ATMOS_PHY_TB_DO = .false.
119 logical :: ATMOS_PHY_MP_DO = .false.
120 character(len=H_SHORT) :: ATMOS_MESH_TYPE =
'REGIONAL'
122 logical :: ATMOS_USE_QV = .false.
124 namelist / param_atmos / &
129 time_dt_restart_unit, &
139 call prof_rapstart(
'ATM_setup', 1)
140 log_info(
'AtmosComponent_setup',*)
'Atmosphere model components '
144 read(io_fid_conf,nml=param_atmos,iostat=ierr)
146 log_info(
"ATMOS_setup",*)
'Not found namelist. Default used.'
147 elseif( ierr > 0 )
then
148 log_error(
"ATM_setup",*)
'Not appropriate names in namelist PARAM_ATMOS. Check!'
154 call this%ModelComponent_Init(
'ATMOS', activate_flag )
155 if ( .not. activate_flag )
return
159 call this%time_manager%Init( this%GetComponentName(), &
160 time_dt, time_dt_unit, &
161 time_dt_restart, time_dt_restart_unit )
167 this%mesh_type = atmos_mesh_type
168 select case( this%mesh_type )
170 call this%mesh_rm%Init()
172 this%mesh => this%mesh_rm
174 call this%mesh_gm%Init()
176 this%mesh => this%mesh_gm
178 log_error(
"ATM_setup",*)
'Unsupported type of mesh is specified. Check!', this%mesh_type
184 call atmos_thermodyn_setup
185 call atmos_saturation_setup
190 call this%phy_sfc_proc%ModelComponentProc_Init(
'AtmosPhysSfc', atmos_phy_sf_do )
191 call this%phy_sfc_proc%setup( this%mesh, this%time_manager )
194 call this%phy_mp_proc%ModelComponentProc_Init(
'AtmosPhysMp', atmos_phy_mp_do )
195 call this%phy_mp_proc%setup( this%mesh, this%time_manager )
198 if ( atmos_hydrometeor_dry .and. atmos_use_qv )
then
199 log_info(
"ATMOS_setup",*)
"Regist QV"
200 call atmos_hydrometeor_regist( 0, 0, &
202 (/
'Ratio of Water Vapor mass to total mass (Specific humidity)'/), &
204 this%phy_mp_proc%vars%QS )
206 this%phy_mp_proc%vars%QA = 1
207 this%phy_mp_proc%vars%QE = this%phy_mp_proc%vars%QS
211 call this%dyn_proc%ModelComponentProc_Init(
'AtmosDyn', atmos_dyn_do )
212 call this%dyn_proc%setup( this%mesh, this%time_manager )
215 call this%phy_tb_proc%ModelComponentProc_Init(
'AtmosPhysTb', atmos_phy_tb_do )
216 call this%phy_tb_proc%setup( this%mesh, this%time_manager )
217 call this%phy_tb_proc%SetDynBC( this%dyn_proc%dyncore_driver%boundary_cond )
220 log_info(
'AtmosComponent_setup',*)
'Finish setup of each atmospheric components.'
222 call prof_rapend(
'ATM_setup', 1)
228 subroutine atmos_setup_vars( this )
234 call prof_rapstart(
'ATM_setup_vars', 1)
236 call this%vars%Init( this%mesh )
237 call this%vars%Regist_physvar_manager( &
238 this%phy_mp_proc%vars%auxvars2D_manager )
240 call prof_rapend(
'ATM_setup_vars', 1)
243 end subroutine atmos_setup_vars
246 subroutine atmos_calc_tendency( this, force )
247 use scale_tracer,
only: qa
261 logical,
intent(in) :: force
269 integer :: tm_process_id
277 call prof_rapstart(
'ATM_tendency', 1)
280 call this%mesh%GetModelMesh( mesh )
288 call prof_rapstart(
'ATM_exchange_prgv', 2)
289 call this%vars%PROGVARS_manager%MeshFieldComm_Exchange()
290 if ( qa > 0 )
call this%vars%QTRCVARS_manager%MeshFieldComm_Exchange()
291 call prof_rapend(
'ATM_exchange_prgv', 2)
295 do n=1, mesh%LOCAL_MESH_NUM
297 tp_list(dens_tp)%ptr, tp_list(momx_tp)%ptr, tp_list(momy_tp)%ptr, &
298 tp_list(momz_tp)%ptr, tp_list(rhot_tp)%ptr, tp_list(rhoh_p )%ptr, tp_qtrc, &
304 do ke=lcmesh%NeS, lcmesh%NeE
305 tp_list(v)%ptr%val(:,ke) = 0.0_rp
310 do ke=lcmesh%NeS, lcmesh%NeE
311 tp_qtrc(iq)%ptr%val(:,ke) = 0.0_rp
320 if ( this%phy_mp_proc%IsActivated() )
then
321 call prof_rapstart(
'ATM_Microphysics', 1)
322 tm_process_id = this%phy_mp_proc%tm_process_id
323 is_update = this%time_manager%Do_process(tm_process_id) .or. force
324 call this%phy_mp_proc%calc_tendency( &
325 this%mesh, this%vars%PROGVARS_manager, this%vars%QTRCVARS_manager, &
326 this%vars%AUXVARS_manager, this%vars%PHYTENDS_manager, is_update )
327 call prof_rapend(
'ATM_Microphysics', 1)
335 if ( this%phy_tb_proc%IsActivated() )
then
336 call prof_rapstart(
'ATM_Turbulence', 1)
337 tm_process_id = this%phy_tb_proc%tm_process_id
338 is_update = this%time_manager%Do_process(tm_process_id) .or. force
339 call this%phy_tb_proc%calc_tendency( &
340 this%mesh, this%vars%PROGVARS_manager, this%vars%QTRCVARS_manager, &
341 this%vars%AUXVARS_manager, this%vars%PHYTENDS_manager, is_update )
342 call prof_rapend(
'ATM_Turbulence', 1)
352 if ( this%phy_sfc_proc%IsActivated() )
then
353 call prof_rapstart(
'ATM_SurfaceFlux', 1)
354 tm_process_id = this%phy_sfc_proc%tm_process_id
355 is_update = this%time_manager%Do_process(tm_process_id) .or. force
356 call this%phy_sfc_proc%calc_tendency( &
357 this%mesh, this%vars%PROGVARS_manager, this%vars%QTRCVARS_manager, &
358 this%vars%AUXVARS_manager, this%vars%PHYTENDS_manager, is_update )
359 call prof_rapend(
'ATM_SurfaceFlux', 1)
366 call prof_rapend(
'ATM_tendency', 1)
368 end subroutine atmos_calc_tendency
371 subroutine atmos_update( this )
375 integer :: tm_process_id
379 call prof_rapstart(
'ATM_update', 1)
383 if ( this%dyn_proc%IsActivated() )
then
384 call prof_rapstart(
'ATM_Dynamics', 1)
385 tm_process_id = this%dyn_proc%tm_process_id
386 is_update = this%time_manager%Do_process( tm_process_id )
388 log_progress(*)
'atmosphere / dynamics'
389 do inner_itr=1, this%time_manager%Get_process_inner_itr_num( tm_process_id )
390 call this%dyn_proc%update( &
391 this%mesh, this%vars%PROGVARS_manager, this%vars%QTRCVARS_manager, &
392 this%vars%AUXVARS_manager, this%vars%PHYTENDS_manager, is_update )
394 call prof_rapend(
'ATM_Dynamics', 1)
399 call this%vars%Calc_diagnostics()
400 call this%vars%AUXVARS_manager%MeshFieldComm_Exchange()
410 call this%vars%Check()
412 call prof_rapend(
'ATM_update', 1)
414 end subroutine atmos_update
417 subroutine atmos_set_surface( this )
436 call prof_rapstart(
'ATM_sfc_exch', 1)
438 call this%mesh%GetModelMesh( mesh )
441 call mesh%GetMesh2D( mesh2d )
446 do n=1, mesh2d%LOCAL_MESH_NUM
448 mesh2d, this%vars%AUXVARS2D_manager, &
449 prec, prec_engi, lcmesh )
452 do ke=lcmesh%NeS, lcmesh%NeE
453 prec %val(:,ke) = 0.0_rp
454 prec_engi%val(:,ke) = 0.0_rp
457 if ( this%phy_mp_proc%IsActivated() )
then
459 mesh2d, this%phy_mp_proc%vars%auxvars2D_manager, &
460 sflx_rain_mp, sflx_snow_mp, sflx_engi_mp )
463 do ke=lcmesh%NeS, lcmesh%NeE
464 prec %val(:,ke) = prec %val(:,ke) + sflx_rain_mp%val(:,ke) + sflx_snow_mp%val(:,ke)
465 prec_engi%val(:,ke) = prec_engi%val(:,ke) + sflx_engi_mp%val(:,ke)
470 call prof_rapend(
'ATM_sfc_exch', 1)
473 end subroutine atmos_set_surface
476 subroutine atmos_finalize( this )
481 log_info(
'AtmosComponent_finalize',*)
483 if ( .not. this%IsActivated() )
return
485 call this%dyn_proc%finalize()
486 call this%phy_sfc_proc%finalize()
487 call this%phy_tb_proc%finalize()
488 call this%phy_mp_proc%finalize()
490 call this%vars%Final()
492 select case( this%mesh_type )
494 call this%mesh_rm%Final()
496 call this%mesh_gm%Final()
500 call this%time_manager%Final()
503 end subroutine atmos_finalize
505end module mod_atmos_component
module ATMOSPHERE component
subroutine atmos_setup(this)
module ATMOSPHERE dynamics
module ATMOSPHERE physics / Cloud Microphysics
subroutine, public atmosphympvars_getlocalmeshfields_sfcflx(domid, mesh, sfcflx_list, sflx_rain, sflx_snow, sflx_engi)
module ATMOSPHERE physics / cloud microphysics
module ATMOSPHERE physics / surface process
module ATMOSPHERE physics / sub-grid scale turbulence process
module ATMOSPHERE / Variables
subroutine, public atmosvars_getlocalmeshsfcvar(domid, mesh, auxvars2d_list, prec, prec_engi, lcmesh2d)
subroutine, public atmosvars_getlocalmeshphytends(domid, mesh, phytends_list, dens_tp, momx_tp, momy_tp, momz_tp, rhot_tp, rhoh_p, rhoq_tp, lcmesh3d)
module FElib / Fluid dyn solver / Atmosphere / Nonhydrostatic model / Common
integer, parameter, public phytend_momz_id
integer, parameter, public phytend_rhot_id
integer, parameter, public phytend_momx_id
integer, parameter, public phytend_num
integer, parameter, public phytend_momy_id
integer, parameter, public phytend_rhoh_id
integer, parameter, public phytend_dens_id
module FElib / File / History
subroutine, public file_history_meshfield_setup(mesh1d_, mesh2d_, mesh3d_, meshcubedsphere2d_, meshcubedsphere3d_)
module FElib / Mesh / Local 2D
module FElib / Mesh / Local 3D
module FElib / Data / base
module FElib / Mesh / Base 2D
module FElib / Mesh / Base 3D
module FElib / Mesh / Base
FElib / model framework / model component.
FElib / model framework / mesh manager.
subroutine, public time_manager_regist_component(tmanager_comp)
Derived type to manage a component of atmospheric dynamics.
Derived type to manage a computational mesh of global atmospheric model.
Derived type to manage a computational mesh of regional atmospheric model.
Derived type to manage a component of cloud microphysics.
Derived type to manage a component of surface process.
Derived type to manage a component of sub-grid scale turbulent process.