FE-Project
Loading...
Searching...
No Matches
Functions/Subroutines | Variables
mod_mktopo Module Reference

module INITIAL More...

Functions/Subroutines

subroutine, public mktopo_setup
 Setup.
 
subroutine, public mktopo (output, model_mesh, topography)
 Driver.
 
subroutine, public mktopo_write (model_mesh, topography)
 Output topography data.
 

Variables

integer, public mktopo_type = -1
 
integer, parameter, public i_ignore = 0
 
integer, parameter, public i_input_file = 1
 
integer, parameter, public i_flat = 2
 
integer, parameter, public i_bellshape = 3
 
integer, parameter, public i_scaer = 4
 
integer, parameter, public i_bellshape_global = 5
 
integer, parameter, public i_scaher_global = 6
 
integer, parameter, public i_barocwave_global_jw2006 = 7
 

Detailed Description

module INITIAL

Description
A module for preparing topography data
Author
Yuta Kawai, Team SCALE
NAMELIST
  • PARAM_MKTOPO
    nametypedefault valuecomment
    TOPONAME character(len=H_SHORT) 'NONE'
    OUT_BASENAME character(len=H_LONG) '' basename of the output file
    OUT_VARNAME character(len=H_MID) 'topo' variable name of topo in the output file
    OUT_TITLE character(len=H_MID) 'SCALE-DG TOPOGRAPHY' title of the output file
    OUT_DTYPE character(len=H_SHORT) 'DEFAULT' REAL4 or REAL8

  • PARAM_MKTOPO_INPUT_FILE
    nametypedefault valuecomment
    IN_BASENAME character(len=H_LONG)
    VARNAME character(len=H_MID)

  • PARAM_MKTOPO_FLAT
    nametypedefault valuecomment
    FLAT_HEIGHT real(RP) 100.0_RP height of mountain [m]

  • PARAM_MKTOPO_BELLSHAPE
    nametypedefault valuecomment
    BELL_CX real(RP) 0.0E0_RP center location [m]: x-coordinate
    BELL_CY real(RP) 0.0E3_RP center location [m]: y-coordinate
    BELL_R real(RP) 2.E3_RP half radius [m]
    BELL_HEIGHT real(RP) 100.0_RP height of mountain [m]
    BELL_QUASI_2D logical .false.

  • PARAM_MKTOPO_SCHAER
    nametypedefault valuecomment
    SCHAER_CX real(RP) 25.E3_RP center location [m]: x
    SCHAER_RX real(RP) 5.E3_RP bubble radius [m]: x
    SCHAER_LAMBDA real(RP) wavelength of mountain oscillation [m]
    SCHAER_HEIGHT real(RP) height of mountain [m]

  • PARAM_MKTOPO_BELLSHAPE_GLOBAL
    nametypedefault valuecomment
    BELL_CLON real(RP) 0.0E0_RP center location [rad]: longitude
    BELL_CLAT real(RP) 0.0E0_RP center location [rad]: latitude
    BELL_R real(RP) 2.E3_RP half radius [m]
    BELL_HEIGHT real(RP) 100.0_RP height of mountain [m]

  • PARAM_MKTOPO_SCHAER_GLOBAL
    nametypedefault valuecomment
    SCHAER_CLON real(RP) center location [rad]: longitude
    SCHAER_CLAT real(RP) center location [rad]: latitude
    SCHAER_R real(RP) half-width of mountain [m]
    SCHAER_LAMBDA real(RP) wavelength of mountain oscillation [m]
    SCHAER_SHAPE_ID integer 1: gaussian, 2: cosine bell
    SCHAER_HEIGHT real(RP) height of mountain [m]
    QUASI_2D_FLAG logical

  • PARAM_MKTOPO_BAROCWAVE_GLOBAL_JW2006
    nametypedefault valuecomment
    ETA0 real(RP) 0.252_RP The value of η at a reference level (position of the jet)
    U0 real(RP) 35.E0_RP The parameter associated with zonal jet maximum amplitude [m/s]

History Output
No history output

Function/Subroutine Documentation

◆ mktopo_setup()

subroutine, public mod_mktopo::mktopo_setup

Setup.

Definition at line 91 of file mod_mktopo.F90.

