SCALE-RM
Functions/Subroutines | Variables
scale_grid_index Module Reference

module grid index More...

Functions/Subroutines

subroutine, public grid_index_setup
 Setup. More...
 

Variables

integer, parameter, public zdir = 1
 
integer, parameter, public xdir = 2
 
integer, parameter, public ydir = 3
 
integer, public kmax = -1
 

of computational cells: z, local

More...
 
integer, public imax = -1
 

of computational cells: x, local

More...
 
integer, public jmax = -1
 

of computational cells: y, local

More...
 
integer, public iblock = -1
 block size for cache blocking: x More...
 
integer, public jblock = -1
 block size for cache blocking: y More...
 
integer, parameter, public khalo = 2
 

of halo cells: z

More...
 
integer, public ihalo = 2
 

of halo cells: x

More...
 
integer, public jhalo = 2
 

of halo cells: y

More...
 
integer, public ka
 

of whole cells: z, local, with HALO

More...
 
integer, public ia
 

of whole cells: x, local, with HALO

More...
 
integer, public ja
 

of whole cells: y, local, with HALO

More...
 
integer, public ks
 start point of inner domain: z, local More...
 
integer, public ke
 end point of inner domain: z, local More...
 
integer, public is
 start point of inner domain: x, local More...
 
integer, public ie
 end point of inner domain: x, local More...
 
integer, public js
 start point of inner domain: y, local More...
 
integer, public je
 end point of inner domain: y, local More...
 
integer, public kijmax = -1
 

of computational cells: z*x*y

More...
 
integer, public imaxb
 
integer, public jmaxb
 
integer, public isb
 
integer, public ieb
 
integer, public jsb
 
integer, public jeb
 
integer, public ieh
 end point of inner domain: x, local (half level) More...
 
integer, public jeh
 end point of inner domain: y, local (half level) More...
 
integer, public imaxg = -1
 

of computational cells: x, global

More...
 
integer, public jmaxg = -1
 

of computational cells: y, global

More...
 
integer, public iag
 

of computational grids

More...
 
integer, public jag
 

of computational grids

More...
 
integer, public iagb
 

of computational grids

More...
 
integer, public jagb
 

of computational grids

More...
 
integer, public is_ing
 start point of the inner domain: cx, global More...
 
integer, public ie_ing
 end point of the inner domain: cx, global More...
 
integer, public js_ing
 start point of the inner domain: cy, global More...
 
integer, public je_ing
 end point of the inner domain: cy, global More...
 
integer, public isga
 start point of the full domain: cx, global More...
 
integer, public iega
 end point of the full domain: cx, global More...
 
integer, public jsga
 start point of the full domain: cy, global More...
 
integer, public jega
 end point of the full domain: cy, global More...
 
integer, public isgb
 start point of the inner domain: x, global More...
 
integer, public iegb
 end point of the inner domain: x, global More...
 
integer, public jsgb
 start point of the inner domain: y, global More...
 
integer, public jegb
 end point of the inner domain: y, global More...
 

Detailed Description

module grid index

Description
Grid Index module
Author
Team SCALE
History
  • 2013-12-02 (S.Nishizawa) [new]
NAMELIST
  • PARAM_INDEX
    nametypedefault valuecomment
    IMAXG integer -1 # of computational cells: x, global
    JMAXG integer -1 # of computational cells: y, global
    KMAX integer -1 # of computational cells: z, local
    IMAX integer -1 # of computational cells: x, local
    JMAX integer -1 # of computational cells: y, local
    IHALO integer 2 # of halo cells: x
    JHALO integer 2 # of halo cells: y
    IBLOCK integer -1 block size for cache blocking: x
    JBLOCK integer -1 block size for cache blocking: y

History Output
No history output

Function/Subroutine Documentation

◆ grid_index_setup()

subroutine, public scale_grid_index::grid_index_setup ( )

Setup.

Definition at line 111 of file scale_grid_index.F90.

References ia, iag, iagb, iblock, ie, ie_ing, ieb, iega, iegb, ieh, ihalo, imax, imaxb, imaxg, scale_stdio::io_fid_conf, scale_stdio::io_fid_log, scale_stdio::io_fid_nml, scale_stdio::io_l, scale_stdio::io_nml, is, is_ing, isb, isga, isgb, ja, jag, jagb, jblock, je, je_ing, jeb, jega, jegb, jeh, jhalo, jmax, jmaxb, jmaxg, js, js_ing, jsb, jsga, jsgb, ka, ke, khalo, kijmax, kmax, ks, scale_rm_process::prc_2drank, scale_rm_process::prc_has_e, scale_rm_process::prc_has_n, scale_rm_process::prc_has_s, scale_rm_process::prc_has_w, scale_process::prc_mpistop(), scale_process::prc_myrank, scale_rm_process::prc_num_x, scale_rm_process::prc_num_y, scale_rm_process::prc_periodic_x, and scale_rm_process::prc_periodic_y.

Referenced by mod_rm_driver::scalerm(), and mod_rm_prep::scalerm_prep().

111  use scale_process, only: &
112  prc_mpistop, &
113  prc_myrank
114  use scale_rm_process, only: &
115  prc_periodic_x, &
116  prc_periodic_y, &
117  prc_2drank, &
118  prc_num_x, &
119  prc_num_y, &
120  prc_has_w, &
121  prc_has_e, &
122  prc_has_s, &
123  prc_has_n
124  implicit none
125 
126 #ifndef FIXEDINDEX
127  namelist / param_index / &
128  imaxg, &
129  jmaxg, &
130  kmax, &
131  imax, &
132  jmax, &
133  ihalo, &
134  jhalo, &
135  iblock, &
136  jblock
137 #endif
138 
139  integer :: ierr
140  !---------------------------------------------------------------------------
141 
142  if( io_l ) write(io_fid_log,*)
143  if( io_l ) write(io_fid_log,*) '++++++ Module[GRID_INDEX] / Categ[ATMOS-RM GRID] / Origin[SCALElib]'
144 
145 #ifdef FIXEDINDEX
146  if( io_l ) write(io_fid_log,*) '*** No namelists.'
147  if( io_l ) write(io_fid_log,*)
148  if( io_l ) write(io_fid_log,*) '*** fixed index mode'
149 
150  imaxg = imax * prc_num_y
151  jmaxg = jmax * prc_num_y
152 #else
153  !--- read namelist
154  rewind(io_fid_conf)
155  read(io_fid_conf,nml=param_index,iostat=ierr)
156  if( ierr < 0 ) then !--- missing
157  if( io_l ) write(io_fid_log,*) '*** Not found namelist. Default used.'
158  elseif( ierr > 0 ) then !--- fatal error
159  write(*,*) 'xxx Not appropriate names in namelist PARAM_INDEX. Check!'
160  call prc_mpistop
161  endif
162  if( io_nml ) write(io_fid_nml,nml=param_index)
163 
164  if ( imaxg * jmaxg < 0 ) then
165  write(*,*) 'xxx Both IMAXG and JMAXG must set! ', imaxg, jmaxg
166  call prc_mpistop
167  endif
168  if ( imax * jmax < 0 ) then
169  write(*,*) 'xxx Both IMAX and JMAX must set! ', imax, jmax
170  call prc_mpistop
171  endif
172 
173  if ( imax > 0 .AND. jmax > 0 ) then
174  imaxg = imax * prc_num_x
175  jmaxg = jmax * prc_num_y
176  elseif( imaxg > 0 .AND. jmaxg > 0 ) then
177  imax = (imaxg-1) / prc_num_x + 1
178  jmax = (jmaxg-1) / prc_num_y + 1
179 
180  if ( mod(imaxg,prc_num_x) > 0 ) then
181  if( io_l ) write(io_fid_log,*) 'xxx number of IMAXG should be divisible by PRC_NUM_X'
182  write(*,*) 'xxx number of IMAXG should be divisible by PRC_NUM_X'
183  call prc_mpistop
184 ! if( IO_L ) write(IO_FID_LOG,*) '*** number of IMAXG should be divisible by PRC_NUM_X'
185 ! if( IO_L ) write(IO_FID_LOG,*) '*** Small IMAX is used in ranks(X,*)=', PRC_NUM_X-1
186 ! if ( PRC_2Drank(PRC_myrank,1) == PRC_NUM_X-1 ) then
187 ! IMAX = IMAXG - IMAX * (PRC_NUM_X-1)
188 ! if( IO_L ) write(IO_FID_LOG,*) '*** Small IMAX is used in this rank. IMAX=', IMAX
189 ! endif
190  endif
191 
192  if ( mod(jmaxg,prc_num_y) > 0 ) then
193  if( io_l ) write(io_fid_log,*) 'xxx number of JMAXG should be divisible by PRC_NUM_Y'
194  write(*,*) 'xxx number of JMAXG should be divisible by PRC_NUM_Y'
195  call prc_mpistop
196 ! if( IO_L ) write(IO_FID_LOG,*) '*** number of JMAXG should be divisible by PRC_NUM_Y'
197 ! if( IO_L ) write(IO_FID_LOG,*) '*** Small JMAX is used in ranks(*,Y)=', PRC_NUM_Y-1
198 ! if ( PRC_2Drank(PRC_myrank,2) == PRC_NUM_Y-1 ) then
199 ! JMAX = JMAXG - JMAX * (PRC_NUM_Y-1)
200 ! if( IO_L ) write(IO_FID_LOG,*) '*** Small JMAX is used in this rank. JMAX=', JMAX
201 ! endif
202  endif
203  else
204  write(*,*) 'xxx IMAXG&JMAXG or IMAX&JMAX must set!'
205  call prc_mpistop
206  endif
207 
208  if ( imax < ihalo ) then
209  write(*,*) 'xxx number of grid size IMAX must >= IHALO! ', imax, ihalo
210  call prc_mpistop
211  endif
212  if ( jmax < jhalo ) then
213  write(*,*) 'xxx number of grid size JMAX must >= JHALO! ', jmax, jhalo
214  call prc_mpistop
215  endif
216 
217  ka = kmax + khalo * 2
218  ia = imax + ihalo * 2
219  ja = jmax + jhalo * 2
220 
221  ks = 1 + khalo
222  ke = kmax + khalo
223  is = 1 + ihalo
224  ie = imax + ihalo
225  js = 1 + jhalo
226  je = jmax + jhalo
227 
228  if( iblock == -1 ) iblock = imax
229  if( jblock == -1 ) jblock = jmax
230 
231  kijmax = kmax * imax * jmax
232 #endif
233 
234  !-- Block size must be divisible
235  if ( mod(imax,iblock) > 0 ) then
236  write(*,*) 'xxx number of grid size IMAX must be divisible by IBLOCK! ', imax, iblock
237  call prc_mpistop
238  elseif( mod(jmax,jblock) > 0 ) then
239  write(*,*) 'xxx number of grid size JMAX must be divisible by JBLOCK! ', jmax, jblock
240  call prc_mpistop
241  endif
242 
243  ! array size (global domain)
244  iag = imaxg + ihalo * 2
245  jag = jmaxg + jhalo * 2
246 
247  ! horizontal index (global domain)
248  is_ing = ihalo + 1 + prc_2drank(prc_myrank,1) * imax
250  js_ing = jhalo + 1 + prc_2drank(prc_myrank,2) * jmax
252 
253  if ( prc_2drank(prc_myrank,1) == 0 ) then
254  isga = 1
255  else
256  isga = is_ing
257  end if
258  if ( prc_2drank(prc_myrank,1) == prc_num_x - 1 ) then
259  iega = iag
260  else
261  iega = ie_ing
262  end if
263  if ( prc_2drank(prc_myrank,2) == 0 ) then
264  jsga = 1
265  else
266  jsga = js_ing
267  end if
268  if ( prc_2drank(prc_myrank,2) == prc_num_y - 1 ) then
269  jega = jag
270  else
271  jega = je_ing
272  end if
273 
274  if ( prc_periodic_x ) then
275  iagb = imaxg
276  isgb = is_ing - ihalo
277  iegb = ie_ing - ihalo
278  else
279  iagb = iag
280  if ( prc_has_w ) then
281  isgb = is_ing
282  else ! western boundary
283  isgb = is_ing - ihalo ! ISGB = 1
284  end if
285  if ( prc_has_e ) then
286  iegb = ie_ing
287  else ! eastern boundary
288  iegb = ie_ing + ihalo
289  end if
290  end if
291  if ( prc_periodic_y ) then
292  jagb = jmaxg
293  jsgb = js_ing - jhalo
294  jegb = je_ing - jhalo
295  else
296  jagb = jag
297  if ( prc_has_s ) then
298  jsgb = js_ing
299  else ! southern boundary
300  jsgb = js_ing - jhalo ! JSGY = 1
301  end if
302  if ( prc_has_n ) then
303  jegb = je_ing
304  else ! northern boundary
305  jegb = je_ing + jhalo
306  end if
307  end if
308 
309  ! index considering boundary region
310  imaxb = imax
311  jmaxb = jmax
312  isb = is
313  ieb = ie
314  jsb = js
315  jeb = je
316  ieh = ie
317  jeh = je
318 
319  if ( .NOT. prc_has_w ) then
320  imaxb = imaxb + ihalo
321  isb = 1
322  endif
323  if ( .NOT. prc_has_e ) then
324  imaxb = imaxb + ihalo
325  ieb = ia
326  ieh = ie - 1
327  endif
328  if ( .NOT. prc_has_s ) then
329  jmaxb = jmaxb + jhalo
330  jsb = 1
331  endif
332  if ( .NOT. prc_has_n ) then
333  jmaxb = jmaxb + jhalo
334  jeb = ja
335  jeh = je - 1
336  endif
337 
338  if( io_l ) write(io_fid_log,*)
339  if( io_l ) write(io_fid_log,*) '*** Atmosphere grid index information ***'
340 
341  ! global
342  if( io_l ) write(io_fid_log,'(1x,3(A,I6))') '*** No. of Computational Grid (global) :', &
343  kmax,' x ',imaxg,' x ',jmaxg
344  if( io_l ) write(io_fid_log,'(1x,2(A,I6))') '*** Global index of local grid (X) :', &
345  is_ing," - ",ie_ing
346  if( io_l ) write(io_fid_log,'(1x,2(A,I6))') '*** Global index of local grid (Y) :', &
347  js_ing," - ",je_ing
348 
349  ! local
350  if( io_l ) write(io_fid_log,*)
351  if( io_l ) write(io_fid_log,'(1x,3(A,I6))') '*** No. of Computational Grid (local) :', &
352  kmax,' x ',imax,' x ',jmax
353  if( io_l ) write(io_fid_log,'(1x,3(A,I6))') '*** No. of Grid (including HALO, local) :', &
354  ka," x ",ia," x ",ja
355  if( io_l ) write(io_fid_log,'(1x,2(A,I6))') '*** Local index of inner grid (X) :', &
356  isb," - ",ieb
357  if( io_l ) write(io_fid_log,'(1x,2(A,I6))') '*** Local index of inner grid (Y) :', &
358  jsb," - ",jeb
359 
360  return
integer, public imax
of computational cells: x, local
integer, public iagb
of computational grids
integer, public prc_num_x
x length of 2D processor topology
integer, public is
start point of inner domain: x, local
integer, public iegb
end point of the inner domain: x, global
integer, public je
end point of inner domain: y, local
logical, public prc_has_n
subroutine, public prc_mpistop
Abort MPI.
integer, public jeb
logical, public prc_periodic_y
periodic condition or not (Y)?
integer, public iblock
block size for cache blocking: x
integer, public iega
end point of the full domain: cx, global
integer, public jsgb
start point of the inner domain: y, global
logical, public prc_has_e
integer, public imaxb
logical, public prc_periodic_x
periodic condition or not (X)?
integer, public jmaxb
logical, public prc_has_s
integer, public ieb
integer, public prc_num_y
y length of 2D processor topology
integer, public jsga
start point of the full domain: cy, global
integer, public isgb
start point of the inner domain: x, global
integer, public jag
of computational grids
integer, public jega
end point of the full domain: cy, global
integer, public jblock
block size for cache blocking: y
integer, public jhalo
of halo cells: y
integer, public js
start point of inner domain: y, local
integer, public iag
of computational grids
module PROCESS
integer, public jagb
of computational grids
integer, public ie_ing
end point of the inner domain: cx, global
integer, public is_ing
start point of the inner domain: cx, global
integer, parameter, public khalo
of halo cells: z
integer, public prc_myrank
process num in local communicator
integer, public jeh
end point of inner domain: y, local (half level)
integer, public ieh
end point of inner domain: x, local (half level)
module RM PROCESS
integer, public isga
start point of the full domain: cx, global
integer, public ie
end point of inner domain: x, local
integer, public imaxg
of computational cells: x, global
integer, public jegb
end point of the inner domain: y, global
integer, dimension(:,:), allocatable, public prc_2drank
node index in 2D topology
integer, public js_ing
start point of the inner domain: cy, global
integer, public isb
integer, public je_ing
end point of the inner domain: cy, global
integer, public io_fid_conf
Config file ID.
Definition: scale_stdio.F90:55
integer, public jsb
integer, public jmaxg
of computational cells: y, global
logical, public prc_has_w
integer, public jmax
of computational cells: y, local
integer, public ihalo
of halo cells: x
Here is the call graph for this function:
Here is the caller graph for this function:

Variable Documentation

◆ zdir

integer, parameter, public scale_grid_index::zdir = 1

Definition at line 35 of file scale_grid_index.F90.

Referenced by scale_atmos_dyn::atmos_dyn(), scale_atmos_dyn_common::atmos_dyn_fct(), scale_atmos_dyn_common::atmos_dyn_filter_setup(), scale_atmos_dyn_common::atmos_dyn_filter_tend(), scale_atmos_dyn_common::atmos_dyn_numfilter_coef(), scale_atmos_dyn_common::atmos_dyn_numfilter_coef_q(), scale_atmos_dyn_tstep_large_fvm_heve::atmos_dyn_tstep_large_fvm_heve(), scale_atmos_dyn_tstep_large_fvm_heve::atmos_dyn_tstep_large_fvm_heve_setup(), scale_atmos_dyn_tstep_short_fvm_heve::atmos_dyn_tstep_short_fvm_heve(), scale_atmos_dyn_tstep_short_fvm_hevi::atmos_dyn_tstep_short_fvm_hevi(), scale_atmos_dyn_tstep_short_fvm_hivi::atmos_dyn_tstep_short_fvm_hivi(), scale_atmos_dyn_tstep_tracer_fvm_heve::atmos_dyn_tstep_tracer_fvm_heve(), scale_atmos_phy_tb_common::atmos_phy_tb_calc_flux_phi(), scale_atmos_phy_tb_common::atmos_phy_tb_calc_tend_momx(), scale_atmos_phy_tb_common::atmos_phy_tb_calc_tend_momy(), scale_atmos_phy_tb_common::atmos_phy_tb_calc_tend_momz(), scale_atmos_phy_tb_common::atmos_phy_tb_calc_tend_phi(), scale_atmos_phy_tb_d1980::atmos_phy_tb_d1980(), scale_atmos_phy_tb_dns::atmos_phy_tb_dns(), mod_atmos_phy_tb_driver::atmos_phy_tb_driver(), scale_atmos_phy_tb_hybrid::atmos_phy_tb_hybrid(), scale_atmos_phy_tb_mynn::atmos_phy_tb_mynn(), scale_atmos_phy_tb_smg::atmos_phy_tb_smg(), scale_atmos_dyn_common::calc_diff3(), scale_atmos_dyn_common::calc_numdiff(), and scale_atmos_dyn_tstep_large_fvm_heve::check_mass().

35  integer, public, parameter :: ZDIR = 1

◆ xdir

integer, parameter, public scale_grid_index::xdir = 2

Definition at line 36 of file scale_grid_index.F90.

Referenced by scale_atmos_dyn::atmos_dyn(), scale_atmos_dyn_common::atmos_dyn_fct(), scale_atmos_dyn_common::atmos_dyn_filter_setup(), scale_atmos_dyn_common::atmos_dyn_filter_tend(), scale_atmos_dyn_common::atmos_dyn_numfilter_coef(), scale_atmos_dyn_common::atmos_dyn_numfilter_coef_q(), scale_atmos_dyn_tstep_large_fvm_heve::atmos_dyn_tstep_large_fvm_heve(), scale_atmos_dyn_tstep_large_fvm_heve::atmos_dyn_tstep_large_fvm_heve_setup(), scale_atmos_dyn_tstep_short_fvm_heve::atmos_dyn_tstep_short_fvm_heve(), scale_atmos_dyn_tstep_short_fvm_hevi::atmos_dyn_tstep_short_fvm_hevi(), scale_atmos_dyn_tstep_short_fvm_hivi::atmos_dyn_tstep_short_fvm_hivi(), scale_atmos_dyn_tstep_tracer_fvm_heve::atmos_dyn_tstep_tracer_fvm_heve(), scale_atmos_phy_tb_common::atmos_phy_tb_calc_flux_phi(), scale_atmos_phy_tb_common::atmos_phy_tb_calc_tend_momx(), scale_atmos_phy_tb_common::atmos_phy_tb_calc_tend_momy(), scale_atmos_phy_tb_common::atmos_phy_tb_calc_tend_momz(), scale_atmos_phy_tb_common::atmos_phy_tb_calc_tend_phi(), scale_atmos_phy_tb_d1980::atmos_phy_tb_d1980(), scale_atmos_phy_tb_dns::atmos_phy_tb_dns(), mod_atmos_phy_tb_driver::atmos_phy_tb_driver(), scale_atmos_phy_tb_hybrid::atmos_phy_tb_hybrid(), scale_atmos_phy_tb_mynn::atmos_phy_tb_mynn(), scale_atmos_phy_tb_smg::atmos_phy_tb_smg(), scale_atmos_dyn_common::calc_diff3(), scale_atmos_dyn_common::calc_numdiff(), and scale_atmos_dyn_tstep_large_fvm_heve::check_mass().

36  integer, public, parameter :: XDIR = 2

◆ ydir

integer, parameter, public scale_grid_index::ydir = 3

Definition at line 37 of file scale_grid_index.F90.

Referenced by scale_atmos_dyn::atmos_dyn(), scale_atmos_dyn_common::atmos_dyn_fct(), scale_atmos_dyn_common::atmos_dyn_filter_setup(), scale_atmos_dyn_common::atmos_dyn_filter_tend(), scale_atmos_dyn_common::atmos_dyn_numfilter_coef(), scale_atmos_dyn_common::atmos_dyn_numfilter_coef_q(), scale_atmos_dyn_tstep_large_fvm_heve::atmos_dyn_tstep_large_fvm_heve(), scale_atmos_dyn_tstep_large_fvm_heve::atmos_dyn_tstep_large_fvm_heve_setup(), scale_atmos_dyn_tstep_short_fvm_heve::atmos_dyn_tstep_short_fvm_heve(), scale_atmos_dyn_tstep_short_fvm_hevi::atmos_dyn_tstep_short_fvm_hevi(), scale_atmos_dyn_tstep_short_fvm_hivi::atmos_dyn_tstep_short_fvm_hivi(), scale_atmos_dyn_tstep_tracer_fvm_heve::atmos_dyn_tstep_tracer_fvm_heve(), scale_atmos_phy_tb_common::atmos_phy_tb_calc_flux_phi(), scale_atmos_phy_tb_common::atmos_phy_tb_calc_tend_momx(), scale_atmos_phy_tb_common::atmos_phy_tb_calc_tend_momy(), scale_atmos_phy_tb_common::atmos_phy_tb_calc_tend_momz(), scale_atmos_phy_tb_common::atmos_phy_tb_calc_tend_phi(), scale_atmos_phy_tb_d1980::atmos_phy_tb_d1980(), scale_atmos_phy_tb_dns::atmos_phy_tb_dns(), mod_atmos_phy_tb_driver::atmos_phy_tb_driver(), scale_atmos_phy_tb_hybrid::atmos_phy_tb_hybrid(), scale_atmos_phy_tb_mynn::atmos_phy_tb_mynn(), scale_atmos_phy_tb_smg::atmos_phy_tb_smg(), scale_atmos_dyn_common::calc_diff3(), scale_atmos_dyn_common::calc_numdiff(), and scale_atmos_dyn_tstep_large_fvm_heve::check_mass().

37  integer, public, parameter :: YDIR = 3

◆ kmax

integer, public scale_grid_index::kmax = -1

◆ imax

integer, public scale_grid_index::imax = -1

◆ jmax

integer, public scale_grid_index::jmax = -1

◆ iblock

integer, public scale_grid_index::iblock = -1

◆ jblock

integer, public scale_grid_index::jblock = -1

◆ khalo

integer, parameter, public scale_grid_index::khalo = 2

◆ ihalo

integer, public scale_grid_index::ihalo = 2

◆ jhalo

integer, public scale_grid_index::jhalo = 2

◆ ka

integer, public scale_grid_index::ka

of whole cells: z, local, with HALO

Definition at line 54 of file scale_grid_index.F90.

Referenced by scale_atmos_adiabat::atmos_adiabat_cape(), scale_atmos_boundary::atmos_boundary_resume(), scale_atmos_boundary::atmos_boundary_resume_online(), scale_atmos_boundary::atmos_boundary_setup(), scale_atmos_boundary::atmos_boundary_update(), scale_atmos_diagnostic::atmos_diagnostic_get(), scale_atmos_dyn_common::atmos_dyn_filter_setup(), scale_atmos_dyn_common::atmos_dyn_numfilter_coef(), scale_atmos_dyn_common::atmos_dyn_numfilter_coef_q(), scale_atmos_dyn::atmos_dyn_setup(), scale_atmos_dyn_tinteg_short_rk3::atmos_dyn_tinteg_short_rk3(), scale_atmos_dyn_tinteg_short_rk3::atmos_dyn_tinteg_short_rk3_setup(), scale_atmos_dyn_tinteg_short_rk4::atmos_dyn_tinteg_short_rk4(), scale_atmos_dyn_tinteg_short_rk4::atmos_dyn_tinteg_short_rk4_setup(), scale_atmos_dyn_tinteg_tracer_rk3::atmos_dyn_tinteg_tracer_rk3_setup(), scale_atmos_dyn_tstep_large_fvm_heve::atmos_dyn_tstep_large_fvm_heve(), scale_atmos_dyn_tstep_large_fvm_heve::atmos_dyn_tstep_large_fvm_heve_setup(), scale_atmos_dyn_tstep_short_fvm_heve::atmos_dyn_tstep_short_fvm_heve(), scale_atmos_dyn_tstep_short_fvm_hevi::atmos_dyn_tstep_short_fvm_hevi(), scale_atmos_dyn_tstep_short_fvm_hivi::atmos_dyn_tstep_short_fvm_hivi(), mod_atmos_dyn_vars::atmos_dyn_vars_fillhalo(), mod_atmos_dyn_vars::atmos_dyn_vars_restart_read(), mod_atmos_dyn_vars::atmos_dyn_vars_setup(), scale_atmos_dyn_common::atmos_dyn_wdamp_setup(), scale_atmos_phy_ae_kajino13::atmos_phy_ae_kajino13_mkinit(), mod_atmos_phy_ae_vars::atmos_phy_ae_vars_fillhalo(), mod_atmos_phy_ae_vars::atmos_phy_ae_vars_restart_read(), mod_atmos_phy_ae_vars::atmos_phy_ae_vars_setup(), mod_atmos_phy_ch_vars::atmos_phy_ch_vars_fillhalo(), mod_atmos_phy_ch_vars::atmos_phy_ch_vars_restart_read(), mod_atmos_phy_ch_vars::atmos_phy_ch_vars_setup(), scale_atmos_phy_cp_kf::atmos_phy_cp_kf_setup(), mod_atmos_phy_cp_vars::atmos_phy_cp_vars_fillhalo(), mod_atmos_phy_cp_vars::atmos_phy_cp_vars_restart_read(), mod_atmos_phy_cp_vars::atmos_phy_cp_vars_setup(), mod_atmos_phy_mp_driver::atmos_phy_mp_driver(), scale_atmos_phy_mp_kessler::atmos_phy_mp_kessler_setup(), scale_atmos_phy_mp_sn14::atmos_phy_mp_sn14_setup(), scale_atmos_phy_mp_suzuki10::atmos_phy_mp_suzuki10_setup(), scale_atmos_phy_mp_tomita08::atmos_phy_mp_tomita08(), scale_atmos_phy_mp_tomita08::atmos_phy_mp_tomita08_setup(), mod_atmos_phy_mp_vars::atmos_phy_mp_vars_setup(), mod_atmos_phy_rd_driver::atmos_phy_rd_driver(), mod_atmos_phy_rd_vars::atmos_phy_rd_vars_setup(), scale_atmos_phy_tb_d1980::atmos_phy_tb_d1980_setup(), scale_atmos_phy_tb_common::atmos_phy_tb_diffusion_solver(), scale_atmos_phy_tb_mynn::atmos_phy_tb_mynn(), scale_atmos_phy_tb_smg::atmos_phy_tb_smg_setup(), mod_atmos_phy_tb_vars::atmos_phy_tb_vars_setup(), scale_atmos_refstate::atmos_refstate_setup(), scale_atmos_refstate::atmos_refstate_write(), mod_atmos_vars::atmos_vars_fillhalo(), mod_atmos_vars::atmos_vars_history(), mod_atmos_vars::atmos_vars_restart_read(), mod_atmos_vars::atmos_vars_setup(), scale_comm::comm_horizontal_mean(), scale_comm::comm_setup(), scale_fileio::construct_derived_datatype(), scale_fileio::fileio_def_axes(), scale_fileio::fileio_def_var(), scale_fileio::fileio_setup(), scale_grid::grid_allocate(), scale_grid::grid_generate(), grid_index_setup(), scale_gridtrans::gtrans_setup(), scale_history::hist_setup(), scale_interpolation::interp_setup(), scale_interpolation::interp_vertical_xi2z(), scale_interpolation::interp_vertical_z2xi(), mod_mkinit::interporation_fact(), scale_land_grid::land_grid_setup(), mod_mkinit::mkinit_setup(), mod_realinput::parentatomsetup(), scale_atmos_phy_mp_suzuki10::r_collcoag(), mod_mkinit::read_sounding(), scale_grid_real::real_setup(), scale_grid_real::real_update_z(), mod_realinput::realinput_atmos(), scale_rm_statistics::stat_detail(), and mod_mkinit::tke_setup().

54  integer, public :: KA

◆ ia

integer, public scale_grid_index::ia

of whole cells: x, local, with HALO

Definition at line 55 of file scale_grid_index.F90.

