11#include "scaleFElib.h"
65 integer :: tends_num_tot
66 integer,
allocatable :: vterm_hist_id(:)
69 procedure :: init => atmosphympvars_init
70 procedure :: final => atmosphympvars_final
71 procedure :: history => atmosphympvars_history
94 'kg/m3/s', 3,
'XYZ',
'' ), &
96 'kg/m2/s2', 3,
'XYZ',
'' ), &
98 'kg/m2/s2', 3,
'XYZ',
'' ), &
100 'kg/m2/s2', 3,
'XYZ',
'' ), &
102 'kg/m3.K/s', 3,
'XYZ',
'' ), &
104 'J/kg/s', 3,
'XYZ',
'' ), &
106 'm-3' , 3,
'XYZ',
'' ) /
117 'kg/m2/s', 2,
'XY',
'' ), &
119 'kg/m2/s', 2,
'XY',
'' ), &
121 'J/m2/s', 2,
'XY',
'' ) /
132 subroutine atmosphympvars_init( this, model_mesh, &
133 QS_MP, QE_MP, QA_MP )
135 use scale_tracer,
only: &
136 tracer_name, tracer_desc, tracer_unit
137 use scale_file_history,
only: &
142 class(modelmeshbase),
target,
intent(in) :: model_mesh
143 integer,
intent(in) :: qs_mp
144 integer,
intent(in) :: qe_mp
145 integer,
intent(in) :: qa_mp
150 logical :: reg_file_hist
156 type(variableinfo) :: qtrc_tp_vinfo_tmp
157 type(variableinfo) :: qtrc_vterm_vinfo_tmp
160 log_info(
'AtmosPhyMpVars_Init',*)
170 select type(model_mesh)
172 atm_mesh => model_mesh
174 mesh3d => atm_mesh%ptr_mesh
176 call mesh3d%GetMesh2D( mesh2d )
180 call this%tends_manager%Init()
181 allocate( this%tends(this%TENDS_NUM_TOT) )
183 reg_file_hist = .true.
185 call this%tends_manager%Regist( &
187 this%tends(iv), reg_file_hist )
189 do n = 1, mesh3d%LOCAL_MESH_NUM
190 this%tends(iv)%local(n)%val(:,:) = 0.0_rp
194 qtrc_tp_vinfo_tmp%ndims = 3
195 qtrc_tp_vinfo_tmp%dim_type =
'XYZ'
196 qtrc_tp_vinfo_tmp%STDNAME =
''
200 qtrc_tp_vinfo_tmp%keyID = iv
201 qtrc_tp_vinfo_tmp%NAME =
'MP_'//trim(tracer_name(this%QS+iq-1))//
'_t'
202 qtrc_tp_vinfo_tmp%DESC =
'tendency of rho*'//trim(tracer_name(this%QS+iq-1))//
' in MP process'
203 qtrc_tp_vinfo_tmp%UNIT =
'kg/m3/s'
205 reg_file_hist = .true.
206 call this%tends_manager%Regist( &
207 qtrc_tp_vinfo_tmp, mesh3d, &
208 this%tends(iv), reg_file_hist )
210 do n = 1, mesh3d%LOCAL_MESH_NUM
211 this%tends(iv)%local(n)%val(:,:) = 0.0_rp
217 allocate( this%vterm_hist_id(this%QS+1:this%QE) )
218 allocate( this%vterm_hist (this%QS+1:this%QE) )
220 qtrc_vterm_vinfo_tmp%ndims = 3
221 qtrc_vterm_vinfo_tmp%dim_type =
'XYZ'
222 qtrc_vterm_vinfo_tmp%STDNAME =
''
224 do iq = this%QS+1, this%QE
225 qtrc_vterm_vinfo_tmp%NAME =
'Vterm_'//trim(tracer_name(this%QS+iq-1))
226 qtrc_vterm_vinfo_tmp%DESC =
'terminal velocity of '//trim(tracer_name(this%QS+iq-1))
227 qtrc_vterm_vinfo_tmp%UNIT =
'm/s'
228 call file_history_reg( qtrc_vterm_vinfo_tmp%NAME, qtrc_vterm_vinfo_tmp%DESC, qtrc_vterm_vinfo_tmp%UNIT, &
229 this%vterm_hist_id(iq), dim_type=
'XYZ' )
230 if ( this%vterm_hist_id(iq) > 0 )
call this%vterm_hist(iq)%Init( qtrc_vterm_vinfo_tmp%NAME, qtrc_vterm_vinfo_tmp%UNIT, mesh3d )
235 call this%auxvars2D_manager%Init()
238 reg_file_hist = .true.
240 call this%auxvars2D_manager%Regist( &
242 this%auxvars2D(iv), reg_file_hist )
244 do n = 1, mesh3d%LOCAL_MESH_NUM
245 this%auxvars2D(iv)%local(n)%val(:,:) = 0.0_rp
250 end subroutine atmosphympvars_init
253 subroutine atmosphympvars_final( this )
260 log_info(
'AtmosPhyMpVars_Final',*)
262 call this%tends_manager%Final()
263 deallocate( this%tends )
265 call this%auxvars2D_manager%Final()
266 deallocate( this%auxvars2D )
268 do iq = this%QS+1, this%QE
269 if ( this%vterm_hist_id(iq) > 0 )
call this%vterm_hist(iq)%Final()
271 deallocate( this%vterm_hist_id )
274 end subroutine atmosphympvars_final
278 mp_DENS_t, mp_MOMX_t, mp_MOMY_t, mp_MOMZ_t, mp_RHOT_t, mp_RHOH, mp_EVAP, &
287 integer,
intent(in) :: domid
298 class(
localmesh3d),
pointer,
intent(out),
optional :: lcmesh3d
308 call field%GetLocalMeshField(domid, mp_dens_t)
311 call field%GetLocalMeshField(domid, mp_momx_t)
314 call field%GetLocalMeshField(domid, mp_momy_t)
317 call field%GetLocalMeshField(domid, mp_momz_t)
320 call field%GetLocalMeshField(domid, mp_rhot_t)
323 call field%GetLocalMeshField(domid, mp_rhoh)
326 call field%GetLocalMeshField(domid, mp_evap)
329 do iq = 1,
size(mp_rhoq_t)
331 call field%GetLocalMeshField(domid, mp_rhoq_t(iq)%ptr)
335 if (
present(lcmesh3d))
then
336 call mesh%GetLocalMesh( domid, lcmesh )
341 if (
present(lcmesh3d)) lcmesh3d => lcmesh
350 SFLX_rain, SFLX_snow, SFLX_engi )
356 integer,
intent(in) :: domid
367 call field%GetLocalMeshField(domid, sflx_rain)
370 call field%GetLocalMeshField(domid, sflx_snow)
373 call field%GetLocalMeshField(domid, sflx_engi)
379 subroutine atmosphympvars_history( this )
387 type(meshfield3d) :: tmp_field
391 mesh3d => this%tends(1)%mesh
393 do v = 1, this%TENDS_NUM_TOT
394 hst_id = this%tends(v)%hist_id
399 hst_id = this%auxvars2D(v)%hist_id
403 do iq = this%QS+1, this%QE
404 hst_id = this%vterm_hist_id(iq)
409 end subroutine atmosphympvars_history
module ATMOSPHERE physics / Cloud Microphysics
integer, parameter, public atmos_phy_mp_tends_num1
integer, parameter, public atmos_phy_mp_momx_t_id
integer, parameter, public atmos_phy_mp_momz_t_id
integer, parameter, public atmos_phy_mp_evaporate_id
subroutine, public atmosphympvars_getlocalmeshfields_tend(domid, mesh, mp_tends_list, mp_dens_t, mp_momx_t, mp_momy_t, mp_momz_t, mp_rhot_t, mp_rhoh, mp_evap, mp_rhoq_t, lcmesh3d)
integer, parameter, public atmos_phy_mp_aux2d_sflx_snow_id
integer, parameter, public atmos_phy_mp_aux2d_sflx_engi_id
subroutine, public atmosphympvars_getlocalmeshfields_sfcflx(domid, mesh, sfcflx_list, sflx_rain, sflx_snow, sflx_engi)
type(variableinfo), dimension(atmos_phy_mp_aux2d_num), public atmos_phy_mp_aux2d_vinfo
integer, parameter, public atmos_phy_mp_aux2d_num
integer, parameter, public atmos_phy_mp_momy_t_id
integer, parameter, public atmos_phy_mp_aux2d_sflx_rain_id
type(variableinfo), dimension(atmos_phy_mp_tends_num1), public atmos_phy_mp_tend_vinfo
integer, parameter, public atmos_phy_mp_dens_t_id
integer, parameter, public atmos_phy_mp_rhot_t_id
integer, parameter, public atmos_phy_mp_rhoh_id
module FElib / Element / Base
module FElib / File / History
module FElib / File / Restart
module FElib / Mesh / Local 3D
module FElib / Mesh / Local, Base
module FElib / Data / base
module FElib / Mesh / Base 2D
module FElib / Mesh / Base 3D
integer, public meshbase3d_dimtypeid_xyz
module FElib / Mesh / Base
module FElib / Data / base
module FElib / Data / Communication base
FElib / model framework / mesh manager.
FElib / model framework / variable manager.