92 implicit none
93
94 character(len=H_SHORT) :: toponame = 'NONE'
95
96 namelist / param_mktopo / &
97 toponame, &
98 out_basename, out_varname, &
99 out_title, out_dtype
100
101
102 integer :: ierr
103 !---------------------------------------------------------------------------
104
105 log_newline
106 log_info("MKTOPO_setup",*) 'Setup'
107
108 !--- read namelist
109 rewind(io_fid_conf)
110 read(io_fid_conf,nml=param_mktopo,iostat=ierr)
111 if( ierr < 0 ) then !--- missing
112 log_info("MKTOPO_setup",*) 'Not found namelist. Default used.'
113 elseif( ierr > 0 ) then !--- fatal error
114 log_error("MKTOPO_setup",*) 'Not appropriate names in namelist PARAM_MKTOPO. Check!'
115 call prc_abort
116 endif
117 log_nml(param_mktopo)
118
119 select case(trim(toponame))
120 case('NONE')
121 mktopo_type = i_ignore
122 case('INPUT_FILE')
123 mktopo_type = i_input_file
124 case('FLAT')
125 mktopo_type = i_flat
126 case('BELLSHAPE')
127 mktopo_type = i_bellshape
128 case('SCHAER')
129 mktopo_type = i_scaer
130 case('BELLSHAPE_GLOBAL')
131 mktopo_type = i_bellshape_global
132 case('SCHAER_GLOBAL')
133 mktopo_type = i_scaher_global
134 case('BAROCWAVE_GLOBAL_JW2006')
135 mktopo_type = i_barocwave_global_jw2006
136 case default
137 log_error("MKTOPO_setup",*) 'Not appropriate toponame. Check!', toponame
138 call prc_abort
139 end select
140
141 return

References i_barocwave_global_jw2006, i_bellshape, i_bellshape_global, i_flat, i_ignore, i_input_file, i_scaer, i_scaher_global, and mktopo_type.

Referenced by mod_dg_prep::dg_prep().

◆ mktopo()

subroutine, public mod_mktopo::mktopo ( logical, intent(out) output,
class(atmosmesh), intent(in), target model_mesh,
class(meshtopography), intent(inout) topography )

Driver.

Definition at line 147 of file mod_mktopo.F90.

149 implicit none
150
151 logical, intent(out) :: output
152 class(AtmosMesh), target, intent(in) :: model_mesh
153 class(MeshTopography), intent(inout) :: topography
154
155 integer :: n
156 integer :: ke
157 class(LocalMesh3D), pointer :: lcmesh3D
158 class(MeshBase3D), pointer :: mesh
159 class(LocalMesh2D), pointer :: lcmesh2D
160 class(MeshBase2D), pointer :: mesh2D
161 !---------------------------------------------------------------------------
162
163 mesh => model_mesh%ptr_mesh
164
165 if ( mktopo_type == i_ignore ) then
166 log_newline
167 log_progress(*) 'skip making topography data'
168 output = .false.
169 else
170 log_newline
171 log_progress(*) 'start making topography data'
172
173 call prof_rapstart('_MkTOPO_main', 3)
174
175 call mesh%GetMesh2D( mesh2d )
176
177 select case( mktopo_type )
178 case ( i_input_file )
179 call mktopo_input_file( mesh2d, topography%topo )
180 case ( i_flat )
181 call mktopo_flat( mesh2d, topography%topo )
182 case ( i_bellshape )
183 call mktopo_bellshape( mesh2d, topography%topo )
184 case ( i_scaer )
185 call mktopo_schaer_type_mountain( mesh2d, topography%topo )
186 case ( i_bellshape_global )
187 call mktopo_bellshape_global( mesh2d, topography%topo )
188 case ( i_scaher_global )
189 call mktopo_schaer_type_global( mesh2d, topography%topo )
190 case ( i_barocwave_global_jw2006 )
191 call mktopo_barocwave_global_jw2006( mesh2d, topography%topo )
192 end select
193
194 call prof_rapend ('_MkTOPO_main', 3)
195 log_progress(*) 'end making topography data'
196
197 output = .true.
198 end if
199
200 return
FElib / model framework / variable manager.

References i_barocwave_global_jw2006, i_bellshape, i_bellshape_global, i_flat, i_ignore, i_input_file, i_scaer, i_scaher_global, and mktopo_type.

Referenced by mod_dg_prep::dg_prep().

◆ mktopo_write()

subroutine, public mod_mktopo::mktopo_write ( class(atmosmesh), intent(in), target model_mesh,
class(meshtopography), intent(inout) topography )

Output topography data.

Definition at line 206 of file mod_mktopo.F90.