Referenced by scale_atmos_boundary::atmos_boundary_resume(), scale_atmos_boundary::atmos_boundary_resume_online(), scale_atmos_boundary::atmos_boundary_setup(), scale_atmos_boundary::atmos_boundary_update(), scale_atmos_diagnostic::atmos_diagnostic_get(), scale_atmos_dyn_common::atmos_dyn_copy_boundary(), scale_atmos_dyn_common::atmos_dyn_copy_boundary_tracer(), scale_atmos_dyn_common::atmos_dyn_filter_setup(), scale_atmos_dyn::atmos_dyn_setup(), scale_atmos_dyn_tinteg_short_rk3::atmos_dyn_tinteg_short_rk3_setup(), scale_atmos_dyn_tinteg_short_rk4::atmos_dyn_tinteg_short_rk4_setup(), scale_atmos_dyn_tinteg_tracer_rk3::atmos_dyn_tinteg_tracer_rk3_setup(), scale_atmos_dyn_tstep_large_fvm_heve::atmos_dyn_tstep_large_fvm_heve(), scale_atmos_dyn_tstep_large_fvm_heve::atmos_dyn_tstep_large_fvm_heve_setup(), mod_atmos_dyn_vars::atmos_dyn_vars_restart_read(), mod_atmos_dyn_vars::atmos_dyn_vars_setup(), scale_atmos_phy_ae_kajino13::atmos_phy_ae_kajino13_mkinit(), mod_atmos_phy_ae_vars::atmos_phy_ae_vars_restart_read(), mod_atmos_phy_ae_vars::atmos_phy_ae_vars_setup(), mod_atmos_phy_ch_vars::atmos_phy_ch_vars_restart_read(), mod_atmos_phy_ch_vars::atmos_phy_ch_vars_setup(), scale_atmos_phy_cp_kf::atmos_phy_cp_kf_setup(), mod_atmos_phy_cp_vars::atmos_phy_cp_vars_restart_read(), mod_atmos_phy_cp_vars::atmos_phy_cp_vars_setup(), mod_atmos_phy_mp_driver::atmos_phy_mp_driver(), scale_atmos_phy_mp_sn14::atmos_phy_mp_sn14(), scale_atmos_phy_mp_sn14::atmos_phy_mp_sn14_setup(), scale_atmos_phy_mp_suzuki10::atmos_phy_mp_suzuki10_setup(), scale_atmos_phy_mp_tomita08::atmos_phy_mp_tomita08_setup(), mod_atmos_phy_mp_vars::atmos_phy_mp_vars_setup(), mod_atmos_phy_rd_driver::atmos_phy_rd_driver(), mod_atmos_phy_rd_vars::atmos_phy_rd_vars_setup(), mod_atmos_phy_sf_vars::atmos_phy_sf_vars_setup(), scale_atmos_phy_tb_d1980::atmos_phy_tb_d1980_setup(), mod_atmos_phy_tb_driver::atmos_phy_tb_driver(), scale_atmos_phy_tb_hybrid::atmos_phy_tb_hybrid(), scale_atmos_phy_tb_hybrid::atmos_phy_tb_hybrid_setup(), scale_atmos_phy_tb_mynn::atmos_phy_tb_mynn(), scale_atmos_phy_tb_smg::atmos_phy_tb_smg(), scale_atmos_phy_tb_smg::atmos_phy_tb_smg_setup(), mod_atmos_phy_tb_vars::atmos_phy_tb_vars_setup(), scale_atmos_refstate::atmos_refstate_setup(), scale_atmos_refstate::atmos_refstate_update(), scale_atmos_refstate::atmos_refstate_write(), mod_atmos_driver::atmos_surface_set(), mod_atmos_vars::atmos_vars_history(), mod_atmos_vars::atmos_vars_restart_read(), mod_atmos_vars::atmos_vars_setup(), mod_cnvlanduse::cnvlanduse(), mod_cnvtopo::cnvtopo(), scale_comm::comm_setup(), scale_fileio::construct_derived_datatype(), mod_copytopo::copytopo(), mod_cpl_vars::cpl_vars_setup(), scale_fileio::fileio_def_axes(), scale_fileio::fileio_def_var(), scale_fileio::fileio_read_var_1d(), scale_fileio::fileio_read_var_2d(), scale_fileio::fileio_read_var_3d(), scale_fileio::fileio_setup(), scale_fileio::fileio_write_var_2d(), scale_fileio::fileio_write_var_3d(), scale_fileio::fileio_write_var_3d_t(), scale_fileio::fileio_write_var_4d(), scale_grid::grid_allocate(), scale_grid::grid_generate(), grid_index_setup(), scale_grid::grid_setup(), scale_gridtrans::gtrans_setup(), scale_history::hist_setup(), scale_interpolation::interp_setup(), scale_interpolation::interp_setup_pres(), mod_mkinit::interporation_fact(), scale_interpolation_nest::intrpnest_interp_fact_llz(), scale_land_grid::land_grid_setup(), scale_land_phy_slab::land_phy_slab(), mod_land_vars::land_vars_setup(), scale_landuse::landuse_setup(), mod_mkinit::mkinit(), mod_mkinit::mkinit_setup(), mod_mktopo::mktopo(), scale_grid_nest::nest_domain_shape(), scale_grid_nest::nest_setup(), scale_ocean_phy_file::ocean_phy_file_setup(), mod_ocean_vars::ocean_vars_setup(), mod_realinput::parentatomsetup(), scale_atmos_phy_mp_suzuki10::r_collcoag(), mod_mkinit::read_sounding(), scale_grid_real::real_setup(), scale_grid_real::real_update_z(), mod_realinput::realinput_atmos(), mod_realinput::realinput_surface(), mod_mkinit::rect_setup(), mod_realinput::replace_misval_const(), scale_rm_statistics::stat_detail(), mod_mkinit::tke_setup(), scale_topography::topo_setup(), scale_urban_phy_slc::urban_phy_slc_setup(), and mod_urban_vars::urban_vars_setup().

55  integer, public :: IA

◆ ja

integer, public scale_grid_index::ja

of whole cells: y, local, with HALO

Definition at line 56 of file scale_grid_index.F90.

Referenced by scale_atmos_boundary::atmos_boundary_resume(), scale_atmos_boundary::atmos_boundary_resume_online(), scale_atmos_boundary::atmos_boundary_setup(), scale_atmos_boundary::atmos_boundary_update(), scale_atmos_diagnostic::atmos_diagnostic_get(), scale_atmos_dyn_common::atmos_dyn_copy_boundary(), scale_atmos_dyn_common::atmos_dyn_copy_boundary_tracer(), scale_atmos_dyn_common::atmos_dyn_filter_setup(), scale_atmos_dyn::atmos_dyn_setup(), scale_atmos_dyn_tinteg_short_rk3::atmos_dyn_tinteg_short_rk3_setup(), scale_atmos_dyn_tinteg_short_rk4::atmos_dyn_tinteg_short_rk4_setup(), scale_atmos_dyn_tinteg_tracer_rk3::atmos_dyn_tinteg_tracer_rk3_setup(), scale_atmos_dyn_tstep_large_fvm_heve::atmos_dyn_tstep_large_fvm_heve(), scale_atmos_dyn_tstep_large_fvm_heve::atmos_dyn_tstep_large_fvm_heve_setup(), mod_atmos_dyn_vars::atmos_dyn_vars_restart_read(), mod_atmos_dyn_vars::atmos_dyn_vars_setup(), scale_atmos_phy_ae_kajino13::atmos_phy_ae_kajino13_mkinit(), mod_atmos_phy_ae_vars::atmos_phy_ae_vars_restart_read(), mod_atmos_phy_ae_vars::atmos_phy_ae_vars_setup(), mod_atmos_phy_ch_vars::atmos_phy_ch_vars_restart_read(), mod_atmos_phy_ch_vars::atmos_phy_ch_vars_setup(), scale_atmos_phy_cp_kf::atmos_phy_cp_kf_setup(), mod_atmos_phy_cp_vars::atmos_phy_cp_vars_restart_read(), mod_atmos_phy_cp_vars::atmos_phy_cp_vars_setup(), mod_atmos_phy_mp_driver::atmos_phy_mp_driver(), scale_atmos_phy_mp_sn14::atmos_phy_mp_sn14_setup(), scale_atmos_phy_mp_suzuki10::atmos_phy_mp_suzuki10_setup(), scale_atmos_phy_mp_tomita08::atmos_phy_mp_tomita08_setup(), mod_atmos_phy_mp_vars::atmos_phy_mp_vars_setup(), mod_atmos_phy_rd_driver::atmos_phy_rd_driver(), mod_atmos_phy_rd_vars::atmos_phy_rd_vars_setup(), mod_atmos_phy_sf_vars::atmos_phy_sf_vars_setup(), scale_atmos_phy_tb_d1980::atmos_phy_tb_d1980_setup(), scale_atmos_phy_tb_hybrid::atmos_phy_tb_hybrid(), scale_atmos_phy_tb_hybrid::atmos_phy_tb_hybrid_setup(), scale_atmos_phy_tb_mynn::atmos_phy_tb_mynn(), scale_atmos_phy_tb_smg::atmos_phy_tb_smg(), scale_atmos_phy_tb_smg::atmos_phy_tb_smg_setup(), mod_atmos_phy_tb_vars::atmos_phy_tb_vars_setup(), scale_atmos_refstate::atmos_refstate_setup(), scale_atmos_refstate::atmos_refstate_update(), scale_atmos_refstate::atmos_refstate_write(), mod_atmos_driver::atmos_surface_set(), mod_atmos_vars::atmos_vars_history(), mod_atmos_vars::atmos_vars_restart_read(), mod_atmos_vars::atmos_vars_setup(), mod_cnvlanduse::cnvlanduse(), mod_cnvtopo::cnvtopo(), scale_comm::comm_setup(), scale_fileio::construct_derived_datatype(), mod_copytopo::copytopo(), mod_cpl_vars::cpl_vars_setup(), scale_fileio::fileio_def_axes(), scale_fileio::fileio_def_var(), scale_fileio::fileio_read_var_1d(), scale_fileio::fileio_read_var_2d(), scale_fileio::fileio_read_var_3d(), scale_fileio::fileio_setup(), scale_fileio::fileio_write_var_2d(), scale_fileio::fileio_write_var_3d(), scale_fileio::fileio_write_var_3d_t(), scale_fileio::fileio_write_var_4d(), scale_grid::grid_allocate(), scale_grid::grid_generate(), grid_index_setup(), scale_grid::grid_setup(), scale_gridtrans::gtrans_setup(), scale_history::hist_setup(), scale_interpolation::interp_setup(), scale_interpolation::interp_setup_pres(), mod_mkinit::interporation_fact(), scale_interpolation_nest::intrpnest_interp_fact_llz(), scale_land_grid::land_grid_setup(), scale_land_phy_slab::land_phy_slab(), mod_land_vars::land_vars_setup(), scale_landuse::landuse_setup(), mod_mkinit::mkinit(), mod_mkinit::mkinit_setup(), mod_mktopo::mktopo(), scale_grid_nest::nest_domain_shape(), scale_grid_nest::nest_setup(), scale_ocean_phy_file::ocean_phy_file_setup(), mod_ocean_vars::ocean_vars_setup(), mod_realinput::parentatomsetup(), scale_atmos_phy_mp_suzuki10::r_collcoag(), mod_mkinit::read_sounding(), scale_grid_real::real_setup(), scale_grid_real::real_update_z(), mod_realinput::realinput_atmos(), mod_realinput::realinput_surface(), mod_mkinit::rect_setup(), mod_realinput::replace_misval_const(), scale_rm_statistics::stat_detail(), mod_mkinit::tke_setup(), scale_topography::topo_setup(), scale_urban_phy_slc::urban_phy_slc_setup(), and mod_urban_vars::urban_vars_setup().

56  integer, public :: JA

◆ ks

integer, public scale_grid_index::ks

start point of inner domain: z, local

Definition at line 58 of file scale_grid_index.F90.

