11#include "scaleFElib.h"
53 procedure :: final => atmosmeshgm_final
54 procedure :: create_communicator => atmosmeshgm_create_communicator
55 procedure :: setup_restartfile1 => atmosmeshgm_setup_restartfile1
56 procedure :: setup_restartfile2 => atmosmeshgm_setup_restartfile2
57 procedure :: calc_uvmet => atmosmeshgm_calc_uvmet
58 procedure :: setup_vcoordinate => atmosmeshgm_setup_vcoordinate
83 use scale_const,
only: &
84 rplanet => const_radius
93 real(RP) :: dom_zmin = 0.0_rp
94 real(RP) :: dom_zmax = 10.0e3_rp
95 logical :: isPeriodicZ = .false.
97 integer,
parameter :: FZ_nmax = 1000
98 real(RP) :: FZ(FZ_nmax)
101 logical :: SHALLOW_ATM_APPROX_FLAG = .true.
105 integer :: NLocalMeshPerPrc = 6
107 integer :: PolyOrder_h = 2
108 integer :: PolyOrder_v = 2
109 logical :: LumpedMassMatFlag = .false.
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"
115 logical :: COMM_USE_MPI_PC = .false.
117 character(len=H_SHORT) :: Element_operation_type =
'General'
118 character(len=H_SHORT) :: SpMV_storage_format =
'ELL'
120 namelist / param_atmos_mesh / &
121 shallow_atm_approx_flag, &
122 dom_zmin, dom_zmax, &
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, &
133 logical :: is_spec_FZ
141 log_info(
"ATMOS_MESH_setup",*)
'Setup'
146 read(io_fid_conf,nml=param_atmos_mesh,iostat=ierr)
148 log_info(
"ATMOS_MESH_setup",*)
'Not found namelist. Default used.'
149 elseif( ierr > 0 )
then
150 log_error(
"ATMOS_MESH_setup",*)
'Not appropriate names in namelist PARAM_ATM_MESH. Check!'
153 log_nml(param_atmos_mesh)
159 call this%element%Init( polyorder_h, polyorder_v, lumpedmassmatflag )
160 call this%element_v1D%Init( polyorder_v, lumpedmassmatflag )
166 if (fz(k) < 0.0_rp)
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 )
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 )
182 call this%mesh%Generate()
186 call this%AtmosMesh_Init( this%mesh )
187 call this%PrepairElementOperation( element_operation_type, spmv_storage_format )
191 if ( topo_in_basename /=
'' )
then
192 log_info(
"ATMOS_MESH_setup",*)
'Read topography data'
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()
202 call this%Setup_vcoordinate()
205 this%comm_use_mpi_pc = comm_use_mpi_pc
213 subroutine atmosmeshgm_final(this)
220 do commid=1, this%communicator_num
221 call this%comm_list(commid)%Final()
224 call this%mesh%Final()
225 call this%AtmosMesh_Final()
228 end subroutine atmosmeshgm_final
231 subroutine atmosmeshgm_create_communicator( this, sfield_num, hvfield_num, htensorfield_num, &
232 var_manager, field_list, commid )
235 integer,
intent(in) :: sfield_num
236 integer,
intent(in) :: hvfield_num
237 integer,
intent(in) :: htensorfield_num
240 integer,
intent(out) :: commid
244 call this%comm_list(commid)%Init( sfield_num, hvfield_num, htensorfield_num, this%mesh )
245 if ( this%comm_use_mpi_pc )
call this%comm_list(commid)%Prepare_PC()
246 call var_manager%MeshFieldComm_Prepair( this%comm_list(commid), field_list )
249 end subroutine atmosmeshgm_create_communicator
252 subroutine atmosmeshgm_setup_restartfile1( this, restart_file, var_num )
256 integer,
intent(in) :: var_num
259 call restart_file%Init(
'ATMOS', var_num, meshcubedsphere3d=this%mesh )
261 end subroutine atmosmeshgm_setup_restartfile1
264 subroutine atmosmeshgm_setup_restartfile2( this, restart_file, &
265 in_basename, in_postfix_timelabel, &
266 out_basename, out_postfix_timelabel, &
267 out_dtype, out_title, var_num )
271 character(*),
intent(in) :: in_basename
272 logical,
intent(in) :: in_postfix_timelabel
273 character(*),
intent(in) :: out_basename
274 logical,
intent(in) :: out_postfix_timelabel
275 character(*),
intent(in) :: out_title
276 character(*),
intent(in) :: out_dtype
277 integer,
intent(in) :: var_num
280 call restart_file%Init(
'ATMOS', in_basename, in_postfix_timelabel, &
281 out_basename, out_postfix_timelabel, out_dtype, out_title, var_num, &
282 meshcubedsphere3d=this%mesh )
284 end subroutine atmosmeshgm_setup_restartfile2
287 subroutine atmosmeshgm_calc_uvmet( this, U, V, &
305 do n=1, this%mesh%LOCAL_MESH_NUM
306 lcmesh => this%mesh%lcmesh_list(n)
307 elem => lcmesh%refElem3D
309 lcmesh%panelID, lcmesh%pos_en(:,:,1), lcmesh%pos_en(:,:,2), &
310 lcmesh%gam, elem%Np * lcmesh%Ne, &
311 u%local(n)%val(:,lcmesh%NeS:lcmesh%NeE), &
312 v%local(n)%val(:,lcmesh%NeS:lcmesh%NeE), &
313 umet%local(n)%val(:,lcmesh%NeS:lcmesh%NeE), &
314 vmet%local(n)%val(:,lcmesh%NeS:lcmesh%NeE) )
318 end subroutine atmosmeshgm_calc_uvmet
321 subroutine atmosmeshgm_setup_vcoordinate( this )
330 call comm2d%Init( 1, 0, 0, this%mesh%mesh2D )
331 call comm3d%Init( 2, 1, 0, this%mesh )
333 call this%topography%SetVCoordinate( this%ptr_mesh, &
334 this%vcoord_type_id, this%mesh%zmax_gl, comm3d, comm2d )
340 end SUBROUTINE atmosmeshgm_setup_vcoordinate
342end module mod_atmos_mesh_gm
subroutine atmosmeshgm_init(this)
Initialize a object to manage computational mesh.
integer, parameter, public atm_mesh_max_commnuicator_num
module common / Coordinate conversion with a cubed-sphere
subroutine, public cubedspherecoordcnv_cs2lonlatvec(panelid, alpha, beta, gam, np, vecalpha, vecbeta, veclon, veclat, lat)
module FElib / Element / Base
module FElib / Element / hexahedron
module FElib / File / Base
module FElib / File / Restart
module FElib / Mesh / Local 3D
module FElib / Mesh / Base 2D
integer, public meshbase2d_dimtypeid_xy
module FElib / Mesh / Base 3D
module FElib / Mesh / Cubed-sphere 3D domain
module FElib / Data / base
module FElib / Data / Communication in 2D cubed-sphere domain
module FElib / Data / Communication in 3D cubed-sphere domain
module FElib / Mesh / utility for general vertical coordinate
integer function, public meshutil_get_vcoord_typeid(vcoord_type)
FElib / model framework / mesh manager.
FElib / model framework / variable manager.
module common / sparsemat
Derived type to manage a computational mesh of global atmospheric model.