SCALE-RM
Functions/Subroutines | Variables
mod_atmos_dyn_vars Module Reference

module Atmosphere / Dynamics More...

Functions/Subroutines

subroutine, public atmos_dyn_vars_setup
 Setup. More...
 
subroutine, public atmos_dyn_vars_fillhalo
 HALO Communication. More...
 
subroutine, public atmos_dyn_vars_restart_open
 Open restart file for read. More...
 
subroutine, public atmos_dyn_vars_restart_read
 Read restart. More...
 
subroutine, public atmos_dyn_vars_restart_create
 Create restart file. More...
 
subroutine, public atmos_dyn_vars_restart_enddef
 Exit netCDF define mode. More...
 
subroutine, public atmos_dyn_vars_restart_close
 Close restart file. More...
 
subroutine, public atmos_dyn_vars_restart_def_var
 Define variables in restart file. More...
 
subroutine, public atmos_dyn_vars_restart_write
 Write variables to restart file. More...
 
subroutine atmos_dyn_vars_check
 

Variables

logical, public atmos_dyn_restart_output = .false.
 output restart file? More...
 
character(len=h_long), public atmos_dyn_restart_in_basename = ''
 Basename of the input file. More...
 
logical, public atmos_dyn_restart_in_aggregate
 Switch to use aggregate file. More...
 
logical, public atmos_dyn_restart_in_postfix_timelabel = .false.
 Add timelabel to the basename of input file? More...
 
character(len=h_long), public atmos_dyn_restart_out_basename = ''
 Basename of the output file. More...
 
logical, public atmos_dyn_restart_out_aggregate
 Switch to use aggregate file. More...
 
logical, public atmos_dyn_restart_out_postfix_timelabel = .true.
 Add timelabel to the basename of output file? More...
 
character(len=h_mid), public atmos_dyn_restart_out_title = 'ATMOS_DYN restart'
 title of the output file More...
 
character(len=h_short), public atmos_dyn_restart_out_dtype = 'DEFAULT'
 REAL4 or REAL8. More...
 
real(rp), dimension(:,:,:,:), allocatable, public prog
 

Detailed Description

module Atmosphere / Dynamics

Description
Container for mod_atmos_dyn
Author
Team SCALE
NAMELIST
  • PARAM_ATMOS_DYN_VARS
    nametypedefault valuecomment
    ATMOS_DYN_RESTART_IN_BASENAME character(len=H_LONG) '' Basename of the input file
    ATMOS_DYN_RESTART_IN_AGGREGATE logical Switch to use aggregate file
    ATMOS_DYN_RESTART_IN_POSTFIX_TIMELABEL logical .false. Add timelabel to the basename of input file?
    ATMOS_DYN_RESTART_OUTPUT logical .false. output restart file?
    ATMOS_DYN_RESTART_OUT_BASENAME character(len=H_LONG) '' Basename of the output file
    ATMOS_DYN_RESTART_OUT_AGGREGATE logical Switch to use aggregate file
    ATMOS_DYN_RESTART_OUT_POSTFIX_TIMELABEL logical .true. Add timelabel to the basename of output file?
    ATMOS_DYN_RESTART_OUT_TITLE character(len=H_MID) 'ATMOS_DYN restart' title of the output file
    ATMOS_DYN_RESTART_OUT_DTYPE character(len=H_SHORT) 'DEFAULT' REAL4 or REAL8

History Output
No history output

Function/Subroutine Documentation

◆ atmos_dyn_vars_setup()

subroutine, public mod_atmos_dyn_vars::atmos_dyn_vars_setup

Setup.

Definition at line 80 of file mod_atmos_dyn_vars.F90.