Referenced by scale_atmos_adiabat::atmos_adiabat_cape(), scale_atmos_bottom::atmos_bottom_estimate(), scale_atmos_boundary::atmos_boundary_resume(), scale_atmos_boundary::atmos_boundary_update(), scale_atmos_diagnostic::atmos_diagnostic_get(), scale_atmos_dyn::atmos_dyn(), scale_atmos_dyn_common::atmos_dyn_copy_boundary(), scale_atmos_dyn_common::atmos_dyn_copy_boundary_tracer(), scale_atmos_dyn_common::atmos_dyn_divergence(), mod_atmos_dyn_driver::atmos_dyn_driver_setup(), scale_atmos_dyn_common::atmos_dyn_fct(), scale_atmos_dyn_common::atmos_dyn_filter_setup(), scale_atmos_dyn_common::atmos_dyn_filter_tend(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_flux_valuew_z_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_flux_valuew_z_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_flux_valuew_z_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_flux_valuew_z_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_flux_valuew_z_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_flux_valuew_z_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_flux_valuew_z_ud5(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_fluxj13_uyz_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_fluxj13_uyz_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_fluxj13_uyz_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_fluxj13_uyz_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_fluxj13_uyz_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_fluxj13_uyz_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_fluxj13_uyz_ud5(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_fluxj13_xvz_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_fluxj13_xvz_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_fluxj13_xvz_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_fluxj13_xvz_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_fluxj13_xvz_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_fluxj13_xvz_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_fluxj13_xvz_ud5(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_fluxj13_xyw_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_fluxj13_xyw_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_fluxj13_xyw_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_fluxj13_xyw_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_fluxj13_xyw_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_fluxj13_xyw_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_fluxj13_xyw_ud5(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_fluxj23_uyz_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_fluxj23_uyz_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_fluxj23_uyz_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_fluxj23_uyz_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_fluxj23_uyz_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_fluxj23_uyz_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_fluxj23_uyz_ud5(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_fluxj23_xvz_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_fluxj23_xvz_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_fluxj23_xvz_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_fluxj23_xvz_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_fluxj23_xvz_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_fluxj23_xvz_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_fluxj23_xvz_ud5(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_fluxj23_xyw_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_fluxj23_xyw_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_fluxj23_xyw_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_fluxj23_xyw_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_fluxj23_xyw_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_fluxj23_xyw_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_fluxj23_xyw_ud5(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_fluxx_uyz_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_fluxx_uyz_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_fluxx_uyz_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_fluxx_uyz_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_fluxx_uyz_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_fluxx_uyz_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_fluxx_uyz_ud5(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_fluxx_xvz_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_fluxx_xvz_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_fluxx_xvz_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_fluxx_xvz_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_fluxx_xvz_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_fluxx_xvz_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_fluxx_xvz_ud5(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_fluxx_xyw_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_fluxx_xyw_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_fluxx_xyw_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_fluxx_xyw_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_fluxx_xyw_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_fluxx_xyw_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_fluxx_xyw_ud5(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_fluxx_xyz_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_fluxx_xyz_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_fluxx_xyz_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_fluxx_xyz_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_fluxx_xyz_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_fluxx_xyz_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_fluxx_xyz_ud5(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_fluxy_uyz_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_fluxy_uyz_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_fluxy_uyz_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_fluxy_uyz_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_fluxy_uyz_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_fluxy_uyz_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_fluxy_uyz_ud5(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_fluxy_xvz_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_fluxy_xvz_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_fluxy_xvz_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_fluxy_xvz_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_fluxy_xvz_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_fluxy_xvz_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_fluxy_xvz_ud5(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_fluxy_xyw_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_fluxy_xyw_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_fluxy_xyw_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_fluxy_xyw_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_fluxy_xyw_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_fluxy_xyw_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_fluxy_xyw_ud5(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_fluxy_xyz_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_fluxy_xyz_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_fluxy_xyz_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_fluxy_xyz_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_fluxy_xyz_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_fluxy_xyz_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_fluxy_xyz_ud5(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_fluxz_uyz_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_fluxz_uyz_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_fluxz_uyz_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_fluxz_uyz_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_fluxz_uyz_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_fluxz_uyz_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_fluxz_uyz_ud5(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_fluxz_xvz_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_fluxz_xvz_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_fluxz_xvz_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_fluxz_xvz_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_fluxz_xvz_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_fluxz_xvz_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_fluxz_xvz_ud5(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_fluxz_xyw_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_fluxz_xyw_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_fluxz_xyw_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_fluxz_xyw_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_fluxz_xyw_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_fluxz_xyw_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_fluxz_xyw_ud5(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_fluxz_xyz_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_fluxz_xyz_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_fluxz_xyz_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_fluxz_xyz_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_fluxz_xyz_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_fluxz_xyz_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_fluxz_xyz_ud5(), scale_atmos_dyn_common::atmos_dyn_numfilter_coef(), scale_atmos_dyn_common::atmos_dyn_numfilter_coef_q(), scale_atmos_dyn_tinteg_short_rk3::atmos_dyn_tinteg_short_rk3(), scale_atmos_dyn_tinteg_short_rk4::atmos_dyn_tinteg_short_rk4(), scale_atmos_dyn_tinteg_tracer_rk3::atmos_dyn_tinteg_tracer_rk3(), scale_atmos_dyn_tstep_large_fvm_heve::atmos_dyn_tstep_large_fvm_heve(), scale_atmos_dyn_tstep_short_fvm_heve::atmos_dyn_tstep_short_fvm_heve(), scale_atmos_dyn_tstep_short_fvm_hevi::atmos_dyn_tstep_short_fvm_hevi(), scale_atmos_dyn_tstep_short_fvm_hivi::atmos_dyn_tstep_short_fvm_hivi(), scale_atmos_dyn_tstep_tracer_fvm_heve::atmos_dyn_tstep_tracer_fvm_heve(), mod_atmos_dyn_vars::atmos_dyn_vars_fillhalo(), mod_atmos_dyn_vars::atmos_dyn_vars_restart_read(), scale_atmos_dyn_common::atmos_dyn_wdamp_setup(), scale_atmos_hydrometeor::atmos_hydrometeor_entr_3d(), scale_atmos_hydrometeor::atmos_hydrometeor_lhf_1d(), scale_atmos_hydrometeor::atmos_hydrometeor_lhf_3d(), scale_atmos_hydrometeor::atmos_hydrometeor_lhs_1d(), scale_atmos_hydrometeor::atmos_hydrometeor_lhs_3d(), scale_atmos_hydrometeor::atmos_hydrometeor_lhv_1d(), scale_atmos_hydrometeor::atmos_hydrometeor_lhv_3d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_1d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_3d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_atmos_1d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_atmos_3d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_atmos_rev_3d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_bytemp_1d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_bytemp_3d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_bytemp_atmos_1d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_bytemp_atmos_3d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_real_3d(), mod_atmos_phy_ae_driver::atmos_phy_ae_driver(), scale_atmos_phy_ae_kajino13::atmos_phy_ae_kajino13(), scale_atmos_phy_ae_kajino13::atmos_phy_ae_kajino13_mkinit(), mod_atmos_phy_ae_vars::atmos_phy_ae_vars_fillhalo(), mod_atmos_phy_ae_vars::atmos_phy_ae_vars_restart_read(), mod_atmos_phy_ch_driver::atmos_phy_ch_driver(), mod_atmos_phy_ch_vars::atmos_phy_ch_vars_fillhalo(), mod_atmos_phy_ch_vars::atmos_phy_ch_vars_restart_read(), mod_atmos_phy_cp_driver::atmos_phy_cp_driver(), scale_atmos_phy_cp_kf::atmos_phy_cp_kf_setup(), mod_atmos_phy_cp_vars::atmos_phy_cp_vars_fillhalo(), mod_atmos_phy_cp_vars::atmos_phy_cp_vars_restart_read(), mod_atmos_phy_mp_driver::atmos_phy_mp_driver(), scale_atmos_phy_mp_kessler::atmos_phy_mp_kessler(), scale_atmos_phy_mp_kessler::atmos_phy_mp_kessler_cloudfraction(), scale_atmos_phy_mp_common::atmos_phy_mp_negative_fixer(), scale_atmos_phy_mp_common::atmos_phy_mp_precipitation(), scale_atmos_phy_mp_common::atmos_phy_mp_saturation_adjustment(), scale_atmos_phy_mp_sn14::atmos_phy_mp_sn14(), scale_atmos_phy_mp_sn14::atmos_phy_mp_sn14_cloudfraction(), scale_atmos_phy_mp_sn14::atmos_phy_mp_sn14_effectiveradius(), scale_atmos_phy_mp_suzuki10::atmos_phy_mp_suzuki10(), scale_atmos_phy_mp_suzuki10::atmos_phy_mp_suzuki10_cloudfraction(), scale_atmos_phy_mp_suzuki10::atmos_phy_mp_suzuki10_effectiveradius(), scale_atmos_phy_mp_suzuki10::atmos_phy_mp_suzuki10_mixingratio(), scale_atmos_phy_mp_tomita08::atmos_phy_mp_tomita08(), scale_atmos_phy_mp_tomita08::atmos_phy_mp_tomita08_cloudfraction(), scale_atmos_phy_mp_tomita08::atmos_phy_mp_tomita08_effectiveradius(), mod_atmos_phy_rd_driver::atmos_phy_rd_driver(), scale_atmos_phy_rd_common::atmos_phy_rd_heating(), scale_atmos_phy_rd_mstrnx::atmos_phy_rd_mstrnx(), scale_atmos_phy_rd_offline::atmos_phy_rd_offline(), scale_atmos_phy_rd_profile::atmos_phy_rd_profile_setup_zgrid(), mod_atmos_phy_sf_driver::atmos_phy_sf_driver(), scale_atmos_phy_tb_common::atmos_phy_tb_calc_flux_phi(), scale_atmos_phy_tb_common::atmos_phy_tb_calc_strain_tensor(), scale_atmos_phy_tb_common::atmos_phy_tb_calc_tend_momx(), scale_atmos_phy_tb_common::atmos_phy_tb_calc_tend_momy(), scale_atmos_phy_tb_common::atmos_phy_tb_calc_tend_momz(), scale_atmos_phy_tb_common::atmos_phy_tb_calc_tend_phi(), scale_atmos_phy_tb_d1980::atmos_phy_tb_d1980(), scale_atmos_phy_tb_d1980::atmos_phy_tb_d1980_setup(), scale_atmos_phy_tb_common::atmos_phy_tb_diffusion_solver(), scale_atmos_phy_tb_dns::atmos_phy_tb_dns(), mod_atmos_phy_tb_driver::atmos_phy_tb_driver(), mod_atmos_phy_tb_driver::atmos_phy_tb_driver_setup(), scale_atmos_phy_tb_hybrid::atmos_phy_tb_hybrid(), scale_atmos_phy_tb_mynn::atmos_phy_tb_mynn(), scale_atmos_phy_tb_mynn::atmos_phy_tb_mynn_setup(), scale_atmos_phy_tb_smg::atmos_phy_tb_smg(), scale_atmos_phy_tb_smg::atmos_phy_tb_smg_setup(), scale_atmos_refstate::atmos_refstate_calc3d(), scale_atmos_refstate::atmos_refstate_resume(), scale_atmos_refstate::atmos_refstate_update(), scale_atmos_refstate::atmos_refstate_write(), scale_atmos_saturation::atmos_saturation_alpha_0d(), scale_atmos_saturation::atmos_saturation_dqsi_dtem_dpre(), scale_atmos_saturation::atmos_saturation_dqsi_dtem_rho(), scale_atmos_saturation::atmos_saturation_dqsw_dtem_dpre(), scale_atmos_saturation::atmos_saturation_dqsw_dtem_rho(), mod_atmos_driver::atmos_surface_set(), scale_atmos_thermodyn::atmos_thermodyn_setup(), scale_atmos_thermodyn::atmos_thermodyn_tempre(), scale_atmos_thermodyn::atmos_thermodyn_tempre2(), mod_atmos_vars::atmos_vars_fillhalo(), mod_atmos_vars::atmos_vars_history(), mod_atmos_vars::atmos_vars_monitor(), mod_atmos_vars::atmos_vars_restart_check(), mod_atmos_vars::atmos_vars_restart_read(), mod_atmos_vars::atmos_vars_setup(), mod_atmos_vars::atmos_vars_total(), scale_atmos_phy_mp_sn14::aut_acc_slc_brk_kij(), scale_atmos_dyn_common::calc_diff3(), scale_atmos_dyn_tstep_large_fvm_heve::check_mass(), mod_cnvtopo::cnvtopo_setup(), scale_comm::comm_horizontal_max_2d(), scale_comm::comm_horizontal_min_2d(), scale_fileio::construct_derived_datatype(), scale_atmos_phy_cp_kf::cp_kf_main(), scale_atmos_phy_mp_sn14::debug_tem_kij(), scale_atmos_phy_mp_sn14::dep_vapor_melt_ice_kij(), scale_external_input_rm::extin_rm_get_dims_1d(), scale_external_input_rm::extin_rm_get_dims_2d(), scale_external_input_rm::extin_rm_get_dims_3d(), scale_fileio::fileio_check_coordinates_name(), scale_fileio::fileio_read_var_1d(), scale_fileio::fileio_read_var_2d(), scale_fileio::fileio_read_var_3d(), scale_fileio::fileio_read_var_4d(), scale_fileio::fileio_write_axes(), scale_fileio::fileio_write_var_1d(), scale_fileio::fileio_write_var_2d(), scale_fileio::fileio_write_var_3d(), scale_fileio::fileio_write_var_4d(), scale_atmos_phy_mp_sn14::freezing_water_kij(), scale_atmos_phy_tb_mynn::get_length(), scale_atmos_phy_tb_mynn::get_q2_level2(), scale_grid::grid_generate(), grid_index_setup(), scale_gridtrans::gtrans_rotcoef(), scale_history::hist_put_1d(), scale_history::hist_put_3d(), scale_history::hist_setup(), scale_atmos_phy_mp_sn14::ice_multiplication_kij(), scale_interpolation::interp_setup(), scale_interpolation::interp_update_pres(), scale_interpolation::interp_vertical_xi2z(), scale_interpolation::interp_vertical_z2xi(), mod_mkinit::interporation_fact(), scale_interpolation_nest::intrpnest_interp_fact_llz(), scale_atmos_phy_cp_kf::kf_wmean(), scale_atmos_dyn_tstep_short_fvm_hivi::make_matrix(), scale_atmos_phy_mp_sn14::mixed_phase_collection_kij(), mod_mkinit::mkinit(), scale_atmos_phy_mp_sn14::mp_negativefilter(), scale_grid_nest::nest_domain_shape(), scale_atmos_phy_mp_sn14::nucleation_kij(), mod_realinput::parentatomsetup(), mod_mkinit::read_sounding(), scale_grid_real::real_calc_areavol(), scale_grid_real::real_update_z(), mod_realinput::realinput_atmos(), mod_mkinit::rect_setup(), scale_atmos_refstate::smoothing(), scale_atmos_dyn_tstep_short_fvm_hivi::solve_bicgstab(), scale_atmos_dyn_tstep_short_fvm_hevi::solve_direct(), scale_rm_statistics::stat_detail(), scale_rm_statistics::stat_total_3d(), scale_atmos_phy_rd_mm5sw::swrad(), and scale_atmos_phy_mp_sn14::update_by_phase_change_kij().

58  integer, public :: KS

◆ ke

integer, public scale_grid_index::ke

end point of inner domain: z, local

Definition at line 59 of file scale_grid_index.F90.

Referenced by scale_atmos_adiabat::atmos_adiabat_cape(), scale_atmos_adiabat::atmos_adiabat_liftparcel(), scale_atmos_boundary::atmos_boundary_resume(), scale_atmos_boundary::atmos_boundary_update(), scale_atmos_diagnostic::atmos_diagnostic_get(), scale_atmos_dyn::atmos_dyn(), scale_atmos_dyn_common::atmos_dyn_copy_boundary(), scale_atmos_dyn_common::atmos_dyn_copy_boundary_tracer(), scale_atmos_dyn_common::atmos_dyn_divergence(), scale_atmos_dyn_common::atmos_dyn_fct(), scale_atmos_dyn_common::atmos_dyn_filter_setup(), scale_atmos_dyn_common::atmos_dyn_filter_tend(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_flux_valuew_z_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_flux_valuew_z_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_flux_valuew_z_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_flux_valuew_z_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_flux_valuew_z_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_flux_valuew_z_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_flux_valuew_z_ud5(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_fluxj13_uyz_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_fluxj13_uyz_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_fluxj13_uyz_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_fluxj13_uyz_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_fluxj13_uyz_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_fluxj13_uyz_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_fluxj13_uyz_ud5(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_fluxj13_xvz_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_fluxj13_xvz_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_fluxj13_xvz_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_fluxj13_xvz_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_fluxj13_xvz_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_fluxj13_xvz_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_fluxj13_xvz_ud5(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_fluxj13_xyw_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_fluxj13_xyw_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_fluxj13_xyw_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_fluxj13_xyw_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_fluxj13_xyw_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_fluxj13_xyw_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_fluxj13_xyw_ud5(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_fluxj23_uyz_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_fluxj23_uyz_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_fluxj23_uyz_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_fluxj23_uyz_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_fluxj23_uyz_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_fluxj23_uyz_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_fluxj23_uyz_ud5(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_fluxj23_xvz_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_fluxj23_xvz_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_fluxj23_xvz_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_fluxj23_xvz_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_fluxj23_xvz_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_fluxj23_xvz_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_fluxj23_xvz_ud5(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_fluxj23_xyw_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_fluxj23_xyw_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_fluxj23_xyw_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_fluxj23_xyw_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_fluxj23_xyw_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_fluxj23_xyw_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_fluxj23_xyw_ud5(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_fluxx_uyz_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_fluxx_uyz_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_fluxx_uyz_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_fluxx_uyz_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_fluxx_uyz_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_fluxx_uyz_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_fluxx_uyz_ud5(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_fluxx_xvz_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_fluxx_xvz_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_fluxx_xvz_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_fluxx_xvz_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_fluxx_xvz_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_fluxx_xvz_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_fluxx_xvz_ud5(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_fluxx_xyw_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_fluxx_xyw_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_fluxx_xyw_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_fluxx_xyw_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_fluxx_xyw_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_fluxx_xyw_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_fluxx_xyw_ud5(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_fluxx_xyz_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_fluxx_xyz_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_fluxx_xyz_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_fluxx_xyz_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_fluxx_xyz_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_fluxx_xyz_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_fluxx_xyz_ud5(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_fluxy_uyz_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_fluxy_uyz_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_fluxy_uyz_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_fluxy_uyz_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_fluxy_uyz_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_fluxy_uyz_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_fluxy_uyz_ud5(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_fluxy_xvz_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_fluxy_xvz_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_fluxy_xvz_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_fluxy_xvz_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_fluxy_xvz_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_fluxy_xvz_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_fluxy_xvz_ud5(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_fluxy_xyw_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_fluxy_xyw_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_fluxy_xyw_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_fluxy_xyw_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_fluxy_xyw_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_fluxy_xyw_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_fluxy_xyw_ud5(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_fluxy_xyz_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_fluxy_xyz_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_fluxy_xyz_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_fluxy_xyz_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_fluxy_xyz_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_fluxy_xyz_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_fluxy_xyz_ud5(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_fluxz_uyz_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_fluxz_uyz_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_fluxz_uyz_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_fluxz_uyz_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_fluxz_uyz_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_fluxz_uyz_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_fluxz_uyz_ud5(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_fluxz_xvz_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_fluxz_xvz_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_fluxz_xvz_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_fluxz_xvz_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_fluxz_xvz_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_fluxz_xvz_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_fluxz_xvz_ud5(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_fluxz_xyw_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_fluxz_xyw_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_fluxz_xyw_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_fluxz_xyw_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_fluxz_xyw_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_fluxz_xyw_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_fluxz_xyw_ud5(), scale_atmos_dyn_fvm_flux_cd2::atmos_dyn_fvm_fluxz_xyz_cd2(), scale_atmos_dyn_fvm_flux_cd4::atmos_dyn_fvm_fluxz_xyz_cd4(), scale_atmos_dyn_fvm_flux_cd6::atmos_dyn_fvm_fluxz_xyz_cd6(), scale_atmos_dyn_fvm_flux_ud1::atmos_dyn_fvm_fluxz_xyz_ud1(), scale_atmos_dyn_fvm_flux_ud3::atmos_dyn_fvm_fluxz_xyz_ud3(), scale_atmos_dyn_fvm_flux_ud3koren1993::atmos_dyn_fvm_fluxz_xyz_ud3koren1993(), scale_atmos_dyn_fvm_flux_ud5::atmos_dyn_fvm_fluxz_xyz_ud5(), scale_atmos_dyn_common::atmos_dyn_numfilter_coef(), scale_atmos_dyn_common::atmos_dyn_numfilter_coef_q(), scale_atmos_dyn_tinteg_short_rk3::atmos_dyn_tinteg_short_rk3(), scale_atmos_dyn_tinteg_short_rk4::atmos_dyn_tinteg_short_rk4(), scale_atmos_dyn_tinteg_tracer_rk3::atmos_dyn_tinteg_tracer_rk3(), scale_atmos_dyn_tstep_large_fvm_heve::atmos_dyn_tstep_large_fvm_heve(), scale_atmos_dyn_tstep_short_fvm_heve::atmos_dyn_tstep_short_fvm_heve(), scale_atmos_dyn_tstep_short_fvm_hevi::atmos_dyn_tstep_short_fvm_hevi(), scale_atmos_dyn_tstep_short_fvm_hivi::atmos_dyn_tstep_short_fvm_hivi(), scale_atmos_dyn_tstep_tracer_fvm_heve::atmos_dyn_tstep_tracer_fvm_heve(), mod_atmos_dyn_vars::atmos_dyn_vars_fillhalo(), mod_atmos_dyn_vars::atmos_dyn_vars_restart_read(), scale_atmos_dyn_common::atmos_dyn_wdamp_setup(), scale_atmos_hydrometeor::atmos_hydrometeor_entr_3d(), scale_atmos_hydrometeor::atmos_hydrometeor_lhf_1d(), scale_atmos_hydrometeor::atmos_hydrometeor_lhf_3d(), scale_atmos_hydrometeor::atmos_hydrometeor_lhs_1d(), scale_atmos_hydrometeor::atmos_hydrometeor_lhs_3d(), scale_atmos_hydrometeor::atmos_hydrometeor_lhv_1d(), scale_atmos_hydrometeor::atmos_hydrometeor_lhv_3d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_3d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_atmos_1d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_atmos_3d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_atmos_rev_3d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_bytemp_atmos_1d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_bytemp_atmos_3d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_real_3d(), mod_atmos_phy_ae_driver::atmos_phy_ae_driver(), scale_atmos_phy_ae_kajino13::atmos_phy_ae_kajino13(), scale_atmos_phy_ae_kajino13::atmos_phy_ae_kajino13_mkinit(), mod_atmos_phy_ae_vars::atmos_phy_ae_vars_fillhalo(), mod_atmos_phy_ae_vars::atmos_phy_ae_vars_restart_read(), mod_atmos_phy_ch_driver::atmos_phy_ch_driver(), mod_atmos_phy_ch_vars::atmos_phy_ch_vars_fillhalo(), mod_atmos_phy_ch_vars::atmos_phy_ch_vars_restart_read(), mod_atmos_phy_cp_driver::atmos_phy_cp_driver(), scale_atmos_phy_cp_kf::atmos_phy_cp_kf_setup(), mod_atmos_phy_cp_vars::atmos_phy_cp_vars_fillhalo(), mod_atmos_phy_cp_vars::atmos_phy_cp_vars_restart_read(), mod_atmos_phy_mp_driver::atmos_phy_mp_driver(), scale_atmos_phy_mp_kessler::atmos_phy_mp_kessler(), scale_atmos_phy_mp_kessler::atmos_phy_mp_kessler_cloudfraction(), scale_atmos_phy_mp_common::atmos_phy_mp_negative_fixer(), scale_atmos_phy_mp_common::atmos_phy_mp_precipitation(), scale_atmos_phy_mp_common::atmos_phy_mp_saturation_adjustment(), scale_atmos_phy_mp_sn14::atmos_phy_mp_sn14(), scale_atmos_phy_mp_sn14::atmos_phy_mp_sn14_cloudfraction(), scale_atmos_phy_mp_sn14::atmos_phy_mp_sn14_effectiveradius(), scale_atmos_phy_mp_suzuki10::atmos_phy_mp_suzuki10(), scale_atmos_phy_mp_suzuki10::atmos_phy_mp_suzuki10_cloudfraction(), scale_atmos_phy_mp_suzuki10::atmos_phy_mp_suzuki10_effectiveradius(), scale_atmos_phy_mp_suzuki10::atmos_phy_mp_suzuki10_mixingratio(), scale_atmos_phy_mp_tomita08::atmos_phy_mp_tomita08(), scale_atmos_phy_mp_tomita08::atmos_phy_mp_tomita08_cloudfraction(), scale_atmos_phy_mp_tomita08::atmos_phy_mp_tomita08_effectiveradius(), mod_atmos_phy_rd_driver::atmos_phy_rd_driver(), scale_atmos_phy_rd_common::atmos_phy_rd_heating(), scale_atmos_phy_rd_mstrnx::atmos_phy_rd_mstrnx(), scale_atmos_phy_rd_profile::atmos_phy_rd_profile_setup_zgrid(), scale_atmos_phy_tb_common::atmos_phy_tb_calc_flux_phi(), scale_atmos_phy_tb_common::atmos_phy_tb_calc_strain_tensor(), scale_atmos_phy_tb_common::atmos_phy_tb_calc_tend_momx(), scale_atmos_phy_tb_common::atmos_phy_tb_calc_tend_momy(), scale_atmos_phy_tb_common::atmos_phy_tb_calc_tend_momz(), scale_atmos_phy_tb_common::atmos_phy_tb_calc_tend_phi(), scale_atmos_phy_tb_d1980::atmos_phy_tb_d1980(), scale_atmos_phy_tb_d1980::atmos_phy_tb_d1980_setup(), scale_atmos_phy_tb_dns::atmos_phy_tb_dns(), mod_atmos_phy_tb_driver::atmos_phy_tb_driver(), mod_atmos_phy_tb_driver::atmos_phy_tb_driver_setup(), scale_atmos_phy_tb_hybrid::atmos_phy_tb_hybrid(), scale_atmos_phy_tb_mynn::atmos_phy_tb_mynn(), scale_atmos_phy_tb_mynn::atmos_phy_tb_mynn_setup(), scale_atmos_phy_tb_smg::atmos_phy_tb_smg(), scale_atmos_phy_tb_smg::atmos_phy_tb_smg_setup(), scale_atmos_refstate::atmos_refstate_calc3d(), scale_atmos_refstate::atmos_refstate_resume(), scale_atmos_refstate::atmos_refstate_update(), scale_atmos_refstate::atmos_refstate_write(), scale_atmos_saturation::atmos_saturation_alpha_0d(), scale_atmos_saturation::atmos_saturation_dqsi_dtem_dpre(), scale_atmos_saturation::atmos_saturation_dqsi_dtem_rho(), scale_atmos_saturation::atmos_saturation_dqsw_dtem_dpre(), scale_atmos_saturation::atmos_saturation_dqsw_dtem_rho(), scale_atmos_thermodyn::atmos_thermodyn_setup(), scale_atmos_thermodyn::atmos_thermodyn_tempre(), scale_atmos_thermodyn::atmos_thermodyn_tempre2(), mod_atmos_vars::atmos_vars_fillhalo(), mod_atmos_vars::atmos_vars_history(), mod_atmos_vars::atmos_vars_monitor(), mod_atmos_vars::atmos_vars_restart_check(), mod_atmos_vars::atmos_vars_restart_read(), mod_atmos_vars::atmos_vars_setup(), mod_atmos_vars::atmos_vars_total(), scale_atmos_phy_mp_sn14::aut_acc_slc_brk_kij(), scale_atmos_dyn_common::calc_diff3(), scale_atmos_dyn_tstep_large_fvm_heve::check_mass(), mod_cnvtopo::cnvtopo_setup(), scale_comm::comm_horizontal_max_2d(), scale_comm::comm_horizontal_min_2d(), scale_atmos_phy_cp_kf::cp_kf_main(), scale_atmos_phy_mp_sn14::debug_tem_kij(), scale_atmos_phy_mp_sn14::dep_vapor_melt_ice_kij(), scale_external_input_rm::extin_rm_get_dims_1d(), scale_external_input_rm::extin_rm_get_dims_2d(), scale_external_input_rm::extin_rm_get_dims_3d(), scale_fileio::fileio_check_coordinates_name(), scale_fileio::fileio_read_var_1d(), scale_fileio::fileio_read_var_2d(), scale_fileio::fileio_read_var_3d(), scale_fileio::fileio_read_var_4d(), scale_fileio::fileio_write_axes(), scale_fileio::fileio_write_var_1d(), scale_fileio::fileio_write_var_2d(), scale_fileio::fileio_write_var_3d(), scale_fileio::fileio_write_var_4d(), scale_atmos_phy_mp_sn14::freezing_water_kij(), scale_grid::grid_generate(), grid_index_setup(), scale_gridtrans::gtrans_rotcoef(), scale_history::hist_setup(), scale_atmos_phy_mp_sn14::ice_multiplication_kij(), scale_interpolation::interp_setup(), scale_interpolation::interp_update_pres(), scale_interpolation::interp_vertical_xi2z(), scale_interpolation::interp_vertical_z2xi(), mod_mkinit::interporation_fact(), scale_interpolation_nest::intrpnest_interp_fact_llz(), scale_atmos_phy_cp_kf::kf_wmean(), scale_atmos_dyn_tstep_short_fvm_hivi::make_matrix(), scale_atmos_phy_mp_sn14::mixed_phase_collection_kij(), mod_mkinit::mkinit(), scale_atmos_phy_mp_sn14::mp_negativefilter(), scale_grid_nest::nest_domain_shape(), scale_atmos_phy_mp_sn14::nucleation_kij(), mod_realinput::parentatomsetup(), mod_mkinit::read_sounding(), scale_grid_real::real_calc_areavol(), scale_grid_real::real_update_z(), mod_realinput::realinput_atmos(), mod_mkinit::rect_setup(), scale_atmos_refstate::smoothing(), scale_atmos_dyn_tstep_short_fvm_hivi::solve_bicgstab(), scale_atmos_dyn_tstep_short_fvm_hevi::solve_direct(), scale_rm_statistics::stat_detail(), scale_rm_statistics::stat_total_3d(), scale_atmos_phy_rd_mm5sw::swrad(), and scale_atmos_phy_mp_sn14::update_by_phase_change_kij().

59  integer, public :: KE

◆ is

integer, public scale_grid_index::is

start point of inner domain: x, local

Definition at line 60 of file scale_grid_index.F90.

Referenced by scale_atmos_adiabat::atmos_adiabat_cape(), scale_atmos_adiabat::atmos_adiabat_liftparcel(), scale_atmos_boundary::atmos_boundary_update(), scale_atmos_dyn::atmos_dyn(), scale_atmos_dyn_common::atmos_dyn_copy_boundary(), scale_atmos_dyn_common::atmos_dyn_copy_boundary_tracer(), scale_atmos_dyn_common::atmos_dyn_divergence(), scale_atmos_dyn_common::atmos_dyn_fct(), scale_atmos_dyn_common::atmos_dyn_filter_setup(), scale_atmos_dyn_common::atmos_dyn_filter_tend(), scale_atmos_dyn_common::atmos_dyn_numfilter_coef(), scale_atmos_dyn_common::atmos_dyn_numfilter_coef_q(), scale_atmos_dyn_tinteg_short_rk3::atmos_dyn_tinteg_short_rk3(), scale_atmos_dyn_tinteg_short_rk4::atmos_dyn_tinteg_short_rk4(), scale_atmos_dyn_tinteg_tracer_rk3::atmos_dyn_tinteg_tracer_rk3(), scale_atmos_dyn_tstep_large_fvm_heve::atmos_dyn_tstep_large_fvm_heve(), scale_atmos_dyn_tstep_short_fvm_heve::atmos_dyn_tstep_short_fvm_heve(), scale_atmos_dyn_tstep_short_fvm_hevi::atmos_dyn_tstep_short_fvm_hevi(), scale_atmos_dyn_tstep_short_fvm_hivi::atmos_dyn_tstep_short_fvm_hivi(), scale_atmos_dyn_tstep_tracer_fvm_heve::atmos_dyn_tstep_tracer_fvm_heve(), mod_atmos_dyn_vars::atmos_dyn_vars_fillhalo(), mod_atmos_phy_ae_driver::atmos_phy_ae_driver(), scale_atmos_phy_ae_kajino13::atmos_phy_ae_kajino13(), scale_atmos_phy_ae_kajino13::atmos_phy_ae_kajino13_mkinit(), mod_atmos_phy_ae_vars::atmos_phy_ae_vars_fillhalo(), mod_atmos_phy_ch_driver::atmos_phy_ch_driver(), mod_atmos_phy_ch_vars::atmos_phy_ch_vars_fillhalo(), mod_atmos_phy_cp_driver::atmos_phy_cp_driver(), scale_atmos_phy_cp_kf::atmos_phy_cp_kf_setup(), mod_atmos_phy_cp_vars::atmos_phy_cp_vars_fillhalo(), mod_atmos_phy_mp_driver::atmos_phy_mp_driver(), scale_atmos_phy_mp_kessler::atmos_phy_mp_kessler(), scale_atmos_phy_mp_kessler::atmos_phy_mp_kessler_cloudfraction(), scale_atmos_phy_mp_common::atmos_phy_mp_precipitation(), scale_atmos_phy_mp_common::atmos_phy_mp_saturation_adjustment(), scale_atmos_phy_mp_sn14::atmos_phy_mp_sn14(), scale_atmos_phy_mp_sn14::atmos_phy_mp_sn14_cloudfraction(), scale_atmos_phy_mp_sn14::atmos_phy_mp_sn14_effectiveradius(), scale_atmos_phy_mp_suzuki10::atmos_phy_mp_suzuki10(), scale_atmos_phy_mp_suzuki10::atmos_phy_mp_suzuki10_cloudfraction(), scale_atmos_phy_mp_suzuki10::atmos_phy_mp_suzuki10_effectiveradius(), scale_atmos_phy_mp_suzuki10::atmos_phy_mp_suzuki10_mixingratio(), scale_atmos_phy_mp_tomita08::atmos_phy_mp_tomita08(), scale_atmos_phy_mp_tomita08::atmos_phy_mp_tomita08_cloudfraction(), scale_atmos_phy_mp_tomita08::atmos_phy_mp_tomita08_effectiveradius(), scale_atmos_phy_mp_tomita08::atmos_phy_mp_tomita08_setup(), mod_atmos_phy_rd_driver::atmos_phy_rd_driver(), scale_atmos_phy_rd_common::atmos_phy_rd_heating(), scale_atmos_phy_rd_mstrnx::atmos_phy_rd_mstrnx(), scale_atmos_phy_rd_offline::atmos_phy_rd_offline(), scale_atmos_phy_sf_bulk::atmos_phy_sf_bulk(), scale_atmos_phy_sf_const::atmos_phy_sf_const(), mod_atmos_phy_sf_driver::atmos_phy_sf_driver(), scale_atmos_phy_tb_common::atmos_phy_tb_calc_strain_tensor(), scale_atmos_phy_tb_d1980::atmos_phy_tb_d1980(), scale_atmos_phy_tb_d1980::atmos_phy_tb_d1980_setup(), scale_atmos_phy_tb_dns::atmos_phy_tb_dns(), mod_atmos_phy_tb_driver::atmos_phy_tb_driver(), mod_atmos_phy_tb_driver::atmos_phy_tb_driver_setup(), scale_atmos_phy_tb_mynn::atmos_phy_tb_mynn(), scale_atmos_phy_tb_mynn::atmos_phy_tb_mynn_setup(), scale_atmos_phy_tb_smg::atmos_phy_tb_smg(), scale_atmos_phy_tb_smg::atmos_phy_tb_smg_setup(), scale_atmos_solarins::atmos_solarins_insolation_2d(), mod_atmos_vars::atmos_vars_history(), mod_atmos_vars::atmos_vars_monitor(), mod_atmos_vars::atmos_vars_restart_check(), mod_atmos_vars::atmos_vars_total(), scale_atmos_phy_mp_sn14::aut_acc_slc_brk_kij(), scale_atmos_dyn_common::calc_diff3(), scale_atmos_dyn_tstep_large_fvm_heve::check_mass(), mod_cnvlanduse::cnvlanduse(), mod_cnvtopo::cnvtopo(), mod_cnvtopo::cnvtopo_hypdiff(), mod_cnvtopo::cnvtopo_setup(), scale_comm::comm_horizontal_max_2d(), scale_comm::comm_horizontal_mean(), scale_comm::comm_horizontal_min_2d(), mod_land_vars::convert_ws2vwc(), scale_atmos_phy_cp_kf::cp_kf_main(), mod_cpl_vars::cpl_getatm_lnd(), mod_cpl_vars::cpl_getatm_ocn(), mod_cpl_vars::cpl_getatm_urb(), mod_cpl_vars::cpl_getsfc_atm(), mod_cpl_vars::cpl_putatm(), mod_cpl_vars::cpl_putlnd(), mod_cpl_vars::cpl_putocn(), mod_cpl_vars::cpl_puturb(), scale_atmos_phy_mp_sn14::debug_tem_kij(), scale_atmos_phy_mp_sn14::dep_vapor_melt_ice_kij(), scale_fileio::fileio_write_var_2d(), scale_fileio::fileio_write_var_3d(), scale_fileio::fileio_write_var_3d_t(), scale_fileio::fileio_write_var_4d(), mod_mkinit::flux_setup(), scale_atmos_phy_mp_sn14::freezing_water_kij(), scale_atmos_phy_tb_mynn::get_length(), scale_atmos_phy_tb_mynn::get_q2_level2(), grid_index_setup(), scale_grid::grid_setup(), scale_gridtrans::gtrans_rotcoef(), scale_history::hist_put_2d(), scale_history::hist_put_3d(), scale_history::hist_setup(), scale_atmos_phy_mp_sn14::ice_multiplication_kij(), mod_mkinit::interporation_fact(), scale_interpolation_nest::intrpnest_interp_fact_latlon(), scale_interpolation_nest::intrpnest_interp_fact_llz(), scale_atmos_phy_cp_kf::kf_wmean(), mod_land_driver::land_driver(), mod_land_phy_driver::land_phy_driver(), scale_land_phy_slab::land_phy_slab(), mod_mkinit::land_setup(), scale_land_sfc_const::land_sfc_const(), scale_land_sfc_thick_slab::land_sfc_thick_slab(), scale_land_sfc_thin_slab::land_sfc_thin_slab(), mod_land_driver::land_surface_get(), mod_land_vars::land_vars_history(), mod_land_vars::land_vars_setup(), scale_atmos_dyn_tstep_short_fvm_hivi::make_matrix(), scale_atmos_phy_mp_sn14::mixed_phase_collection_kij(), mod_mkinit::mkinit(), mod_mktopo::mktopo(), scale_atmos_phy_mp_sn14::mp_negativefilter(), scale_grid_nest::nest_domain_shape(), scale_atmos_phy_mp_sn14::nucleation_kij(), mod_ocean_driver::ocean_driver(), mod_ocean_phy_driver::ocean_phy_driver(), scale_ocean_phy_file::ocean_phy_file(), scale_ocean_phy_file::ocean_phy_file_setup(), scale_ocean_phy_slab::ocean_phy_slab(), mod_mkinit::ocean_setup(), scale_ocean_sfc_const::ocean_sfc_const(), scale_ocean_sfc::ocean_sfc_simplealbedo(), scale_ocean_sfc_slab::ocean_sfc_slab(), mod_ocean_driver::ocean_surface_get(), mod_ocean_vars::ocean_vars_history(), mod_mkinit::read_sounding(), scale_grid_real::real_calc_areavol(), scale_grid_real::real_update_z(), mod_mkinit::rect_setup(), scale_roughness::roughness_setup(), scale_atmos_dyn_tstep_short_fvm_hivi::solve_bicgstab(), scale_rm_statistics::stat_detail(), scale_rm_statistics::stat_total_2d(), scale_rm_statistics::stat_total_3d(), scale_atmos_phy_rd_mm5sw::swrad(), scale_atmos_phy_mp_sn14::update_by_phase_change_kij(), mod_urban_driver::urban_driver(), mod_urban_phy_driver::urban_phy_driver(), scale_urban_phy_slc::urban_phy_slc(), scale_urban_phy_slc::urban_phy_slc_setup(), mod_mkinit::urban_setup(), mod_urban_driver::urban_surface_get(), mod_urban_vars::urban_vars_history(), scale_comm::vars8_2d_mpi(), scale_comm::vars8_3d_mpi(), scale_comm::vars_init_mpi_pc(), and scale_comm::wait_3d_mpi().

60  integer, public :: IS

◆ ie

integer, public scale_grid_index::ie

end point of inner domain: x, local

Definition at line 61 of file scale_grid_index.F90.

Referenced by scale_atmos_adiabat::atmos_adiabat_cape(), scale_atmos_adiabat::atmos_adiabat_liftparcel(), scale_atmos_boundary::atmos_boundary_update(), scale_atmos_dyn::atmos_dyn(), scale_atmos_dyn_common::atmos_dyn_copy_boundary(), scale_atmos_dyn_common::atmos_dyn_copy_boundary_tracer(), scale_atmos_dyn_common::atmos_dyn_divergence(), scale_atmos_dyn_common::atmos_dyn_fct(), scale_atmos_dyn_common::atmos_dyn_filter_setup(), scale_atmos_dyn_common::atmos_dyn_filter_tend(), scale_atmos_dyn_common::atmos_dyn_numfilter_coef(), scale_atmos_dyn_common::atmos_dyn_numfilter_coef_q(), scale_atmos_dyn_tinteg_short_rk3::atmos_dyn_tinteg_short_rk3(), scale_atmos_dyn_tinteg_short_rk4::atmos_dyn_tinteg_short_rk4(), scale_atmos_dyn_tinteg_tracer_rk3::atmos_dyn_tinteg_tracer_rk3(), scale_atmos_dyn_tstep_large_fvm_heve::atmos_dyn_tstep_large_fvm_heve(), scale_atmos_dyn_tstep_short_fvm_heve::atmos_dyn_tstep_short_fvm_heve(), scale_atmos_dyn_tstep_short_fvm_hevi::atmos_dyn_tstep_short_fvm_hevi(), scale_atmos_dyn_tstep_short_fvm_hivi::atmos_dyn_tstep_short_fvm_hivi(), scale_atmos_dyn_tstep_tracer_fvm_heve::atmos_dyn_tstep_tracer_fvm_heve(), mod_atmos_dyn_vars::atmos_dyn_vars_fillhalo(), mod_atmos_phy_ae_driver::atmos_phy_ae_driver(), scale_atmos_phy_ae_kajino13::atmos_phy_ae_kajino13(), scale_atmos_phy_ae_kajino13::atmos_phy_ae_kajino13_mkinit(), mod_atmos_phy_ae_vars::atmos_phy_ae_vars_fillhalo(), mod_atmos_phy_ch_driver::atmos_phy_ch_driver(), mod_atmos_phy_ch_vars::atmos_phy_ch_vars_fillhalo(), mod_atmos_phy_cp_driver::atmos_phy_cp_driver(), scale_atmos_phy_cp_kf::atmos_phy_cp_kf_setup(), mod_atmos_phy_cp_vars::atmos_phy_cp_vars_fillhalo(), mod_atmos_phy_mp_driver::atmos_phy_mp_driver(), scale_atmos_phy_mp_kessler::atmos_phy_mp_kessler(), scale_atmos_phy_mp_kessler::atmos_phy_mp_kessler_cloudfraction(), scale_atmos_phy_mp_common::atmos_phy_mp_precipitation(), scale_atmos_phy_mp_common::atmos_phy_mp_saturation_adjustment(), scale_atmos_phy_mp_sn14::atmos_phy_mp_sn14(), scale_atmos_phy_mp_sn14::atmos_phy_mp_sn14_cloudfraction(), scale_atmos_phy_mp_sn14::atmos_phy_mp_sn14_effectiveradius(), scale_atmos_phy_mp_suzuki10::atmos_phy_mp_suzuki10(), scale_atmos_phy_mp_suzuki10::atmos_phy_mp_suzuki10_cloudfraction(), scale_atmos_phy_mp_suzuki10::atmos_phy_mp_suzuki10_effectiveradius(), scale_atmos_phy_mp_suzuki10::atmos_phy_mp_suzuki10_mixingratio(), scale_atmos_phy_mp_tomita08::atmos_phy_mp_tomita08(), scale_atmos_phy_mp_tomita08::atmos_phy_mp_tomita08_cloudfraction(), scale_atmos_phy_mp_tomita08::atmos_phy_mp_tomita08_effectiveradius(), scale_atmos_phy_mp_tomita08::atmos_phy_mp_tomita08_setup(), mod_atmos_phy_rd_driver::atmos_phy_rd_driver(), scale_atmos_phy_rd_common::atmos_phy_rd_heating(), scale_atmos_phy_rd_mstrnx::atmos_phy_rd_mstrnx(), scale_atmos_phy_rd_offline::atmos_phy_rd_offline(), scale_atmos_phy_sf_bulk::atmos_phy_sf_bulk(), scale_atmos_phy_sf_const::atmos_phy_sf_const(), mod_atmos_phy_sf_driver::atmos_phy_sf_driver(), scale_atmos_phy_tb_common::atmos_phy_tb_calc_strain_tensor(), scale_atmos_phy_tb_d1980::atmos_phy_tb_d1980(), scale_atmos_phy_tb_d1980::atmos_phy_tb_d1980_setup(), scale_atmos_phy_tb_dns::atmos_phy_tb_dns(), mod_atmos_phy_tb_driver::atmos_phy_tb_driver(), mod_atmos_phy_tb_driver::atmos_phy_tb_driver_setup(), scale_atmos_phy_tb_mynn::atmos_phy_tb_mynn(), scale_atmos_phy_tb_mynn::atmos_phy_tb_mynn_setup(), scale_atmos_phy_tb_smg::atmos_phy_tb_smg(), scale_atmos_phy_tb_smg::atmos_phy_tb_smg_setup(), scale_atmos_solarins::atmos_solarins_insolation_2d(), mod_atmos_vars::atmos_vars_history(), mod_atmos_vars::atmos_vars_monitor(), mod_atmos_vars::atmos_vars_restart_check(), mod_atmos_vars::atmos_vars_total(), scale_atmos_phy_mp_sn14::aut_acc_slc_brk_kij(), scale_atmos_dyn_common::calc_diff3(), scale_atmos_dyn_tstep_large_fvm_heve::check_mass(), mod_cnvlanduse::cnvlanduse(), mod_cnvtopo::cnvtopo(), mod_cnvtopo::cnvtopo_hypdiff(), mod_cnvtopo::cnvtopo_setup(), scale_comm::comm_horizontal_max_2d(), scale_comm::comm_horizontal_mean(), scale_comm::comm_horizontal_min_2d(), mod_land_vars::convert_ws2vwc(), scale_atmos_phy_cp_kf::cp_kf_main(), mod_cpl_vars::cpl_getatm_lnd(), mod_cpl_vars::cpl_getatm_ocn(), mod_cpl_vars::cpl_getatm_urb(), mod_cpl_vars::cpl_getsfc_atm(), mod_cpl_vars::cpl_putatm(), mod_cpl_vars::cpl_putlnd(), mod_cpl_vars::cpl_putocn(), mod_cpl_vars::cpl_puturb(), scale_atmos_phy_mp_sn14::debug_tem_kij(), scale_atmos_phy_mp_sn14::dep_vapor_melt_ice_kij(), scale_fileio::fileio_write_var_2d(), scale_fileio::fileio_write_var_3d(), scale_fileio::fileio_write_var_3d_t(), scale_fileio::fileio_write_var_4d(), mod_mkinit::flux_setup(), scale_atmos_phy_mp_sn14::freezing_water_kij(), scale_atmos_phy_tb_mynn::get_length(), scale_atmos_phy_tb_mynn::get_q2_level2(), grid_index_setup(), scale_grid::grid_setup(), scale_gridtrans::gtrans_rotcoef(), scale_history::hist_put_2d(), scale_history::hist_put_3d(), scale_history::hist_setup(), scale_atmos_phy_mp_sn14::ice_multiplication_kij(), mod_mkinit::interporation_fact(), scale_interpolation_nest::intrpnest_interp_fact_latlon(), scale_interpolation_nest::intrpnest_interp_fact_llz(), scale_atmos_phy_cp_kf::kf_wmean(), mod_land_driver::land_driver(), mod_land_phy_driver::land_phy_driver(), scale_land_phy_slab::land_phy_slab(), mod_mkinit::land_setup(), scale_land_sfc_const::land_sfc_const(), scale_land_sfc_thick_slab::land_sfc_thick_slab(), scale_land_sfc_thin_slab::land_sfc_thin_slab(), mod_land_driver::land_surface_get(), mod_land_vars::land_vars_history(), mod_land_vars::land_vars_setup(), scale_atmos_dyn_tstep_short_fvm_hivi::make_matrix(), scale_atmos_phy_mp_sn14::mixed_phase_collection_kij(), mod_mkinit::mkinit(), scale_atmos_phy_mp_sn14::mp_negativefilter(), scale_grid_nest::nest_domain_shape(), scale_atmos_phy_mp_sn14::nucleation_kij(), mod_ocean_driver::ocean_driver(), mod_ocean_phy_driver::ocean_phy_driver(), scale_ocean_phy_file::ocean_phy_file(), scale_ocean_phy_file::ocean_phy_file_setup(), scale_ocean_phy_slab::ocean_phy_slab(), mod_mkinit::ocean_setup(), scale_ocean_sfc_const::ocean_sfc_const(), scale_ocean_sfc::ocean_sfc_simplealbedo(), scale_ocean_sfc_slab::ocean_sfc_slab(), mod_ocean_driver::ocean_surface_get(), mod_ocean_vars::ocean_vars_history(), mod_mkinit::read_sounding(), scale_grid_real::real_calc_areavol(), scale_grid_real::real_update_z(), mod_mkinit::rect_setup(), scale_roughness::roughness_setup(), scale_atmos_dyn_tstep_short_fvm_hivi::solve_bicgstab(), scale_rm_statistics::stat_detail(), scale_rm_statistics::stat_total_2d(), scale_rm_statistics::stat_total_3d(), scale_atmos_phy_rd_mm5sw::swrad(), scale_atmos_phy_mp_sn14::update_by_phase_change_kij(), mod_urban_driver::urban_driver(), mod_urban_phy_driver::urban_phy_driver(), scale_urban_phy_slc::urban_phy_slc(), scale_urban_phy_slc::urban_phy_slc_setup(), mod_mkinit::urban_setup(), mod_urban_driver::urban_surface_get(), mod_urban_vars::urban_vars_history(), scale_comm::vars8_2d_mpi(), scale_comm::vars8_3d_mpi(), scale_comm::vars_init_mpi_pc(), and scale_comm::wait_3d_mpi().

61  integer, public :: IE

◆ js

integer, public scale_grid_index::js

start point of inner domain: y, local

Definition at line 62 of file scale_grid_index.F90.

Referenced by scale_atmos_adiabat::atmos_adiabat_cape(), scale_atmos_adiabat::atmos_adiabat_liftparcel(), scale_atmos_boundary::atmos_boundary_update(), scale_atmos_dyn::atmos_dyn(), scale_atmos_dyn_common::atmos_dyn_copy_boundary(), scale_atmos_dyn_common::atmos_dyn_copy_boundary_tracer(), scale_atmos_dyn_common::atmos_dyn_divergence(), scale_atmos_dyn_common::atmos_dyn_fct(), scale_atmos_dyn_common::atmos_dyn_filter_setup(), scale_atmos_dyn_common::atmos_dyn_filter_tend(), scale_atmos_dyn_common::atmos_dyn_numfilter_coef(), scale_atmos_dyn_common::atmos_dyn_numfilter_coef_q(), scale_atmos_dyn_tinteg_short_rk3::atmos_dyn_tinteg_short_rk3(), scale_atmos_dyn_tinteg_short_rk4::atmos_dyn_tinteg_short_rk4(), scale_atmos_dyn_tinteg_tracer_rk3::atmos_dyn_tinteg_tracer_rk3(), scale_atmos_dyn_tstep_large_fvm_heve::atmos_dyn_tstep_large_fvm_heve(), scale_atmos_dyn_tstep_short_fvm_heve::atmos_dyn_tstep_short_fvm_heve(), scale_atmos_dyn_tstep_short_fvm_hevi::atmos_dyn_tstep_short_fvm_hevi(), scale_atmos_dyn_tstep_short_fvm_hivi::atmos_dyn_tstep_short_fvm_hivi(), scale_atmos_dyn_tstep_tracer_fvm_heve::atmos_dyn_tstep_tracer_fvm_heve(), mod_atmos_dyn_vars::atmos_dyn_vars_fillhalo(), mod_atmos_phy_ae_driver::atmos_phy_ae_driver(), scale_atmos_phy_ae_kajino13::atmos_phy_ae_kajino13(), scale_atmos_phy_ae_kajino13::atmos_phy_ae_kajino13_mkinit(), mod_atmos_phy_ae_vars::atmos_phy_ae_vars_fillhalo(), mod_atmos_phy_ch_driver::atmos_phy_ch_driver(), mod_atmos_phy_ch_vars::atmos_phy_ch_vars_fillhalo(), mod_atmos_phy_cp_driver::atmos_phy_cp_driver(), scale_atmos_phy_cp_kf::atmos_phy_cp_kf_setup(), mod_atmos_phy_cp_vars::atmos_phy_cp_vars_fillhalo(), mod_atmos_phy_mp_driver::atmos_phy_mp_driver(), scale_atmos_phy_mp_kessler::atmos_phy_mp_kessler(), scale_atmos_phy_mp_kessler::atmos_phy_mp_kessler_cloudfraction(), scale_atmos_phy_mp_common::atmos_phy_mp_precipitation(), scale_atmos_phy_mp_common::atmos_phy_mp_saturation_adjustment(), scale_atmos_phy_mp_sn14::atmos_phy_mp_sn14(), scale_atmos_phy_mp_sn14::atmos_phy_mp_sn14_cloudfraction(), scale_atmos_phy_mp_sn14::atmos_phy_mp_sn14_effectiveradius(), scale_atmos_phy_mp_suzuki10::atmos_phy_mp_suzuki10(), scale_atmos_phy_mp_suzuki10::atmos_phy_mp_suzuki10_cloudfraction(), scale_atmos_phy_mp_suzuki10::atmos_phy_mp_suzuki10_effectiveradius(), scale_atmos_phy_mp_suzuki10::atmos_phy_mp_suzuki10_mixingratio(), scale_atmos_phy_mp_tomita08::atmos_phy_mp_tomita08(), scale_atmos_phy_mp_tomita08::atmos_phy_mp_tomita08_cloudfraction(), scale_atmos_phy_mp_tomita08::atmos_phy_mp_tomita08_effectiveradius(), scale_atmos_phy_mp_tomita08::atmos_phy_mp_tomita08_setup(), mod_atmos_phy_rd_driver::atmos_phy_rd_driver(), scale_atmos_phy_rd_common::atmos_phy_rd_heating(), scale_atmos_phy_rd_mstrnx::atmos_phy_rd_mstrnx(), scale_atmos_phy_rd_offline::atmos_phy_rd_offline(), scale_atmos_phy_sf_bulk::atmos_phy_sf_bulk(), scale_atmos_phy_sf_const::atmos_phy_sf_const(), mod_atmos_phy_sf_driver::atmos_phy_sf_driver(), scale_atmos_phy_tb_common::atmos_phy_tb_calc_strain_tensor(), scale_atmos_phy_tb_d1980::atmos_phy_tb_d1980(), scale_atmos_phy_tb_d1980::atmos_phy_tb_d1980_setup(), scale_atmos_phy_tb_dns::atmos_phy_tb_dns(), mod_atmos_phy_tb_driver::atmos_phy_tb_driver(), mod_atmos_phy_tb_driver::atmos_phy_tb_driver_setup(), scale_atmos_phy_tb_mynn::atmos_phy_tb_mynn(), scale_atmos_phy_tb_mynn::atmos_phy_tb_mynn_setup(), scale_atmos_phy_tb_smg::atmos_phy_tb_smg(), scale_atmos_phy_tb_smg::atmos_phy_tb_smg_setup(), scale_atmos_solarins::atmos_solarins_insolation_2d(), mod_atmos_vars::atmos_vars_history(), mod_atmos_vars::atmos_vars_monitor(), mod_atmos_vars::atmos_vars_restart_check(), mod_atmos_vars::atmos_vars_total(), scale_atmos_phy_mp_sn14::aut_acc_slc_brk_kij(), scale_atmos_dyn_common::calc_diff3(), scale_atmos_dyn_tstep_large_fvm_heve::check_mass(), mod_cnvlanduse::cnvlanduse(), mod_cnvtopo::cnvtopo(), mod_cnvtopo::cnvtopo_hypdiff(), mod_cnvtopo::cnvtopo_setup(), scale_comm::comm_horizontal_max_2d(), scale_comm::comm_horizontal_mean(), scale_comm::comm_horizontal_min_2d(), mod_land_vars::convert_ws2vwc(), scale_atmos_phy_cp_kf::cp_kf_main(), mod_cpl_vars::cpl_getatm_lnd(), mod_cpl_vars::cpl_getatm_ocn(), mod_cpl_vars::cpl_getatm_urb(), mod_cpl_vars::cpl_getsfc_atm(), mod_cpl_vars::cpl_putatm(), mod_cpl_vars::cpl_putlnd(), mod_cpl_vars::cpl_putocn(), mod_cpl_vars::cpl_puturb(), scale_atmos_phy_mp_sn14::debug_tem_kij(), scale_atmos_phy_mp_sn14::dep_vapor_melt_ice_kij(), scale_fileio::fileio_write_var_2d(), scale_fileio::fileio_write_var_3d(), scale_fileio::fileio_write_var_3d_t(), scale_fileio::fileio_write_var_4d(), mod_mkinit::flux_setup(), scale_atmos_phy_mp_sn14::freezing_water_kij(), scale_atmos_phy_tb_mynn::get_length(), scale_atmos_phy_tb_mynn::get_q2_level2(), grid_index_setup(), scale_grid::grid_setup(), scale_gridtrans::gtrans_rotcoef(), scale_history::hist_put_2d(), scale_history::hist_put_3d(), scale_history::hist_setup(), scale_atmos_phy_mp_sn14::ice_multiplication_kij(), mod_mkinit::interporation_fact(), scale_interpolation_nest::intrpnest_interp_fact_latlon(), scale_interpolation_nest::intrpnest_interp_fact_llz(), scale_atmos_phy_cp_kf::kf_wmean(), mod_land_driver::land_driver(), mod_land_phy_driver::land_phy_driver(), scale_land_phy_slab::land_phy_slab(), mod_mkinit::land_setup(), scale_land_sfc_const::land_sfc_const(), scale_land_sfc_thick_slab::land_sfc_thick_slab(), scale_land_sfc_thin_slab::land_sfc_thin_slab(), mod_land_driver::land_surface_get(), mod_land_vars::land_vars_history(), mod_land_vars::land_vars_setup(), scale_atmos_dyn_tstep_short_fvm_hivi::make_matrix(), scale_atmos_phy_mp_sn14::mixed_phase_collection_kij(), mod_mkinit::mkinit(), mod_mktopo::mktopo(), scale_atmos_phy_mp_sn14::mp_negativefilter(), scale_grid_nest::nest_domain_shape(), scale_atmos_phy_mp_sn14::nucleation_kij(), mod_ocean_driver::ocean_driver(), mod_ocean_phy_driver::ocean_phy_driver(), scale_ocean_phy_file::ocean_phy_file(), scale_ocean_phy_file::ocean_phy_file_setup(), scale_ocean_phy_slab::ocean_phy_slab(), mod_mkinit::ocean_setup(), scale_ocean_sfc_const::ocean_sfc_const(), scale_ocean_sfc::ocean_sfc_simplealbedo(), scale_ocean_sfc_slab::ocean_sfc_slab(), mod_ocean_driver::ocean_surface_get(), mod_ocean_vars::ocean_vars_history(), mod_mkinit::read_sounding(), scale_grid_real::real_calc_areavol(), scale_grid_real::real_update_z(), mod_mkinit::rect_setup(), scale_roughness::roughness_setup(), scale_atmos_dyn_tstep_short_fvm_hivi::solve_bicgstab(), scale_rm_statistics::stat_detail(), scale_rm_statistics::stat_total_2d(), scale_rm_statistics::stat_total_3d(), scale_atmos_phy_rd_mm5sw::swrad(), scale_atmos_phy_mp_sn14::update_by_phase_change_kij(), mod_urban_driver::urban_driver(), mod_urban_phy_driver::urban_phy_driver(), scale_urban_phy_slc::urban_phy_slc(), scale_urban_phy_slc::urban_phy_slc_setup(), mod_mkinit::urban_setup(), mod_urban_driver::urban_surface_get(), mod_urban_vars::urban_vars_history(), scale_comm::vars8_2d_mpi(), scale_comm::vars8_3d_mpi(), scale_comm::vars_2d_mpi(), scale_comm::vars_init_mpi_pc(), and scale_comm::wait_3d_mpi().

62  integer, public :: JS

◆ je

integer, public scale_grid_index::je

end point of inner domain: y, local

Definition at line 63 of file scale_grid_index.F90.

Referenced by scale_atmos_adiabat::atmos_adiabat_cape(), scale_atmos_adiabat::atmos_adiabat_liftparcel(), scale_atmos_boundary::atmos_boundary_update(), scale_atmos_dyn::atmos_dyn(), scale_atmos_dyn_common::atmos_dyn_copy_boundary(), scale_atmos_dyn_common::atmos_dyn_copy_boundary_tracer(), scale_atmos_dyn_common::atmos_dyn_divergence(), scale_atmos_dyn_common::atmos_dyn_fct(), scale_atmos_dyn_common::atmos_dyn_filter_setup(), scale_atmos_dyn_common::atmos_dyn_filter_tend(), scale_atmos_dyn_common::atmos_dyn_numfilter_coef(), scale_atmos_dyn_common::atmos_dyn_numfilter_coef_q(), scale_atmos_dyn_tinteg_short_rk3::atmos_dyn_tinteg_short_rk3(), scale_atmos_dyn_tinteg_short_rk4::atmos_dyn_tinteg_short_rk4(), scale_atmos_dyn_tinteg_tracer_rk3::atmos_dyn_tinteg_tracer_rk3(), scale_atmos_dyn_tstep_large_fvm_heve::atmos_dyn_tstep_large_fvm_heve(), scale_atmos_dyn_tstep_short_fvm_heve::atmos_dyn_tstep_short_fvm_heve(), scale_atmos_dyn_tstep_short_fvm_hevi::atmos_dyn_tstep_short_fvm_hevi(), scale_atmos_dyn_tstep_short_fvm_hivi::atmos_dyn_tstep_short_fvm_hivi(), scale_atmos_dyn_tstep_tracer_fvm_heve::atmos_dyn_tstep_tracer_fvm_heve(), mod_atmos_dyn_vars::atmos_dyn_vars_fillhalo(), mod_atmos_phy_ae_driver::atmos_phy_ae_driver(), scale_atmos_phy_ae_kajino13::atmos_phy_ae_kajino13(), scale_atmos_phy_ae_kajino13::atmos_phy_ae_kajino13_mkinit(), mod_atmos_phy_ae_vars::atmos_phy_ae_vars_fillhalo(), mod_atmos_phy_ch_driver::atmos_phy_ch_driver(), mod_atmos_phy_ch_vars::atmos_phy_ch_vars_fillhalo(), mod_atmos_phy_cp_driver::atmos_phy_cp_driver(), scale_atmos_phy_cp_kf::atmos_phy_cp_kf_setup(), mod_atmos_phy_cp_vars::atmos_phy_cp_vars_fillhalo(), mod_atmos_phy_mp_driver::atmos_phy_mp_driver(), scale_atmos_phy_mp_kessler::atmos_phy_mp_kessler(), scale_atmos_phy_mp_kessler::atmos_phy_mp_kessler_cloudfraction(), scale_atmos_phy_mp_common::atmos_phy_mp_precipitation(), scale_atmos_phy_mp_common::atmos_phy_mp_saturation_adjustment(), scale_atmos_phy_mp_sn14::atmos_phy_mp_sn14(), scale_atmos_phy_mp_sn14::atmos_phy_mp_sn14_cloudfraction(), scale_atmos_phy_mp_sn14::atmos_phy_mp_sn14_effectiveradius(), scale_atmos_phy_mp_suzuki10::atmos_phy_mp_suzuki10(), scale_atmos_phy_mp_suzuki10::atmos_phy_mp_suzuki10_cloudfraction(), scale_atmos_phy_mp_suzuki10::atmos_phy_mp_suzuki10_effectiveradius(), scale_atmos_phy_mp_suzuki10::atmos_phy_mp_suzuki10_mixingratio(), scale_atmos_phy_mp_tomita08::atmos_phy_mp_tomita08(), scale_atmos_phy_mp_tomita08::atmos_phy_mp_tomita08_cloudfraction(), scale_atmos_phy_mp_tomita08::atmos_phy_mp_tomita08_effectiveradius(), scale_atmos_phy_mp_tomita08::atmos_phy_mp_tomita08_setup(), mod_atmos_phy_rd_driver::atmos_phy_rd_driver(), scale_atmos_phy_rd_common::atmos_phy_rd_heating(), scale_atmos_phy_rd_mstrnx::atmos_phy_rd_mstrnx(), scale_atmos_phy_rd_offline::atmos_phy_rd_offline(), scale_atmos_phy_sf_bulk::atmos_phy_sf_bulk(), scale_atmos_phy_sf_const::atmos_phy_sf_const(), mod_atmos_phy_sf_driver::atmos_phy_sf_driver(), scale_atmos_phy_tb_common::atmos_phy_tb_calc_strain_tensor(), scale_atmos_phy_tb_d1980::atmos_phy_tb_d1980(), scale_atmos_phy_tb_d1980::atmos_phy_tb_d1980_setup(), scale_atmos_phy_tb_dns::atmos_phy_tb_dns(), mod_atmos_phy_tb_driver::atmos_phy_tb_driver(), mod_atmos_phy_tb_driver::atmos_phy_tb_driver_setup(), scale_atmos_phy_tb_mynn::atmos_phy_tb_mynn(), scale_atmos_phy_tb_mynn::atmos_phy_tb_mynn_setup(), scale_atmos_phy_tb_smg::atmos_phy_tb_smg(), scale_atmos_phy_tb_smg::atmos_phy_tb_smg_setup(), scale_atmos_solarins::atmos_solarins_insolation_2d(), mod_atmos_vars::atmos_vars_history(), mod_atmos_vars::atmos_vars_monitor(), mod_atmos_vars::atmos_vars_restart_check(), mod_atmos_vars::atmos_vars_total(), scale_atmos_phy_mp_sn14::aut_acc_slc_brk_kij(), scale_atmos_dyn_common::calc_diff3(), scale_atmos_dyn_tstep_large_fvm_heve::check_mass(), mod_cnvlanduse::cnvlanduse(), mod_cnvtopo::cnvtopo(), mod_cnvtopo::cnvtopo_hypdiff(), mod_cnvtopo::cnvtopo_setup(), scale_comm::comm_horizontal_max_2d(), scale_comm::comm_horizontal_mean(), scale_comm::comm_horizontal_min_2d(), mod_land_vars::convert_ws2vwc(), scale_atmos_phy_cp_kf::cp_kf_main(), mod_cpl_vars::cpl_getatm_lnd(), mod_cpl_vars::cpl_getatm_ocn(), mod_cpl_vars::cpl_getatm_urb(), mod_cpl_vars::cpl_getsfc_atm(), mod_cpl_vars::cpl_putatm(), mod_cpl_vars::cpl_putlnd(), mod_cpl_vars::cpl_putocn(), mod_cpl_vars::cpl_puturb(), scale_atmos_phy_mp_sn14::debug_tem_kij(), scale_atmos_phy_mp_sn14::dep_vapor_melt_ice_kij(), scale_fileio::fileio_write_var_2d(), scale_fileio::fileio_write_var_3d(), scale_fileio::fileio_write_var_3d_t(), scale_fileio::fileio_write_var_4d(), mod_mkinit::flux_setup(), scale_atmos_phy_mp_sn14::freezing_water_kij(), scale_atmos_phy_tb_mynn::get_length(), scale_atmos_phy_tb_mynn::get_q2_level2(), grid_index_setup(), scale_grid::grid_setup(), scale_gridtrans::gtrans_rotcoef(), scale_history::hist_put_2d(), scale_history::hist_put_3d(), scale_history::hist_setup(), scale_atmos_phy_mp_sn14::ice_multiplication_kij(), mod_mkinit::interporation_fact(), scale_interpolation_nest::intrpnest_interp_fact_latlon(), scale_interpolation_nest::intrpnest_interp_fact_llz(), scale_atmos_phy_cp_kf::kf_wmean(), mod_land_driver::land_driver(), mod_land_phy_driver::land_phy_driver(), scale_land_phy_slab::land_phy_slab(), mod_mkinit::land_setup(), scale_land_sfc_const::land_sfc_const(), scale_land_sfc_thick_slab::land_sfc_thick_slab(), scale_land_sfc_thin_slab::land_sfc_thin_slab(), mod_land_driver::land_surface_get(), mod_land_vars::land_vars_history(), mod_land_vars::land_vars_setup(), scale_atmos_dyn_tstep_short_fvm_hivi::make_matrix(), scale_atmos_phy_mp_sn14::mixed_phase_collection_kij(), mod_mkinit::mkinit(), scale_atmos_phy_mp_sn14::mp_negativefilter(), scale_grid_nest::nest_domain_shape(), scale_atmos_phy_mp_sn14::nucleation_kij(), mod_ocean_driver::ocean_driver(), mod_ocean_phy_driver::ocean_phy_driver(), scale_ocean_phy_file::ocean_phy_file(), scale_ocean_phy_file::ocean_phy_file_setup(), scale_ocean_phy_slab::ocean_phy_slab(), mod_mkinit::ocean_setup(), scale_ocean_sfc_const::ocean_sfc_const(), scale_ocean_sfc::ocean_sfc_simplealbedo(), scale_ocean_sfc_slab::ocean_sfc_slab(), mod_ocean_driver::ocean_surface_get(), mod_ocean_vars::ocean_vars_history(), mod_mkinit::read_sounding(), scale_grid_real::real_calc_areavol(), scale_grid_real::real_update_z(), mod_mkinit::rect_setup(), scale_roughness::roughness_setup(), scale_atmos_dyn_tstep_short_fvm_hivi::solve_bicgstab(), scale_rm_statistics::stat_detail(), scale_rm_statistics::stat_total_2d(), scale_rm_statistics::stat_total_3d(), scale_atmos_phy_rd_mm5sw::swrad(), scale_atmos_phy_mp_sn14::update_by_phase_change_kij(), mod_urban_driver::urban_driver(), mod_urban_phy_driver::urban_phy_driver(), scale_urban_phy_slc::urban_phy_slc(), scale_urban_phy_slc::urban_phy_slc_setup(), mod_mkinit::urban_setup(), mod_urban_driver::urban_surface_get(), mod_urban_vars::urban_vars_history(), scale_comm::vars8_2d_mpi(), scale_comm::vars8_3d_mpi(), scale_comm::vars_2d_mpi(), scale_comm::vars_init_mpi_pc(), and scale_comm::wait_3d_mpi().

63  integer, public :: JE

◆ kijmax

integer, public scale_grid_index::kijmax = -1

of computational cells: z*x*y

Definition at line 65 of file scale_grid_index.F90.

Referenced by grid_index_setup().

65  integer, public :: KIJMAX = -1

◆ imaxb

integer, public scale_grid_index::imaxb

◆ jmaxb

integer, public scale_grid_index::jmaxb

◆ isb

integer, public scale_grid_index::isb

Definition at line 71 of file scale_grid_index.F90.

Referenced by scale_atmos_bottom::atmos_bottom_estimate(), scale_atmos_boundary::atmos_boundary_resume(), scale_atmos_dyn_tstep_large_fvm_heve::atmos_dyn_tstep_large_fvm_heve(), scale_atmos_hydrometeor::atmos_hydrometeor_entr_2d(), scale_atmos_hydrometeor::atmos_hydrometeor_entr_3d(), scale_atmos_hydrometeor::atmos_hydrometeor_lhf_2d(), scale_atmos_hydrometeor::atmos_hydrometeor_lhf_3d(), scale_atmos_hydrometeor::atmos_hydrometeor_lhs_2d(), scale_atmos_hydrometeor::atmos_hydrometeor_lhs_3d(), scale_atmos_hydrometeor::atmos_hydrometeor_lhv_2d(), scale_atmos_hydrometeor::atmos_hydrometeor_lhv_3d(), scale_atmos_hydrostatic::atmos_hydrostatic_barometric_law_mslp_0d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_3d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_atmos_1d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_atmos_3d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_atmos_rev_2d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_atmos_rev_3d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_bytemp_3d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_bytemp_atmos_3d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_real_3d(), scale_atmos_phy_mp_common::atmos_phy_mp_negative_fixer(), scale_atmos_phy_mp_common::atmos_phy_mp_saturation_adjustment(), scale_atmos_refstate::atmos_refstate_calc3d(), scale_atmos_saturation::atmos_saturation_alpha_0d(), scale_atmos_saturation::atmos_saturation_dqsi_dtem_dpre(), scale_atmos_saturation::atmos_saturation_dqsi_dtem_rho(), scale_atmos_saturation::atmos_saturation_dqsw_dtem_dpre(), scale_atmos_saturation::atmos_saturation_dqsw_dtem_rho(), scale_atmos_thermodyn::atmos_thermodyn_setup(), scale_atmos_thermodyn::atmos_thermodyn_tempre(), scale_atmos_thermodyn::atmos_thermodyn_tempre2(), mod_atmos_vars::atmos_vars_fillhalo(), mod_atmos_vars::atmos_vars_history(), scale_fileio::construct_derived_datatype(), scale_external_input_rm::extin_rm_get_dims_1d(), scale_external_input_rm::extin_rm_get_dims_2d(), scale_external_input_rm::extin_rm_get_dims_3d(), scale_fileio::fileio_check_coordinates_name(), scale_fileio::fileio_read_var_1d(), scale_fileio::fileio_read_var_2d(), scale_fileio::fileio_read_var_3d(), scale_fileio::fileio_read_var_4d(), scale_fileio::fileio_setup(), scale_fileio::fileio_write_var_1d(), scale_fileio::fileio_write_var_2d(), scale_fileio::fileio_write_var_3d(), scale_fileio::fileio_write_var_3d_t(), scale_fileio::fileio_write_var_4d(), grid_index_setup(), scale_history::hist_setup(), scale_interpolation::interp_update_pres(), scale_interpolation::interp_vertical_xi2p(), scale_interpolation::interp_vertical_xi2z(), and scale_interpolation::interp_vertical_z2xi().

71  integer, public :: ISB

◆ ieb

integer, public scale_grid_index::ieb

Definition at line 72 of file scale_grid_index.F90.

Referenced by scale_atmos_bottom::atmos_bottom_estimate(), scale_atmos_boundary::atmos_boundary_resume(), scale_atmos_dyn_tstep_large_fvm_heve::atmos_dyn_tstep_large_fvm_heve(), scale_atmos_hydrometeor::atmos_hydrometeor_entr_2d(), scale_atmos_hydrometeor::atmos_hydrometeor_entr_3d(), scale_atmos_hydrometeor::atmos_hydrometeor_lhf_2d(), scale_atmos_hydrometeor::atmos_hydrometeor_lhf_3d(), scale_atmos_hydrometeor::atmos_hydrometeor_lhs_2d(), scale_atmos_hydrometeor::atmos_hydrometeor_lhs_3d(), scale_atmos_hydrometeor::atmos_hydrometeor_lhv_2d(), scale_atmos_hydrometeor::atmos_hydrometeor_lhv_3d(), scale_atmos_hydrostatic::atmos_hydrostatic_barometric_law_mslp_0d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_3d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_atmos_1d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_atmos_3d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_atmos_rev_2d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_atmos_rev_3d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_bytemp_3d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_bytemp_atmos_3d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_real_3d(), scale_atmos_phy_mp_common::atmos_phy_mp_negative_fixer(), scale_atmos_phy_mp_common::atmos_phy_mp_saturation_adjustment(), scale_atmos_refstate::atmos_refstate_calc3d(), scale_atmos_saturation::atmos_saturation_alpha_0d(), scale_atmos_saturation::atmos_saturation_dqsi_dtem_dpre(), scale_atmos_saturation::atmos_saturation_dqsi_dtem_rho(), scale_atmos_saturation::atmos_saturation_dqsw_dtem_dpre(), scale_atmos_saturation::atmos_saturation_dqsw_dtem_rho(), scale_atmos_thermodyn::atmos_thermodyn_setup(), scale_atmos_thermodyn::atmos_thermodyn_tempre(), scale_atmos_thermodyn::atmos_thermodyn_tempre2(), mod_atmos_vars::atmos_vars_fillhalo(), mod_atmos_vars::atmos_vars_history(), scale_external_input_rm::extin_rm_get_dims_1d(), scale_external_input_rm::extin_rm_get_dims_2d(), scale_external_input_rm::extin_rm_get_dims_3d(), scale_fileio::fileio_check_coordinates_name(), scale_fileio::fileio_read_var_1d(), scale_fileio::fileio_read_var_2d(), scale_fileio::fileio_read_var_3d(), scale_fileio::fileio_read_var_4d(), scale_fileio::fileio_setup(), scale_fileio::fileio_write_var_1d(), scale_fileio::fileio_write_var_2d(), scale_fileio::fileio_write_var_3d(), scale_fileio::fileio_write_var_3d_t(), scale_fileio::fileio_write_var_4d(), grid_index_setup(), scale_history::hist_setup(), scale_interpolation::interp_update_pres(), scale_interpolation::interp_vertical_xi2p(), scale_interpolation::interp_vertical_xi2z(), and scale_interpolation::interp_vertical_z2xi().

72  integer, public :: IEB

◆ jsb

integer, public scale_grid_index::jsb

Definition at line 73 of file scale_grid_index.F90.

Referenced by scale_atmos_bottom::atmos_bottom_estimate(), scale_atmos_boundary::atmos_boundary_resume(), scale_atmos_dyn_tstep_large_fvm_heve::atmos_dyn_tstep_large_fvm_heve(), scale_atmos_hydrometeor::atmos_hydrometeor_entr_2d(), scale_atmos_hydrometeor::atmos_hydrometeor_entr_3d(), scale_atmos_hydrometeor::atmos_hydrometeor_lhf_2d(), scale_atmos_hydrometeor::atmos_hydrometeor_lhf_3d(), scale_atmos_hydrometeor::atmos_hydrometeor_lhs_2d(), scale_atmos_hydrometeor::atmos_hydrometeor_lhs_3d(), scale_atmos_hydrometeor::atmos_hydrometeor_lhv_2d(), scale_atmos_hydrometeor::atmos_hydrometeor_lhv_3d(), scale_atmos_hydrostatic::atmos_hydrostatic_barometric_law_mslp_0d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_3d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_atmos_1d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_atmos_3d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_atmos_rev_2d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_atmos_rev_3d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_bytemp_3d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_bytemp_atmos_3d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_real_3d(), scale_atmos_phy_mp_common::atmos_phy_mp_negative_fixer(), scale_atmos_phy_mp_common::atmos_phy_mp_saturation_adjustment(), scale_atmos_refstate::atmos_refstate_calc3d(), scale_atmos_saturation::atmos_saturation_alpha_0d(), scale_atmos_saturation::atmos_saturation_dqsi_dtem_dpre(), scale_atmos_saturation::atmos_saturation_dqsi_dtem_rho(), scale_atmos_saturation::atmos_saturation_dqsw_dtem_dpre(), scale_atmos_saturation::atmos_saturation_dqsw_dtem_rho(), scale_atmos_thermodyn::atmos_thermodyn_setup(), scale_atmos_thermodyn::atmos_thermodyn_tempre(), scale_atmos_thermodyn::atmos_thermodyn_tempre2(), mod_atmos_vars::atmos_vars_fillhalo(), mod_atmos_vars::atmos_vars_history(), scale_external_input_rm::extin_rm_get_dims_1d(), scale_external_input_rm::extin_rm_get_dims_2d(), scale_external_input_rm::extin_rm_get_dims_3d(), scale_fileio::fileio_check_coordinates_name(), scale_fileio::fileio_read_var_1d(), scale_fileio::fileio_read_var_2d(), scale_fileio::fileio_read_var_3d(), scale_fileio::fileio_read_var_4d(), scale_fileio::fileio_setup(), scale_fileio::fileio_write_var_1d(), scale_fileio::fileio_write_var_2d(), scale_fileio::fileio_write_var_3d(), scale_fileio::fileio_write_var_3d_t(), scale_fileio::fileio_write_var_4d(), grid_index_setup(), scale_history::hist_setup(), scale_interpolation::interp_update_pres(), scale_interpolation::interp_vertical_xi2p(), scale_interpolation::interp_vertical_xi2z(), and scale_interpolation::interp_vertical_z2xi().

73  integer, public :: JSB

◆ jeb

integer, public scale_grid_index::jeb

Definition at line 74 of file scale_grid_index.F90.

Referenced by scale_atmos_bottom::atmos_bottom_estimate(), scale_atmos_boundary::atmos_boundary_resume(), scale_atmos_dyn_tstep_large_fvm_heve::atmos_dyn_tstep_large_fvm_heve(), scale_atmos_hydrometeor::atmos_hydrometeor_entr_2d(), scale_atmos_hydrometeor::atmos_hydrometeor_entr_3d(), scale_atmos_hydrometeor::atmos_hydrometeor_lhf_2d(), scale_atmos_hydrometeor::atmos_hydrometeor_lhf_3d(), scale_atmos_hydrometeor::atmos_hydrometeor_lhs_2d(), scale_atmos_hydrometeor::atmos_hydrometeor_lhs_3d(), scale_atmos_hydrometeor::atmos_hydrometeor_lhv_2d(), scale_atmos_hydrometeor::atmos_hydrometeor_lhv_3d(), scale_atmos_hydrostatic::atmos_hydrostatic_barometric_law_mslp_0d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_3d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_atmos_1d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_atmos_3d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_atmos_rev_2d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_atmos_rev_3d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_bytemp_3d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_bytemp_atmos_3d(), scale_atmos_hydrostatic::atmos_hydrostatic_buildrho_real_3d(), scale_atmos_phy_mp_common::atmos_phy_mp_negative_fixer(), scale_atmos_phy_mp_common::atmos_phy_mp_saturation_adjustment(), scale_atmos_refstate::atmos_refstate_calc3d(), scale_atmos_saturation::atmos_saturation_alpha_0d(), scale_atmos_saturation::atmos_saturation_dqsi_dtem_dpre(), scale_atmos_saturation::atmos_saturation_dqsi_dtem_rho(), scale_atmos_saturation::atmos_saturation_dqsw_dtem_dpre(), scale_atmos_saturation::atmos_saturation_dqsw_dtem_rho(), scale_atmos_thermodyn::atmos_thermodyn_setup(), scale_atmos_thermodyn::atmos_thermodyn_tempre(), scale_atmos_thermodyn::atmos_thermodyn_tempre2(), mod_atmos_vars::atmos_vars_fillhalo(), mod_atmos_vars::atmos_vars_history(), scale_external_input_rm::extin_rm_get_dims_1d(), scale_external_input_rm::extin_rm_get_dims_2d(), scale_external_input_rm::extin_rm_get_dims_3d(), scale_fileio::fileio_check_coordinates_name(), scale_fileio::fileio_read_var_1d(), scale_fileio::fileio_read_var_2d(), scale_fileio::fileio_read_var_3d(), scale_fileio::fileio_read_var_4d(), scale_fileio::fileio_setup(), scale_fileio::fileio_write_var_1d(), scale_fileio::fileio_write_var_2d(), scale_fileio::fileio_write_var_3d(), scale_fileio::fileio_write_var_3d_t(), scale_fileio::fileio_write_var_4d(), grid_index_setup(), scale_history::hist_setup(), scale_interpolation::interp_update_pres(), scale_interpolation::interp_vertical_xi2p(), scale_interpolation::interp_vertical_xi2z(), and scale_interpolation::interp_vertical_z2xi().

74  integer, public :: JEB

◆ ieh

integer, public scale_grid_index::ieh

end point of inner domain: x, local (half level)

Definition at line 75 of file scale_grid_index.F90.

Referenced by scale_atmos_dyn_tstep_short_fvm_heve::atmos_dyn_tstep_short_fvm_heve(), scale_atmos_dyn_tstep_short_fvm_hevi::atmos_dyn_tstep_short_fvm_hevi(), and grid_index_setup().

75  integer, public :: IEH

◆ jeh

integer, public scale_grid_index::jeh

end point of inner domain: y, local (half level)

Definition at line 76 of file scale_grid_index.F90.

Referenced by scale_atmos_dyn_tstep_short_fvm_heve::atmos_dyn_tstep_short_fvm_heve(), scale_atmos_dyn_tstep_short_fvm_hevi::atmos_dyn_tstep_short_fvm_hevi(), and grid_index_setup().

76  integer, public :: JEH

◆ imaxg

integer, public scale_grid_index::imaxg = -1

of computational cells: x, global

Definition at line 79 of file scale_grid_index.F90.

Referenced by scale_grid::grid_generate(), grid_index_setup(), and scale_history::hist_setup().

79  integer, public :: IMAXG = -1

◆ jmaxg

integer, public scale_grid_index::jmaxg = -1

of computational cells: y, global

Definition at line 80 of file scale_grid_index.F90.

Referenced by scale_grid::grid_generate(), grid_index_setup(), and scale_history::hist_setup().

80  integer, public :: JMAXG = -1

◆ iag

integer, public scale_grid_index::iag

◆ jag

integer, public scale_grid_index::jag

◆ iagb

integer, public scale_grid_index::iagb

of computational grids

Definition at line 83 of file scale_grid_index.F90.

Referenced by grid_index_setup(), and scale_history::hist_setup().

83  integer, public :: IAGB

◆ jagb

integer, public scale_grid_index::jagb

of computational grids

Definition at line 84 of file scale_grid_index.F90.

Referenced by grid_index_setup(), and scale_history::hist_setup().

84  integer, public :: JAGB

◆ is_ing

integer, public scale_grid_index::is_ing

start point of the inner domain: cx, global

Definition at line 85 of file scale_grid_index.F90.

Referenced by scale_fileio::construct_derived_datatype(), scale_fileio::fileio_read_var_1d(), and grid_index_setup().

85  integer, public :: IS_inG

◆ ie_ing

integer, public scale_grid_index::ie_ing

end point of the inner domain: cx, global

Definition at line 86 of file scale_grid_index.F90.

Referenced by grid_index_setup().

86  integer, public :: IE_inG

◆ js_ing

integer, public scale_grid_index::js_ing

start point of the inner domain: cy, global

Definition at line 87 of file scale_grid_index.F90.

Referenced by scale_fileio::construct_derived_datatype(), scale_fileio::fileio_read_var_1d(), and grid_index_setup().

87  integer, public :: JS_inG

◆ je_ing

integer, public scale_grid_index::je_ing

end point of the inner domain: cy, global

Definition at line 88 of file scale_grid_index.F90.

Referenced by grid_index_setup().

88  integer, public :: JE_inG

◆ isga

integer, public scale_grid_index::isga

◆ iega

integer, public scale_grid_index::iega

end point of the full domain: cx, global

Definition at line 90 of file scale_grid_index.F90.

Referenced by grid_index_setup().

90  integer, public :: IEGA

◆ jsga

integer, public scale_grid_index::jsga

◆ jega

integer, public scale_grid_index::jega

end point of the full domain: cy, global

Definition at line 92 of file scale_grid_index.F90.

Referenced by grid_index_setup().

92  integer, public :: JEGA

◆ isgb

integer, public scale_grid_index::isgb

start point of the inner domain: x, global

Definition at line 93 of file scale_grid_index.F90.

Referenced by grid_index_setup(), scale_history::hist_reg(), and scale_history::hist_setup().

93  integer, public :: ISGB

◆ iegb

integer, public scale_grid_index::iegb

end point of the inner domain: x, global

Definition at line 94 of file scale_grid_index.F90.

Referenced by grid_index_setup().

94  integer, public :: IEGB

◆ jsgb

integer, public scale_grid_index::jsgb

start point of the inner domain: y, global

Definition at line 95 of file scale_grid_index.F90.

Referenced by grid_index_setup(), scale_history::hist_reg(), and scale_history::hist_setup().

95  integer, public :: JSGB

◆ jegb

integer, public scale_grid_index::jegb

end point of the inner domain: y, global

Definition at line 96 of file scale_grid_index.F90.

Referenced by grid_index_setup().

96  integer, public :: JEGB