FE-Project
Loading...
Searching...
No Matches
mod_atmos_mesh.F90
Go to the documentation of this file.
1!-------------------------------------------------------------------------------
10!-------------------------------------------------------------------------------
11#include "scaleFElib.h"
13 !-----------------------------------------------------------------------------
14 !
15 !++ Used modules
16 !
17 use scale_precision
18 use scale_io
19 use scale_prc
20
29 use scale_sparsemat, only: sparsemat
32
36
37 !-----------------------------------------------------------------------------
38 implicit none
39 private
40 !-----------------------------------------------------------------------------
41 !
42 !++ Public type & procedures
43 !
44 type, abstract, extends(modelmesh3d), public :: atmosmesh
45 type(hexahedralelement) :: element
46 type(lineelement) :: element_v1d
47
48 type(meshtopography) :: topography
49 integer :: vcoord_type_id
50
51 logical :: comm_use_mpi_pc
52 contains
53 procedure :: atmosmesh_init
54 procedure :: atmosmesh_final
55 procedure(atmosmesh_setup_restartfile1), public, deferred :: setup_restartfile1
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
60 end type atmosmesh
61
62 interface
63 subroutine atmosmesh_setup_restartfile1( this, restart_file, var_num )
64 import atmosmesh
66 class(atmosmesh), target, intent(inout) :: this
67 class(file_restart_meshfield_component), intent(inout) :: restart_file
68 integer, intent(in) :: var_num
69 end subroutine atmosmesh_setup_restartfile1
70 end interface
71 interface
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 )
76 import atmosmesh
78 class(atmosmesh), target, intent(inout) :: this
79 class(file_restart_meshfield_component), intent(inout) :: restart_file
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
88 end interface
89 interface
90 subroutine atmosmesh_calc_uvmet( this, U, V, &
91 Umet, Vmet )
92 import atmosmesh
93 import meshfield3d
94 class(atmosmesh), target, intent(in) :: this
95 type(meshfield3d), intent(in) :: U
96 type(meshfield3d), intent(in) :: V
97 type(meshfield3d), intent(inout) :: Umet
98 type(meshfield3d), intent(inout) :: Vmet
99 end subroutine atmosmesh_calc_uvmet
100 end interface
101 interface
102 subroutine atmosmesh_setup_vcoord( this )
103 import atmosmesh
104 class(atmosmesh), target, intent(inout) :: this
105 end subroutine atmosmesh_setup_vcoord
106 end interface
107 integer, parameter, public :: atm_mesh_max_commnuicator_num = 10
108
109 !-----------------------------------------------------------------------------
110 !
111 !++ Public parameters & variables
112 !
113
114 !-----------------------------------------------------------------------------
115 !
116 !++ Private procedures
117 !
118 !-------------------
119
120 !-----------------------------------------------------------------------------
121 !
122 !++ Private parameters & variables
123 !
124
125contains
126
127 subroutine atmosmesh_init( this, mesh )
128
131
132 implicit none
133 class(atmosmesh), target, intent(inout) :: this
134 class(meshbase3d), intent(in) :: mesh
135
136 class(meshbase2d), pointer :: mesh2d
137 !-------------------------------------------
138
139 call this%ModelMesh3D_Init( mesh )
140
141 !-
142 call file_monitor_meshfield_set_dim( mesh, 'ATM3D' )
143
144 !-
145 call mesh%GetMesh2D( mesh2d )
146 call this%topography%Init( "topo", mesh2d )
147
148 return
149 end subroutine atmosmesh_init
150
151 subroutine atmosmesh_final(this)
152 implicit none
153
154 class(atmosmesh), intent(inout) :: this
155 !-------------------------------------------
156
157 call this%topography%Final()
158 call this%ModelMesh3D_Final()
159
160 call this%element%Final()
161 call this%element_v1D%Final()
162
163 return
164 end subroutine atmosmesh_final
165
166end module mod_atmos_mesh
module Atmosphere / Mesh
integer, parameter, public atm_mesh_max_commnuicator_num
module FElib / Element / Base
module FElib / Element / hexahedron
module FElib / Element / line
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