SCALE-RM
scale_urban_grid_cartesC_index.F90
Go to the documentation of this file.
1 !-------------------------------------------------------------------------------
9 !-------------------------------------------------------------------------------
10 #include "scalelib.h"
12  !-----------------------------------------------------------------------------
13  !
14  !++ used modules
15  !
16  use scale_precision
17  use scale_io
18  use scale_prof
19  !-----------------------------------------------------------------------------
20  implicit none
21  private
22  !-----------------------------------------------------------------------------
23  !
24  !++ Public procedure
25  !
27 
28  !-----------------------------------------------------------------------------
29  !
30  !++ Public parameters & variables
31  !
32  integer, public :: ukmax = -1 ! # of computational cells: z for urban
33  integer, public :: uimax = -1 ! # of computational cells: x for urban
34  integer, public :: ujmax = -1 ! # of computational cells: y for urban
35 
36  integer, public :: uka = -1 ! # of total grids: z for urban, local
37  integer, public :: uks ! start point of inner domain: z for urban, local
38  integer, public :: uke ! end point of inner domain: z for urban, local
39 
40  integer, public :: uia ! # of total grids: x for urban, local
41  integer, public :: uis ! start point of inner domain: x for urban, local
42  integer, public :: uie ! end point of inner domain: x for urban, local
43 
44  integer, public :: uja ! # of total grids: Y for urban, local
45  integer, public :: ujs ! start point of inner domain: y for urban, local
46  integer, public :: uje ! end point of inner domain: y for urban, local
47 
48  !-----------------------------------------------------------------------------
49  !
50  !++ Private procedure
51  !
52  !-----------------------------------------------------------------------------
53  !
54  !++ Private parameters & variables
55  !
56  !-----------------------------------------------------------------------------
57 contains
58  !-----------------------------------------------------------------------------
61  use scale_prc, only: &
62  prc_abort
64  imax, &
65  ia, is, ie, &
66  jmax, &
67  ja, js, je
68  implicit none
69 
70  namelist / param_urban_grid_cartesc_index / &
71  ukmax
72 
73  integer :: ierr
74  !---------------------------------------------------------------------------
75 
76  log_newline
77  log_info("URBAN_GRID_CARTESC_INDEX_setup",*) 'Setup'
78 
79  !--- read namelist
80  rewind(io_fid_conf)
81  read(io_fid_conf,nml=param_urban_grid_cartesc_index,iostat=ierr)
82  if( ierr < 0 ) then !--- missing
83  log_info("URBAN_GRID_CARTESC_INDEX_setup",*) 'Not found namelist. Default used.'
84  elseif( ierr > 0 ) then !--- fatal error
85  log_error("URBAN_GRID_CARTESC_INDEX_setup",*) 'Not appropriate names in namelist PARAM_URBAN_GRID_CARTESC_INDEX. Check!'
86  call prc_abort
87  endif
88  log_nml(param_urban_grid_cartesc_index)
89 
90  if ( ukmax < 1 ) then
91  log_error("URBAN_GRID_CARTESC_INDEX_setup",*) 'UKMAX must be >= 1 ', ukmax
92  call prc_abort
93  end if
94 
95  uka = ukmax
96  uks = 1
97  uke = ukmax
98 
99  log_newline
100  log_info("URBAN_GRID_CARTESC_INDEX_setup",*) 'Urban grid index information '
101  log_info_cont('(1x,A,I6,A,I6,A,I6)') 'z-axis levels :', ukmax
102 
103  ! at this moment horizontal grid is same as that in atmosphere
104  uimax = imax
105  uia = ia
106  uis = is
107  uie = ie
108 
109  ujmax = jmax
110  uja = ja
111  ujs = js
112  uje = je
113 
114  return
115  end subroutine urban_grid_cartesc_index_setup
116 
integer, public jmax
of computational cells: y, local
integer, public imax
of computational cells: x, local
integer, public ia
of whole cells: x, local, with HALO
integer, public ja
of whole cells: y, local, with HALO
integer, public io_fid_conf
Config file ID.
Definition: scale_io.F90:55
module urban / grid / icosahedralA / index
integer, public is
start point of inner domain: x, local
integer, public ie
end point of inner domain: x, local
module atmosphere / grid / cartesC index
module PROCESS
Definition: scale_prc.F90:11
integer, public je
end point of inner domain: y, local
subroutine, public prc_abort
Abort Process.
Definition: scale_prc.F90:338
integer, public js
start point of inner domain: y, local
module profiler
Definition: scale_prof.F90:11
subroutine, public urban_grid_cartesc_index_setup
Setup.
module PRECISION
module STDIO
Definition: scale_io.F90:10