80  use scale_prc, only: &
81  prc_abort
82  use scale_const, only: &
83  undef => const_undef
84  use mod_atmos_admin, only: &
86  use scale_atmos_dyn_tstep_short, only: &
88  implicit none
89 
90  namelist / param_atmos_dyn_vars / &
91  atmos_dyn_restart_in_basename, &
92  atmos_dyn_restart_in_aggregate, &
93  atmos_dyn_restart_in_postfix_timelabel, &
94  atmos_dyn_restart_output, &
95  atmos_dyn_restart_out_basename, &
96  atmos_dyn_restart_out_aggregate, &
97  atmos_dyn_restart_out_postfix_timelabel, &
98  atmos_dyn_restart_out_title, &
99  atmos_dyn_restart_out_dtype
100 
101  integer :: ierr
102  integer :: iv
103  !---------------------------------------------------------------------------
104 
105  log_newline
106  log_info("ATMOS_DYN_vars_setup",*) 'Setup'
107 
108  !--- read namelist
109  rewind(io_fid_conf)
110  read(io_fid_conf,nml=param_atmos_dyn_vars,iostat=ierr)
111  if( ierr < 0 ) then !--- missing
112  log_info("ATMOS_DYN_vars_setup",*) 'Not found namelist. Default used.'
113  elseif( ierr > 0 ) then !--- fatal error
114  log_error("ATMOS_DYN_vars_setup",*) 'Not appropriate names in namelist PARAM_ATMOS_DYN_VARS. Check!'
115  call prc_abort
116  endif
117  log_nml(param_atmos_dyn_vars)
118 
120  va, & ! [OUT]
121  var_name, & ! [OUT]
122  var_desc, & ! [OUT]
123  var_unit ) ! [OUT]
124 
125  if ( va > 0 ) then ! additional prognostic variables
126 
127  if ( va > vmax ) then
128  log_error("ATMOS_DYN_vars_setup",*) 'number of the prognostic variables is exceed the limit', va, ' > ', vmax
129  call prc_abort
130  endif
131  allocate( prog(ka,ia,ja,va) )
132  prog(:,:,:,:) = undef
133 
134  log_newline
135  log_info("ATMOS_DYN_vars_setup",*) '[ATMOS_DYN] prognostic/diagnostic variables'
136  log_info_cont('(1x,A,A24,A,A48,A,A12,A)') &
137  ' |', 'VARNAME ','|', &
138  'DESCRIPTION ', '[', 'UNIT ', ']'
139  do iv = 1, va
140  log_info_cont('(1x,A,I3,A,A24,A,A48,A,A12,A)') &
141  'NO.',iv,'|',var_name(iv),'|',var_desc(iv),'[',var_unit(iv),']'
142  enddo
143 
144  log_newline
145  if ( atmos_dyn_restart_in_basename /= '' ) then
146  log_info("ATMOS_DYN_vars_setup",*) 'Restart input? : YES, file = ', trim(atmos_dyn_restart_in_basename)
147  log_info("ATMOS_DYN_vars_setup",*) 'Add timelabel? : ', atmos_dyn_restart_in_postfix_timelabel
148  else
149  log_info("ATMOS_DYN_vars_setup",*) 'Restart input? : NO'
150  endif
151  if ( atmos_dyn_restart_output &
152  .AND. atmos_dyn_restart_out_basename /= '' ) then
153  log_info("ATMOS_DYN_vars_setup",*) 'Restart output? : YES, file = ', trim(atmos_dyn_restart_out_basename)
154  log_info("ATMOS_DYN_vars_setup",*) 'Add timelabel? : ', atmos_dyn_restart_out_postfix_timelabel
155  else
156  log_info("ATMOS_DYN_vars_setup",*) 'Restart output? : NO'
157  atmos_dyn_restart_output = .false.
158  endif
159 
160  else ! no additional prognostic variables
161 
162  allocate( prog(ka,ia,ja,1) ) ! for safety
163  prog(:,:,:,:) = undef
164  atmos_dyn_restart_output = .false.
165 
166  endif
167 
168  return

References atmos_dyn_restart_in_aggregate, atmos_dyn_restart_in_basename, atmos_dyn_restart_in_postfix_timelabel, atmos_dyn_restart_out_aggregate, atmos_dyn_restart_out_basename, atmos_dyn_restart_out_dtype, atmos_dyn_restart_out_postfix_timelabel, atmos_dyn_restart_out_title, atmos_dyn_restart_output, scale_atmos_dyn_tstep_short::atmos_dyn_tstep_short_regist(), mod_atmos_admin::atmos_dyn_type, scale_const::const_undef, scale_atmos_grid_cartesc_index::ia, scale_io::io_fid_conf, scale_atmos_grid_cartesc_index::ja, scale_atmos_grid_cartesc_index::ka, scale_prc::prc_abort(), prog, and scale_index::va.