207
208 use scale_time, only: &
209 nowdate => time_nowdate, &
210 nowsubsec => time_nowsubsec, &
211 nowdaysec => time_nowdaysec
212 use scale_prc, only: prc_myrank
213
217 use scale_mesh_base2d, only: &
218 mftype2d_xy => meshbase2d_dimtypeid_xy
219
220 implicit none
221 class(AtmosMesh), target, intent(in) :: model_mesh
222 class(MeshTopography), intent(inout) :: topography
223
224 type(FILE_base_meshfield) :: file
225 class(MeshBase2D), pointer :: mesh
226
227 logical :: file_existed
228 integer, parameter :: vid_topo = 1
229 !--------------------------------------------------
230
231 nullify( mesh )
232 call model_mesh%ptr_mesh%GetMesh2D( mesh )
233 select type( mesh )
234 class is (meshcubedspheredom2d)
235 call file%Init( 1, meshcubedsphere2d=mesh )
236 class is (meshrectdom2d)
237 call file%Init( 1, mesh2d=mesh )
238 end select
239
240 call file%Create( out_basename, out_title, out_dtype, &
241 file_existed, &
242 myrank=prc_myrank )
243
244 if ( .not. file_existed ) then
245 call file%Put_GlobalAttribute_time( nowdate, nowsubsec )
246 end if
247
248 call file%Def_Var( topography%topo, "TOPOGRAPHY", vid_topo, mftype2d_xy, 'XY' )
249 call file%End_def()
250 call file%Write_var2D( vid_topo, topography%topo, nowdaysec, nowdaysec )
251 call file%Close()
252 call file%Final()
253
254 return
module FElib / Mesh / Base 2D
integer, public meshbase2d_dimtypeid_xy
module FElib / Mesh / Cubed-sphere 2D domain
module FElib / Mesh / Rectangle 2D domain

References scale_mesh_base2d::meshbase2d_dimtypeid_xy, and mod_mktopo_util::mktopoutil_barocwave_global_jw2006_calc_topo().

Referenced by mod_dg_prep::dg_prep().

Variable Documentation

◆ mktopo_type

integer, public mod_mktopo::mktopo_type = -1

Definition at line 57 of file mod_mktopo.F90.

57 integer, public :: MKTOPO_TYPE = -1

Referenced by mktopo(), and mktopo_setup().

◆ i_ignore

integer, parameter, public mod_mktopo::i_ignore = 0

Definition at line 58 of file mod_mktopo.F90.

58 integer, parameter, public :: I_IGNORE = 0

Referenced by mktopo(), and mktopo_setup().

◆ i_input_file

integer, parameter, public mod_mktopo::i_input_file = 1

Definition at line 59 of file mod_mktopo.F90.

59 integer, parameter, public :: I_INPUT_FILE = 1

Referenced by mktopo(), and mktopo_setup().

◆ i_flat

integer, parameter, public mod_mktopo::i_flat = 2

Definition at line 60 of file mod_mktopo.F90.

60 integer, parameter, public :: I_FLAT = 2

Referenced by mktopo(), and mktopo_setup().

◆ i_bellshape

integer, parameter, public mod_mktopo::i_bellshape = 3

Definition at line 61 of file mod_mktopo.F90.

61 integer, parameter, public :: I_BELLSHAPE = 3

Referenced by mktopo(), and mktopo_setup().

◆ i_scaer

integer, parameter, public mod_mktopo::i_scaer = 4

Definition at line 62 of file mod_mktopo.F90.

62 integer, parameter, public :: I_SCAER = 4

Referenced by mktopo(), and mktopo_setup().

◆ i_bellshape_global

integer, parameter, public mod_mktopo::i_bellshape_global = 5

Definition at line 63 of file mod_mktopo.F90.

63 integer, parameter, public :: I_BELLSHAPE_GLOBAL = 5

Referenced by mktopo(), and mktopo_setup().

◆ i_scaher_global

integer, parameter, public mod_mktopo::i_scaher_global = 6

Definition at line 64 of file mod_mktopo.F90.

64 integer, parameter, public :: I_SCAHER_GLOBAL = 6

Referenced by mktopo(), and mktopo_setup().

◆ i_barocwave_global_jw2006

integer, parameter, public mod_mktopo::i_barocwave_global_jw2006 = 7

Definition at line 65 of file mod_mktopo.F90.

65 integer, parameter, public :: I_BAROCWAVE_GLOBAL_JW2006 = 7

Referenced by mktopo(), and mktopo_setup().