11#include "scaleFElib.h"
49 integer :: vcoord_type_id
51 logical :: comm_use_mpi_pc
53 procedure :: atmosmesh_init
54 procedure :: atmosmesh_final
56 procedure(atmosmesh_setup_restartfile2),
public,
deferred :: setup_restartfile2
57 procedure(atmosmesh_calc_uvmet),
public,
deferred :: calc_uvmet
58 generic :: setup_restartfile => setup_restartfile1, setup_restartfile2
59 procedure(atmosmesh_setup_vcoord),
public,
deferred :: setup_vcoordinate
66 class(
atmosmesh),
target,
intent(inout) :: this
68 integer,
intent(in) :: var_num
72 subroutine atmosmesh_setup_restartfile2( this, restart_file, &
73 in_basename, in_postfix_timelabel, &
74 out_basename, out_postfix_timelabel, &
75 out_dtype, out_title, var_num )
78 class(
atmosmesh),
target,
intent(inout) :: this
80 character(*),
intent(in) :: in_basename
81 logical,
intent(in) :: in_postfix_timelabel
82 character(*),
intent(in) :: out_basename
83 logical,
intent(in) :: out_postfix_timelabel
84 character(*),
intent(in) :: out_title
85 character(*),
intent(in) :: out_dtype
86 integer,
intent(in) :: var_num
87 end subroutine atmosmesh_setup_restartfile2
90 subroutine atmosmesh_calc_uvmet( this, U, V, &
94 class(
atmosmesh),
target,
intent(in) :: this
99 end subroutine atmosmesh_calc_uvmet
102 subroutine atmosmesh_setup_vcoord( this )
104 class(
atmosmesh),
target,
intent(inout) :: this
105 end subroutine atmosmesh_setup_vcoord
127 subroutine atmosmesh_init( this, mesh )
133 class(
atmosmesh),
target,
intent(inout) :: this
139 call this%ModelMesh3D_Init( mesh )
145 call mesh%GetMesh2D( mesh2d )
146 call this%topography%Init(
"topo", mesh2d )
149 end subroutine atmosmesh_init
151 subroutine atmosmesh_final(this)
157 call this%topography%Final()
158 call this%ModelMesh3D_Final()
160 call this%element%Final()
161 call this%element_v1D%Final()
164 end subroutine atmosmesh_final
166end module mod_atmos_mesh
integer, parameter, public atm_mesh_max_commnuicator_num
module FElib / Element / Base
module FElib / Element / hexahedron
module FElib / Element / line
module FElib / File / Monitor
module FElib / File / Restart
module FElib / Mesh / Local 2D
module FElib / Mesh / Local 3D
module FElib / Mesh / Base 2D
module FElib / Mesh / Base 3D
module FElib / Mesh / Topography
module FElib / Data / base
FElib / model framework / mesh manager.
FElib / model framework / variable manager.
module common / sparsemat