Referenced by mod_atmos_vars::atmos_vars_setup().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ atmos_dyn_vars_fillhalo()

subroutine, public mod_atmos_dyn_vars::atmos_dyn_vars_fillhalo

HALO Communication.

Definition at line 174 of file mod_atmos_dyn_vars.F90.

174  use scale_comm_cartesc, only: &
175  comm_vars8, &
176  comm_wait
177  implicit none
178 
179  integer :: i, j, iv
180  !---------------------------------------------------------------------------
181 
182  do iv = 1, va
183  do j = js, je
184  do i = is, ie
185  prog( 1:ks-1,i,j,iv) = prog(ks,i,j,iv)
186  prog(ke+1:ka, i,j,iv) = prog(ke,i,j,iv)
187  enddo
188  enddo
189 
190  call comm_vars8( prog(:,:,:,iv), iv )
191  enddo
192 
193  do iv = 1, va
194  call comm_wait ( prog(:,:,:,iv), iv )
195  enddo
196 
197  return

References scale_atmos_grid_cartesc_index::ie, scale_atmos_grid_cartesc_index::is, scale_atmos_grid_cartesc_index::je, scale_atmos_grid_cartesc_index::js, scale_atmos_grid_cartesc_index::ka, scale_atmos_grid_cartesc_index::ke, scale_atmos_grid_cartesc_index::ks, prog, and scale_index::va.

Referenced by atmos_dyn_vars_restart_read(), and atmos_dyn_vars_restart_write().

Here is the caller graph for this function:

◆ atmos_dyn_vars_restart_open()

subroutine, public mod_atmos_dyn_vars::atmos_dyn_vars_restart_open

Open restart file for read.

Definition at line 203 of file mod_atmos_dyn_vars.F90.

203  use scale_time, only: &
205  use scale_file_cartesc, only: &
207  implicit none
208 
209  character(len=19) :: timelabel
210  character(len=H_LONG) :: basename
211  !---------------------------------------------------------------------------
212 
213  if ( va < 1 ) return
214 
215  log_newline
216  log_info("ATMOS_DYN_vars_restart_open",*) 'Open restart file (ATMOS_DYN) '
217 
218  if ( atmos_dyn_restart_in_basename /= '' ) then
219 
220  if ( atmos_dyn_restart_in_postfix_timelabel ) then
221  call time_gettimelabel( timelabel )
222  basename = trim(atmos_dyn_restart_in_basename)//'_'//trim(timelabel)
223  else
224  basename = trim(atmos_dyn_restart_in_basename)
225  endif
226 
227  log_info("ATMOS_DYN_vars_restart_open",*) 'basename: ', trim(basename)
228 
229  call file_cartesc_open( basename, restart_fid, aggregate=atmos_dyn_restart_in_aggregate )
230  else
231  log_info("ATMOS_DYN_vars_restart_open",*) 'restart file for ATMOS_DYN is not specified.'
232  endif
233 
234  return

References atmos_dyn_restart_in_aggregate, atmos_dyn_restart_in_basename, atmos_dyn_restart_in_postfix_timelabel, scale_file_cartesc::file_cartesc_open(), scale_time::time_gettimelabel(), and scale_index::va.

Referenced by mod_atmos_vars::atmos_vars_restart_open().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ atmos_dyn_vars_restart_read()

subroutine, public mod_atmos_dyn_vars::atmos_dyn_vars_restart_read

Read restart.

Definition at line 240 of file mod_atmos_dyn_vars.F90.

