FE-Project
Loading...
Searching...
No Matches
Data Types | Functions/Subroutines
mod_atmos_mesh_gm Module Reference

module Atmosphere / Mesh More...

Data Types

type  atmosmeshgm
 Derived type to manage a computational mesh of global atmospheric model. More...
 

Functions/Subroutines

subroutine atmosmeshgm_init (this)
 Initialize a object to manage computational mesh.
 

Detailed Description

module Atmosphere / Mesh

Description
Module for mesh with atmospheric global model
Author
Yuta kawai, Team SCALE
NAMELIST
  • PARAM_ATMOS_MESH
    nametypedefault valuecomment
    SHALLOW_ATM_APPROX_FLAG logical .true. Flag whether the shallow atmosphere approximation is applied
    DOM_ZMIN real(RP) 0.0_RP Minimum vertical coordinate value of the computational domain
    DOM_ZMAX real(RP) 10.0E3_RP Maximum vertical coordinate value of the computational domain
    FZ real(RP), dimension(FZ_NMAX) Values of the vertically computational coordinate at the element boundaries
    ISPERIODICZ logical .false. Flag whether a periodic boundary condition is applied in the vertical direction
    NEGX integer 2 Number of finite element in the y-coordinate direction in each panel of the cubed-sphere mesh
    NEGY integer 2 Number of finite element in the y-coordinate direction in each panel of the cubed-sphere mesh
    NEZ integer 2 Number of finite element in the vertical direction in each MPI process
    NLOCALMESHPERPRC integer 6 Number of local mesh per MPI process
    NPRC integer 1 Total number of MPI process
    POLYORDER_H integer 2 Polynomial order for the horizontal direction
    POLYORDER_V integer 2 Polynomial order for the z-direction
    LUMPEDMASSMATFLAG logical .false. Flag whether a mass lumping is applied
    ELEMENT_OPERATION_TYPE character(len=H_SHORT) 'General' General or TensorProd3D
    SPMV_STORAGE_FORMAT character(len=H_SHORT) 'ELL' CSR or ELL
    VERTICAL_COORD_NAME character(len=H_MID) "TERRAIN_FOLLOWING" Type of the vertical coordinate
    TOPO_IN_BASENAME character(len=H_LONG) '' Basename of the input file
    TOPO_IN_VARNAME character(len=H_MID) 'topo' Variable name of topography in the input file
    COMM_USE_MPI_PC logical .false. Flag whether persistent communication is used in MPI

History Output
No history output

Function/Subroutine Documentation

◆ atmosmeshgm_init()

subroutine mod_atmos_mesh_gm::atmosmeshgm_init ( class(atmosmeshgm), intent(inout), target this)

Initialize a object to manage computational mesh.

Definition at line 82 of file mod_atmos_mesh_gm.F90.

