11#include "scaleFElib.h"
52 procedure :: init => atmosdynvars_init
53 procedure :: final => atmosdynvars_final
54 procedure :: history => atmosdynvars_history
72 's-1', 2,
'XY',
'' ) /
107 subroutine atmosdynvars_init( this, model_mesh )
115 logical :: reg_file_hist
123 log_info(
'AtmosDynVars_Init',*)
126 select type(model_mesh)
128 atm_mesh => model_mesh
130 mesh3d => atm_mesh%ptr_mesh
132 call mesh3d%GetMesh2D( mesh2d )
136 call this%AUXVARS2D_manager%Init()
139 reg_file_hist = .false.
141 call this%AUXVARS2D_manager%Regist( &
143 this%AUX_VARS2D(v), reg_file_hist )
145 do n = 1, mesh3d%LOCAL_MESH_NUM
146 this%AUX_VARS2D(v)%local(n)%val(:,:) = 0.0_rp
162 end subroutine atmosdynvars_init
164 subroutine atmosdynvars_final( this )
170 log_info(
'AtmosDynVars_Final',*)
172 call this%AUXVARS2D_manager%Final()
173 deallocate( this%AUX_VARS2D )
178 end subroutine atmosdynvars_final
180 subroutine atmosdynvars_history( this )
195 end subroutine atmosdynvars_history
206 integer,
intent(in) :: domid
209 class(localmeshfieldbase),
pointer,
intent(out) :: coriolis
210 class(
localmesh3d),
pointer,
intent(out),
optional :: lcmesh3d
218 call field%GetLocalMeshField(domid, coriolis)
221 if (
present(lcmesh3d))
then
222 call mesh%GetLocalMesh( domid, lcmesh )
227 if (
present(lcmesh3d)) lcmesh3d => lcmesh
288end module mod_atmos_dyn_vars
module ATMOSPHERE dynamics
type(variableinfo), dimension(atmos_dyn_auxvars2d_num), public atmos_dyn_auxvars2d_vinfo
integer, parameter, public atmos_dyn_auxvars2d_coriolis_id
integer, parameter, public atmos_dyn_auxvars2d_num
subroutine, public atmosdynauxvars_getlocalmeshfields(domid, mesh, auxvars_list, coriolis, lcmesh3d)
module FElib / Element / Base
module FElib / File / History
module FElib / Mesh / Local 2D
module FElib / Mesh / Local 3D
module FElib / Mesh / Local, Base
module FElib / Data / base
integer, parameter, public local_meshfield_type_nodes_faceval
module FElib / Mesh / Base 2D
module FElib / Mesh / Base 3D
module FElib / Mesh / Base
module FElib / Data / base
module FElib / Data / Communication base
FElib / model framework / mesh manager (base)
FElib / model framework / variable manager.