240  use scale_prc, only: &
241  prc_abort
242  use scale_file, only: &
244  use scale_file_cartesc, only: &
245  file_cartesc_read, &
247  implicit none
248 
249  integer :: i, j, iv
250  !---------------------------------------------------------------------------
251 
252  if ( restart_fid /= -1 ) then
253  log_newline
254  log_info("ATMOS_DYN_vars_restart_read",*) 'Read from restart file (ATMOS_DYN) '
255 
256  do iv = 1, va
257  call file_cartesc_read( restart_fid, var_name(iv), 'ZXY', & ! [IN]
258  prog(:,:,:,iv) ) ! [OUT]
259  enddo
260 
261  if ( file_get_aggregate(restart_fid) ) then
262  call file_cartesc_flush( restart_fid )
263  ! X/Y halos have been read from file
264 
265  ! fill K halos
266  do iv = 1, va
267  do j = 1, ja
268  do i = 1, ia
269  prog( 1:ks-1,i,j,iv) = prog(ks,i,j,iv)
270  prog(ke+1:ka, i,j,iv) = prog(ke,i,j,iv)
271  enddo
272  enddo
273  enddo
274  else
275  call atmos_dyn_vars_fillhalo
276  end if
277 
278  call atmos_dyn_vars_check
279 
280  else
281  if ( va > 0 ) then
282  log_error("ATMOS_DYN_vars_restart_read",*) 'invalid restart file ID for ATMOS_DYN.'
283  call prc_abort
284  end if
285  endif
286 
287  return

References atmos_dyn_vars_check(), atmos_dyn_vars_fillhalo(), scale_file_cartesc::file_cartesc_flush(), scale_file::file_get_aggregate(), scale_atmos_grid_cartesc_index::ia, scale_atmos_grid_cartesc_index::ja, scale_atmos_grid_cartesc_index::ka, scale_atmos_grid_cartesc_index::ke, scale_atmos_grid_cartesc_index::ks, scale_prc::prc_abort(), prog, and scale_index::va.

Referenced by mod_atmos_vars::atmos_vars_restart_read().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ atmos_dyn_vars_restart_create()

subroutine, public mod_atmos_dyn_vars::atmos_dyn_vars_restart_create

Create restart file.

Definition at line 292 of file mod_atmos_dyn_vars.F90.

292  use scale_time, only: &
294  use scale_file_cartesc, only: &
296  implicit none
297 
298  character(len=19) :: timelabel
299  character(len=H_LONG) :: basename
300  !---------------------------------------------------------------------------
301 
302  if ( va < 1 ) return
303 
304  if ( atmos_dyn_restart_out_basename /= '' ) then
305 
306  log_newline
307  log_info("ATMOS_DYN_vars_restart_create",*) 'Create restart file (ATMOS_DYN) '
308 
309  if ( atmos_dyn_restart_out_postfix_timelabel ) then
310  call time_gettimelabel( timelabel )
311  basename = trim(atmos_dyn_restart_out_basename)//'_'//trim(timelabel)
312  else
313  basename = trim(atmos_dyn_restart_out_basename)
314  endif
315 
316  log_info("ATMOS_DYN_vars_restart_create",*) 'basename: ', trim(basename)
317 
318  call file_cartesc_create( &
319  basename, atmos_dyn_restart_out_title, atmos_dyn_restart_out_dtype, & ! [IN]
320  restart_fid, & ! [OUT]
321  aggregate=atmos_dyn_restart_out_aggregate ) ! [IN]
322 
323  endif
324 
325  return

References atmos_dyn_restart_out_aggregate, atmos_dyn_restart_out_basename, atmos_dyn_restart_out_dtype, atmos_dyn_restart_out_postfix_timelabel, atmos_dyn_restart_out_title, scale_file_cartesc::file_cartesc_create(), scale_time::time_gettimelabel(), and scale_index::va.

Referenced by mod_atmos_vars::atmos_vars_restart_create().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ atmos_dyn_vars_restart_enddef()

subroutine, public mod_atmos_dyn_vars::atmos_dyn_vars_restart_enddef

Exit netCDF define mode.

Definition at line 331 of file mod_atmos_dyn_vars.F90.

331  use scale_file_cartesc, only: &
333  implicit none
334 
335  if ( restart_fid /= -1 .and. va > 0 ) then
336  call file_cartesc_enddef( restart_fid ) ! [IN]
337  endif
338 
339  return

References scale_file_cartesc::file_cartesc_enddef(), and scale_index::va.

Referenced by mod_atmos_vars::atmos_vars_restart_enddef().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ atmos_dyn_vars_restart_close()

subroutine, public mod_atmos_dyn_vars::atmos_dyn_vars_restart_close

Close restart file.

Definition at line 345 of file mod_atmos_dyn_vars.F90.