83 use scale_const, only: &
84 rplanet => const_radius
85 use scale_mesh_base2d, only: &
86 mftype2d_xy => meshbase2d_dimtypeid_xy
87 use scale_meshutil_vcoord, only: &
89
90 implicit none
91 class(AtmosMeshGM), target, intent(inout) :: this
92
93 real(RP) :: dom_zmin = 0.0_rp
94 real(RP) :: dom_zmax = 10.0e3_rp
95 logical :: isPeriodicZ = .false.
96
97 integer, parameter :: FZ_nmax = 1000
98 real(RP) :: FZ(FZ_nmax)
99
100 !* Global
101 logical :: SHALLOW_ATM_APPROX_FLAG = .true.
102 integer :: NeGX = 2
103 integer :: NeGY = 2
104 integer :: NeZ = 2
105 integer :: NLocalMeshPerPrc = 6
106 integer :: Nprc = 1
107 integer :: PolyOrder_h = 2
108 integer :: PolyOrder_v = 2
109 logical :: LumpedMassMatFlag = .false.
110
111 character(len=H_LONG) :: TOPO_IN_BASENAME = ''
112 character(len=H_MID) :: TOPO_IN_VARNAME = 'topo'
113 character(len=H_MID) :: VERTICAL_COORD_NAME = "TERRAIN_FOLLOWING"
114
115 logical :: COMM_USE_MPI_PC = .false.
116
117 character(len=H_SHORT) :: Element_operation_type = 'General'
118 character(len=H_SHORT) :: SpMV_storage_format = 'ELL'
119
120 namelist / param_atmos_mesh / &
121 shallow_atm_approx_flag, &
122 dom_zmin, dom_zmax, &
123 fz, isperiodicz, &
124 negx, negy, nez, nlocalmeshperprc, nprc, &
125 polyorder_h, polyorder_v, lumpedmassmatflag, &
126 element_operation_type, &
127 spmv_storage_format, &
128 vertical_coord_name, &
129 topo_in_basename, topo_in_varname, &
130 comm_use_mpi_pc
131
132 integer :: k
133 logical :: is_spec_FZ
134
135 integer :: ierr
136
137 type(FILE_base_meshfield) :: file_topo
138 !-------------------------------------------
139
140 log_newline
141 log_info("ATMOS_MESH_setup",*) 'Setup'
142
143 fz(:) = -1.0_rp
144
145 rewind(io_fid_conf)
146 read(io_fid_conf,nml=param_atmos_mesh,iostat=ierr)
147 if( ierr < 0 ) then !--- missing
148 log_info("ATMOS_MESH_setup",*) 'Not found namelist. Default used.'
149 elseif( ierr > 0 ) then !--- fatal error
150 log_error("ATMOS_MESH_setup",*) 'Not appropriate names in namelist PARAM_ATM_MESH. Check!'
151 call prc_abort
152 endif
153 log_nml(param_atmos_mesh)
154
155 !----
156
157 !- Setup the element
158
159 call this%element%Init( polyorder_h, polyorder_v, lumpedmassmatflag )
160 call this%element_v1D%Init( polyorder_v, lumpedmassmatflag )
161
162 !- Setup the mesh
163
164 is_spec_fz = .true.
165 do k=1, nez+1
166 if (fz(k) < 0.0_rp) then
167 is_spec_fz = .false.
168 end if
169 end do
170 if (is_spec_fz) then
171 call this%mesh%Init( &
172 negx, negy, nez, rplanet, dom_zmin, dom_zmax, &
173 this%element, nlocalmeshperprc, nproc=nprc, &
174 fz=fz(1:nez+1), shallow_approx=shallow_atm_approx_flag )
175 else
176 call this%mesh%Init( &
177 negx, negy, nez, rplanet, dom_zmin, dom_zmax, &
178 this%element, nlocalmeshperprc, nproc=nprc, &
179 shallow_approx=shallow_atm_approx_flag )
180 end if
181
182 call this%mesh%Generate()
183
184 !-
185
186 call this%AtmosMesh_Init( this%mesh )
187 call this%PrepairElementOperation( element_operation_type, spmv_storage_format )
188
189 !- Set topography & vertical coordinate
190
191 if ( topo_in_basename /= '' ) then
192 log_info("ATMOS_MESH_setup",*) 'Read topography data'
193
194 call file_topo%Init(1, meshcubedsphere2d=this%mesh%mesh2D )
195 call file_topo%Open( topo_in_basename, myrank=prc_myrank )
196 call file_topo%Read_Var( mftype2d_xy, topo_in_varname, this%topography%topo )
197 call file_topo%Close()
198 call file_topo%Final()
199 end if
200
201 this%vcoord_type_id = meshutil_get_vcoord_typeid( vertical_coord_name )
202 call this%Setup_vcoordinate()
203
204 !-
205 this%comm_use_mpi_pc = comm_use_mpi_pc
206
207 return
module FElib / Mesh / Base 2D
integer, public meshbase2d_dimtypeid_xy
module FElib / Mesh / utility for general vertical coordinate
integer function, public meshutil_get_vcoord_typeid(vcoord_type)

References mod_atmos_mesh::atm_mesh_max_commnuicator_num, scale_cubedsphere_coord_cnv::cubedspherecoordcnv_cs2lonlatvec(), scale_mesh_base2d::meshbase2d_dimtypeid_xy, and scale_meshutil_vcoord::meshutil_get_vcoord_typeid().