11#include "scaleFElib.h"
21 use scale_const,
only: &
22 undef8 => const_undef8
23 use scale_tracer,
only: qa
67 procedure,
public :: calc_tendency => atmosphytb_calc_tendency
68 procedure,
public :: update => atmosphytb_update
69 procedure,
public :: finalize => atmosphytb_finalize
70 procedure,
public :: setdynbc => atmosphytb_setdynbc
100 class(modelmeshbase),
target,
intent(in) :: model_mesh
103 real(DP) :: TIME_DT = undef8
104 character(len=H_SHORT) :: TIME_DT_UNIT =
'SEC'
106 character(len=H_MID) :: TB_TYPE =
'SMAGORINSKY'
107 namelist /param_atmos_phy_tb/ &
113 class(
meshbase),
pointer :: ptr_mesh
119 if (.not. this%IsActivated())
return
122 log_info(
"ATMOS_PHY_TB_setup",*)
'Setup'
126 read(io_fid_conf,nml=param_atmos_phy_tb,iostat=ierr)
128 log_info(
"ATMOS_PHY_TB_setup",*)
'Not found namelist. Default used.'
129 elseif( ierr > 0 )
then
130 log_error(
"ATMOS_PHY_TB_setup",*)
'Not appropriate names in namelist PARAM_ATMOS_PHY_TB. Check!'
133 log_nml(param_atmos_phy_tb)
137 call model_mesh%GetModelMesh( ptr_mesh )
138 select type(model_mesh)
140 atm_mesh => model_mesh
145 call tm_parent_comp%Regist_process(
'ATMOS_PHY_TB', time_dt, time_dt_unit, &
148 dtsec = tm_parent_comp%process_list(this%tm_process_id)%dtsec
151 call this%vars%Init( model_mesh )
154 call this%tb_driver%Init( tb_type, dtsec, atm_mesh )
157 this%dyn_bnd => null()
172 subroutine atmosphytb_calc_tendency( &
173 this, model_mesh, prgvars_list, trcvars_list, &
174 auxvars_list, forcing_list, is_update )
176 use scale_tracer,
only: &
192 class(modelmeshbase),
intent(in) :: model_mesh
197 logical,
intent(in) :: is_update
206 class(
localmeshfieldbase),
pointer :: DENS_tp, MOMX_tp, MOMY_tp, MOMZ_tp, RHOT_tp, RHOH_P
213 if (.not. this%IsActivated())
return
217 log_progress(*)
'atmosphere / physics / turbulence'
219 call model_mesh%GetModelMesh( mesh )
226 call this%tb_driver%Tendency( this%vars%tends_manager, &
227 prgvars_list, trcvars_list, auxvars_list, &
228 this%vars%auxvars_manager, this%vars%diagvars_manager, &
230 model_mesh%DOptrMat(1), model_mesh%DOptrMat(2), model_mesh%DOptrMat(3), &
231 model_mesh%SOptrMat(1), model_mesh%SOptrMat(2), model_mesh%SOptrMat(3), &
232 model_mesh%LiftOptrMat, mesh3d )
235 call prof_rapstart(
'ATM_PHY_TB_add_tend', 2)
236 do n=1, mesh%LOCAL_MESH_NUM
238 mesh, forcing_list, &
239 dens_tp, momx_tp, momy_tp, momz_tp, rhot_tp, &
243 mesh, this%vars%tends_manager, &
244 tb_momx_t, tb_momy_t, tb_momz_t, tb_rhot_t, tb_rhoq_t_list, &
249 do ke=lcmesh%NeS, lcmesh%NeE
250 momx_tp%val(:,ke) = momx_tp%val(:,ke) + tb_momx_t%val(:,ke)
251 momy_tp%val(:,ke) = momy_tp%val(:,ke) + tb_momy_t%val(:,ke)
252 momz_tp%val(:,ke) = momz_tp%val(:,ke) + tb_momz_t%val(:,ke)
253 rhot_tp%val(:,ke) = rhot_tp%val(:,ke) + tb_rhot_t%val(:,ke)
257 if ( .not. tracer_advc(iq) ) cycle
259 do ke = lcmesh%NeS, lcmesh%NeE
260 rhoq_tp(iq)%ptr%val(:,ke) = rhoq_tp(iq)%ptr%val(:,ke) &
261 + tb_rhoq_t_list(iq)%ptr%val(:,ke)
267 call prof_rapend(
'ATM_PHY_TB_add_tend', 2)
270 end subroutine atmosphytb_calc_tendency
281 subroutine atmosphytb_update( this, model_mesh, prgvars_list, trcvars_list, auxvars_list, forcing_list, is_update )
285 class(modelmeshbase),
intent(in) :: model_mesh
290 logical,
intent(in) :: is_update
294 end subroutine atmosphytb_update
299 subroutine atmosphytb_finalize( this )
304 if (.not. this%IsActivated())
return
306 call this%tb_driver%Final()
307 call this%vars%Final()
310 end subroutine atmosphytb_finalize
317 subroutine atmosphytb_setdynbc( this, dyn_bnd )
320 type(
atmdynbnd),
intent(in),
target :: dyn_bnd
323 this%dyn_bnd => dyn_bnd
326 end subroutine atmosphytb_setdynbc
330end module mod_atmos_phy_tb
module ATMOSPHERE physics / sub-grid scale turbulence
subroutine, public atmosphytbvars_getlocalmeshfields_tend(domid, mesh, tb_tends_list, tb_momx_t, tb_momy_t, tb_momz_t, tb_rhot_t, tb_rhoq_t, lcmesh3d)
module ATMOSPHERE physics / sub-grid scale turbulence process
subroutine atmosphytb_setup(this, model_mesh, tm_parent_comp)
Setup a component of SGS turbulence process.
module ATMOSPHERE / Variables
subroutine, public atmosvars_getlocalmeshprgvar(domid, mesh, prgvars_list, auxvars_list, varid, var, dens_hyd, pres_hyd, lcmesh3d)
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 atmosvars_getlocalmeshphytends(domid, mesh, phytends_list, dens_tp, momx_tp, momy_tp, momz_tp, rhot_tp, rhoh_p, rhoq_tp, lcmesh3d)
subroutine, public atmosvars_getlocalmeshqtrcvar(domid, mesh, trcvars_list, varid, var, lcmesh3d)
subroutine, public atmosvars_getlocalmeshphyauxvars(domid, mesh, phyauxvars_list, pres, pt, lcmesh3d)
module FElib / Fluid dyn solver / Atmosphere / Boundary
module FElib / Fluid dyn solver / Atmosphere / Nonhydrostatic model / Common
integer, parameter, public prgvar_ddens_id
module FElib / Physics turbulence / Atmosphere / driver
module FElib / Element / Base
module FElib / Mesh / Local 2D
module FElib / Mesh / Local 3D
module FElib / Mesh / Local, Base
module FElib / Data / base
module FElib / Mesh / Base 2D
module FElib / Mesh / Base 3D
module FElib / Mesh / Base
module FElib / Data / base
FElib / model framework / physics process.
FElib / model framework / mesh manager.
FElib / model framework / variable manager.
Derived type to manage a component of sub-grid scale turbulent process.