345  use scale_file_cartesc, only: &
347  implicit none
348  !---------------------------------------------------------------------------
349 
350  if ( restart_fid /= -1 ) then
351  log_newline
352  log_info("ATMOS_DYN_vars_restart_close",*) 'Close restart file (ATMOS_DYN) '
353 
354  call file_cartesc_close( restart_fid ) ! [IN]
355 
356  restart_fid = -1
357  endif
358 
359  return

References scale_file_cartesc::file_cartesc_close().

Referenced by mod_atmos_vars::atmos_vars_restart_close().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ atmos_dyn_vars_restart_def_var()

subroutine, public mod_atmos_dyn_vars::atmos_dyn_vars_restart_def_var

Define variables in restart file.

Definition at line 365 of file mod_atmos_dyn_vars.F90.

365  use scale_file_cartesc, only: &
367  implicit none
368 
369  integer iv
370  !---------------------------------------------------------------------------
371 
372  if ( restart_fid /= -1 ) then
373 
374  do iv = 1, va
375  call file_cartesc_def_var( restart_fid, var_name(iv), var_desc(iv), var_unit(iv), 'ZXY', atmos_dyn_restart_out_dtype, &
376  var_id(iv) )
377  enddo
378 
379  endif
380 
381  return

References atmos_dyn_restart_out_dtype, scale_file_cartesc::file_cartesc_def_var(), and scale_index::va.

Referenced by mod_atmos_vars::atmos_vars_restart_def_var().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ atmos_dyn_vars_restart_write()

subroutine, public mod_atmos_dyn_vars::atmos_dyn_vars_restart_write

Write variables to restart file.

Definition at line 387 of file mod_atmos_dyn_vars.F90.

387  use scale_file_cartesc, only: &
388  file_cartesc_write_var
389  implicit none
390 
391  integer :: iv
392  !---------------------------------------------------------------------------
393 
394  if ( restart_fid /= -1 ) then
395 
396  call atmos_dyn_vars_fillhalo
397 
398  call atmos_dyn_vars_check
399 
400  do iv = 1, va
401  call file_cartesc_write_var( restart_fid, var_id(iv), prog(:,:,:,iv), var_name(iv), 'ZXY' ) ! [IN]
402  enddo
403 
404  endif
405 
406  return

References atmos_dyn_vars_check(), atmos_dyn_vars_fillhalo(), prog, and scale_index::va.

Referenced by mod_atmos_vars::atmos_vars_restart_write().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ atmos_dyn_vars_check()

subroutine mod_atmos_dyn_vars::atmos_dyn_vars_check

Definition at line 410 of file mod_atmos_dyn_vars.F90.

410  use scale_statistics, only: &
411  statistics_total
412  use scale_atmos_grid_cartesc_real, only: &
415  implicit none
416  integer :: iv
417 
418  do iv = 1, va
419  call valcheck( ka, ks, ke, ia, is, ie, ja, js, je, &
420  prog(:,:,:,iv), & ! (in)
421  -1.0e20_rp, 1.0e20_rp, var_name(iv), & ! (in)
422  __file__, __line__ ) ! (in)
423  call statistics_total( ka, ks, ke, ia, is, ie, ja, js, je, &
424  prog(:,:,:,iv), var_name(iv), & ! (in)
425  atmos_grid_cartesc_real_vol(:,:,:), & ! (in)
427  enddo
428 
429  return

References scale_atmos_grid_cartesc_real::atmos_grid_cartesc_real_totvol, scale_atmos_grid_cartesc_real::atmos_grid_cartesc_real_vol, scale_atmos_grid_cartesc_index::ia, scale_atmos_grid_cartesc_index::ie, scale_atmos_grid_cartesc_index::is, scale_atmos_grid_cartesc_index::ja, scale_atmos_grid_cartesc_index::je, scale_atmos_grid_cartesc_index::js, scale_atmos_grid_cartesc_index::ka, scale_atmos_grid_cartesc_index::ke, scale_atmos_grid_cartesc_index::ks, prog, and scale_index::va.

Referenced by atmos_dyn_vars_restart_read(), and atmos_dyn_vars_restart_write().

Here is the caller graph for this function:

Variable Documentation

◆ atmos_dyn_restart_output

logical, public mod_atmos_dyn_vars::atmos_dyn_restart_output = .false.

output restart file?

Definition at line 46 of file mod_atmos_dyn_vars.F90.

46  logical, public :: ATMOS_DYN_RESTART_OUTPUT = .false.

Referenced by mod_admin_restart::admin_restart_setup(), and atmos_dyn_vars_setup().

◆ atmos_dyn_restart_in_basename

character(len=h_long), public mod_atmos_dyn_vars::atmos_dyn_restart_in_basename = ''

Basename of the input file.

Definition at line 48 of file mod_atmos_dyn_vars.F90.

48  character(len=H_LONG), public :: ATMOS_DYN_RESTART_IN_BASENAME = ''

Referenced by mod_admin_restart::admin_restart_setup(), atmos_dyn_vars_restart_open(), and atmos_dyn_vars_setup().

◆ atmos_dyn_restart_in_aggregate

logical, public mod_atmos_dyn_vars::atmos_dyn_restart_in_aggregate

Switch to use aggregate file.

Definition at line 49 of file mod_atmos_dyn_vars.F90.

49  logical, public :: ATMOS_DYN_RESTART_IN_AGGREGATE

Referenced by mod_admin_restart::admin_restart_setup(), atmos_dyn_vars_restart_open(), and atmos_dyn_vars_setup().

◆ atmos_dyn_restart_in_postfix_timelabel

logical, public mod_atmos_dyn_vars::atmos_dyn_restart_in_postfix_timelabel = .false.

Add timelabel to the basename of input file?

Definition at line 50 of file mod_atmos_dyn_vars.F90.

50  logical, public :: ATMOS_DYN_RESTART_IN_POSTFIX_TIMELABEL = .false.

Referenced by mod_admin_restart::admin_restart_setup(), atmos_dyn_vars_restart_open(), and atmos_dyn_vars_setup().

◆ atmos_dyn_restart_out_basename

character(len=h_long), public mod_atmos_dyn_vars::atmos_dyn_restart_out_basename = ''

Basename of the output file.

Definition at line 51 of file mod_atmos_dyn_vars.F90.

51  character(len=H_LONG), public :: ATMOS_DYN_RESTART_OUT_BASENAME = ''

Referenced by mod_admin_restart::admin_restart_setup(), atmos_dyn_vars_restart_create(), and atmos_dyn_vars_setup().

◆ atmos_dyn_restart_out_aggregate

logical, public mod_atmos_dyn_vars::atmos_dyn_restart_out_aggregate

Switch to use aggregate file.

Definition at line 52 of file mod_atmos_dyn_vars.F90.

52  logical, public :: ATMOS_DYN_RESTART_OUT_AGGREGATE

Referenced by mod_admin_restart::admin_restart_setup(), atmos_dyn_vars_restart_create(), and atmos_dyn_vars_setup().

◆ atmos_dyn_restart_out_postfix_timelabel

logical, public mod_atmos_dyn_vars::atmos_dyn_restart_out_postfix_timelabel = .true.

Add timelabel to the basename of output file?

Definition at line 53 of file mod_atmos_dyn_vars.F90.

53  logical, public :: ATMOS_DYN_RESTART_OUT_POSTFIX_TIMELABEL = .true.

Referenced by mod_admin_restart::admin_restart_setup(), atmos_dyn_vars_restart_create(), and atmos_dyn_vars_setup().

◆ atmos_dyn_restart_out_title

character(len=h_mid), public mod_atmos_dyn_vars::atmos_dyn_restart_out_title = 'ATMOS_DYN restart'

title of the output file

Definition at line 54 of file mod_atmos_dyn_vars.F90.

54  character(len=H_MID), public :: ATMOS_DYN_RESTART_OUT_TITLE = 'ATMOS_DYN restart'

Referenced by mod_admin_restart::admin_restart_setup(), atmos_dyn_vars_restart_create(), and atmos_dyn_vars_setup().

◆ atmos_dyn_restart_out_dtype

character(len=h_short), public mod_atmos_dyn_vars::atmos_dyn_restart_out_dtype = 'DEFAULT'

REAL4 or REAL8.

Definition at line 55 of file mod_atmos_dyn_vars.F90.

55  character(len=H_SHORT), public :: ATMOS_DYN_RESTART_OUT_DTYPE = 'DEFAULT'

Referenced by mod_admin_restart::admin_restart_setup(), atmos_dyn_vars_restart_create(), atmos_dyn_vars_restart_def_var(), and atmos_dyn_vars_setup().

◆ prog

real(rp), dimension(:,:,:,:), allocatable, public mod_atmos_dyn_vars::prog
scale_statistics
module Statistics
Definition: scale_statistics.F90:11
scale_prc::prc_abort
subroutine, public prc_abort
Abort Process.
Definition: scale_prc.F90:342
scale_file_cartesc::file_cartesc_enddef
subroutine, public file_cartesc_enddef(fid)
Exit netCDF file define mode.
Definition: scale_file_cartesC.F90:943
scale_file_cartesc::file_cartesc_def_var
subroutine, public file_cartesc_def_var(fid, varname, desc, unit, dim_type, datatype, vid, standard_name, timeintv, nsteps, cell_measures)
Define a variable to file.
Definition: scale_file_cartesC.F90:3307
mod_atmos_dyn_vars::prog
real(rp), dimension(:,:,:,:), allocatable, public prog
Definition: mod_atmos_dyn_vars.F90:58
mod_atmos_admin
module ATMOS admin
Definition: mod_atmos_admin.F90:11
scale_atmos_grid_cartesc_real
module Atmosphere GRID CartesC Real(real space)
Definition: scale_atmos_grid_cartesC_real.F90:11
scale_file
module file
Definition: scale_file.F90:15
scale_prc
module PROCESS
Definition: scale_prc.F90:11
scale_const
module CONSTANT
Definition: scale_const.F90:11
scale_atmos_grid_cartesc_real::atmos_grid_cartesc_real_vol
real(rp), dimension(:,:,:), allocatable, public atmos_grid_cartesc_real_vol
control volume (zxy) [m3]
Definition: scale_atmos_grid_cartesC_real.F90:83
scale_file_cartesc::file_cartesc_close
subroutine, public file_cartesc_close(fid)
Close a netCDF file.
Definition: scale_file_cartesC.F90:1023
scale_time
module TIME
Definition: scale_time.F90:11
scale_atmos_dyn_tstep_short
module Atmosphere / Dynamical scheme
Definition: scale_atmos_dyn_tstep_short.F90:12
scale_file_cartesc::file_cartesc_create
subroutine, public file_cartesc_create(basename, title, datatype, fid, date, subsec, haszcoord, append, aggregate, single)
Create/open a netCDF file.
Definition: scale_file_cartesC.F90:780
mod_atmos_admin::atmos_dyn_type
character(len=h_short), public atmos_dyn_type
Definition: mod_atmos_admin.F90:35
scale_file_cartesc::file_cartesc_open
subroutine, public file_cartesc_open(basename, fid, aggregate)
open a netCDF file for read
Definition: scale_file_cartesC.F90:746
scale_file_cartesc::file_cartesc_flush
subroutine, public file_cartesc_flush(fid)
Flush all pending requests to a netCDF file (PnetCDF only)
Definition: scale_file_cartesC.F90:997
scale_time::time_gettimelabel
subroutine, public time_gettimelabel(timelabel)
generate time label
Definition: scale_time.F90:91
scale_comm_cartesc
module COMMUNICATION
Definition: scale_comm_cartesC.F90:11
scale_atmos_dyn_tstep_short::atmos_dyn_tstep_short_regist
subroutine, public atmos_dyn_tstep_short_regist(ATMOS_DYN_TYPE, VA_out, VAR_NAME, VAR_DESC, VAR_UNIT)
Register.
Definition: scale_atmos_dyn_tstep_short.F90:158
scale_file::file_get_aggregate
logical function, public file_get_aggregate(fid)
Definition: scale_file.F90:4844
scale_atmos_grid_cartesc_real::atmos_grid_cartesc_real_totvol
real(rp), public atmos_grid_cartesc_real_totvol
total volume (zxy, local) [m3]
Definition: scale_atmos_grid_cartesC_real.F90:87
scale_const::const_undef
real(rp), public const_undef
Definition: scale_const.F90:41
scale_file_cartesc
module file / cartesianC
Definition: scale_file_cartesC.F90:11