SCALE-RM
Functions/Subroutines | Variables
mod_atmos_phy_tb_vars Module Reference

module Atmosphere / Physics Turbulence More...

Functions/Subroutines

subroutine, public atmos_phy_tb_vars_setup
 Setup. More...
 
subroutine, public atmos_phy_tb_vars_fillhalo
 HALO Communication. More...
 
subroutine, public atmos_phy_tb_vars_restart_open
 Open restart file for read. More...
 
subroutine, public atmos_phy_tb_vars_restart_read
 Read restart. More...
 
subroutine, public atmos_phy_tb_vars_restart_create
 Create restart file. More...
 
subroutine, public atmos_phy_tb_vars_restart_enddef
 Exit netCDF define mode. More...
 
subroutine, public atmos_phy_tb_vars_restart_close
 Close restart file. More...
 
subroutine, public atmos_phy_tb_vars_restart_def_var
 Write restart. More...
 
subroutine, public atmos_phy_tb_vars_restart_write
 Write restart. More...
 

Variables

logical, public atmos_phy_tb_restart_output = .false.
 output restart file? More...
 
character(len=h_long), public atmos_phy_tb_restart_in_basename = ''
 Basename of the input file. More...
 
logical, public atmos_phy_tb_restart_in_postfix_timelabel = .false.
 Add timelabel to the basename of input file? More...
 
character(len=h_long), public atmos_phy_tb_restart_out_basename = ''
 Basename of the output file. More...
 
logical, public atmos_phy_tb_restart_out_postfix_timelabel = .true.
 Add timelabel to the basename of output file? More...
 
character(len=h_mid), public atmos_phy_tb_restart_out_title = 'ATMOS_PHY_TB restart'
 title of the output file More...
 
character(len=h_short), public atmos_phy_tb_restart_out_dtype = 'DEFAULT'
 REAL4 or REAL8. More...
 
real(rp), dimension(:,:,:), allocatable, public atmos_phy_tb_momz_t
 
real(rp), dimension(:,:,:), allocatable, public atmos_phy_tb_momx_t
 
real(rp), dimension(:,:,:), allocatable, public atmos_phy_tb_momy_t
 
real(rp), dimension(:,:,:), allocatable, public atmos_phy_tb_rhot_t
 
real(rp), dimension(:,:,:,:), allocatable, public atmos_phy_tb_rhoq_t
 

Detailed Description

module Atmosphere / Physics Turbulence

Description
Container for mod_atmos_phy_tb
Author
Team SCALE
History
  • 2014-05-04 (H.Yashiro) [new]
NAMELIST
  • PARAM_ATMOS_PHY_TB_VARS
    nametypedefault valuecomment
    ATMOS_PHY_TB_RESTART_IN_BASENAME character(len=H_LONG) '' Basename of the input file
    ATMOS_PHY_TB_RESTART_IN_POSTFIX_TIMELABEL logical .false. Add timelabel to the basename of input file?
    ATMOS_PHY_TB_RESTART_OUTPUT logical .false. output restart file?
    ATMOS_PHY_TB_RESTART_OUT_BASENAME character(len=H_LONG) '' Basename of the output file
    ATMOS_PHY_TB_RESTART_OUT_POSTFIX_TIMELABEL logical .true. Add timelabel to the basename of output file?
    ATMOS_PHY_TB_RESTART_OUT_TITLE character(len=H_MID) 'ATMOS_PHY_TB restart' title of the output file
    ATMOS_PHY_TB_RESTART_OUT_DTYPE character(len=H_SHORT) 'DEFAULT' REAL4 or REAL8

History Output
No history output

Function/Subroutine Documentation

◆ atmos_phy_tb_vars_setup()

subroutine, public mod_atmos_phy_tb_vars::atmos_phy_tb_vars_setup ( )

Setup.

Definition at line 81 of file mod_atmos_phy_tb_vars.f90.

References atmos_phy_tb_momx_t, atmos_phy_tb_momy_t, atmos_phy_tb_momz_t, atmos_phy_tb_restart_in_basename, atmos_phy_tb_restart_in_postfix_timelabel, atmos_phy_tb_restart_out_basename, atmos_phy_tb_restart_out_dtype, atmos_phy_tb_restart_out_postfix_timelabel, atmos_phy_tb_restart_out_title, atmos_phy_tb_restart_output, atmos_phy_tb_rhoq_t, atmos_phy_tb_rhot_t, scale_const::const_undef, scale_grid_index::ia, scale_stdio::io_fid_conf, scale_stdio::io_fid_log, scale_stdio::io_fid_nml, scale_stdio::io_l, scale_stdio::io_nml, scale_grid_index::ja, scale_grid_index::ka, scale_process::prc_mpistop(), and scale_tracer::qa.

Referenced by mod_atmos_vars::atmos_vars_setup().

81  use scale_process, only: &
83  use scale_const, only: &
84  undef => const_undef
85  implicit none
86 
87  namelist / param_atmos_phy_tb_vars / &
88  atmos_phy_tb_restart_in_basename, &
89  atmos_phy_tb_restart_in_postfix_timelabel, &
90  atmos_phy_tb_restart_output, &
91  atmos_phy_tb_restart_out_basename, &
92  atmos_phy_tb_restart_out_postfix_timelabel, &
93  atmos_phy_tb_restart_out_title, &
94  atmos_phy_tb_restart_out_dtype
95 
96  integer :: ierr
97  integer :: iv
98  !---------------------------------------------------------------------------
99 
100  if( io_l ) write(io_fid_log,*)
101  if( io_l ) write(io_fid_log,*) '++++++ Module[VARS] / Categ[ATMOS PHY_TB] / Origin[SCALE-RM]'
102 
103  allocate( atmos_phy_tb_momz_t(ka,ia,ja) )
104  allocate( atmos_phy_tb_momx_t(ka,ia,ja) )
105  allocate( atmos_phy_tb_momy_t(ka,ia,ja) )
106  allocate( atmos_phy_tb_rhot_t(ka,ia,ja) )
107  allocate( atmos_phy_tb_rhoq_t(ka,ia,ja,qa) )
108  atmos_phy_tb_momz_t(:,:,:) = undef
109  atmos_phy_tb_momx_t(:,:,:) = undef
110  atmos_phy_tb_momy_t(:,:,:) = undef
111  atmos_phy_tb_rhot_t(:,:,:) = undef
112  atmos_phy_tb_rhoq_t(:,:,:,:) = undef
113 
114  !--- read namelist
115  rewind(io_fid_conf)
116  read(io_fid_conf,nml=param_atmos_phy_tb_vars,iostat=ierr)
117  if( ierr < 0 ) then !--- missing
118  if( io_l ) write(io_fid_log,*) '*** Not found namelist. Default used.'
119  elseif( ierr > 0 ) then !--- fatal error
120  write(*,*) 'xxx Not appropriate names in namelist PARAM_ATMOS_PHY_TB_VARS. Check!'
121  call prc_mpistop
122  endif
123  if( io_nml ) write(io_fid_nml,nml=param_atmos_phy_tb_vars)
124 
125 ! if( IO_L ) write(IO_FID_LOG,*)
126 ! if( IO_L ) write(IO_FID_LOG,*) '*** [ATMOS_PHY_TB] prognostic/diagnostic variables'
127 ! if( IO_L ) write(IO_FID_LOG,'(1x,A,A24,A,A48,A,A12,A)') &
128 ! '*** |', 'VARNAME ','|', &
129 ! 'DESCRIPTION ', '[', 'UNIT ', ']'
130 ! do iv = 1, VMAX
131 ! if( IO_L ) write(IO_FID_LOG,'(1x,A,I3,A,A24,A,A48,A,A12,A)') &
132 ! '*** NO.',iv,'|',VAR_NAME(iv),'|',VAR_DESC(iv),'[',VAR_UNIT(iv),']'
133 ! enddo
134 
135 ! if( IO_L ) write(IO_FID_LOG,*)
136 ! if ( ATMOS_PHY_TB_RESTART_IN_BASENAME /= '' ) then
137 ! if( IO_L ) write(IO_FID_LOG,*) '*** Restart input? : YES, file = ', trim(ATMOS_PHY_TB_RESTART_IN_BASENAME)
138 ! if( IO_L ) write(IO_FID_LOG,*) '*** Add timelabel? : ', ATMOS_PHY_TB_RESTART_IN_POSTFIX_TIMELABEL
139 ! else
140 ! if( IO_L ) write(IO_FID_LOG,*) '*** Restart input? : NO'
141 ! endif
142 ! if ( ATMOS_PHY_TB_RESTART_OUTPUT &
143 ! .AND. ATMOS_PHY_TB_RESTART_OUT_BASENAME /= '' ) then
144 ! if( IO_L ) write(IO_FID_LOG,*) '*** Restart output? : YES, file = ', trim(ATMOS_PHY_TB_RESTART_OUT_BASENAME)
145 ! if( IO_L ) write(IO_FID_LOG,*) '*** Add timelabel? : ', ATMOS_PHY_TB_RESTART_OUT_POSTFIX_TIMELABEL
146 ! else
147 ! if( IO_L ) write(IO_FID_LOG,*) '*** Restart output? : NO'
148 ! ATMOS_PHY_TB_RESTART_OUTPUT = .false.
149 ! endif
150 
151  return
real(rp), dimension(:,:,:), allocatable, public atmos_phy_tb_momx_t
subroutine, public prc_mpistop
Abort MPI.
real(rp), dimension(:,:,:), allocatable, public atmos_phy_tb_rhot_t
real(rp), public const_undef
Definition: scale_const.F90:43
module PROCESS
module CONSTANT
Definition: scale_const.F90:14
real(rp), dimension(:,:,:), allocatable, public atmos_phy_tb_momy_t
real(rp), dimension(:,:,:,:), allocatable, public atmos_phy_tb_rhoq_t
real(rp), dimension(:,:,:), allocatable, public atmos_phy_tb_momz_t
Here is the call graph for this function:
Here is the caller graph for this function:

◆ atmos_phy_tb_vars_fillhalo()

subroutine, public mod_atmos_phy_tb_vars::atmos_phy_tb_vars_fillhalo ( )

HALO Communication.

Definition at line 157 of file mod_atmos_phy_tb_vars.f90.

157  use scale_comm, only: &
158  comm_vars8, &
159  comm_wait
160  implicit none
161  !---------------------------------------------------------------------------
162 
163 ! do j = 1, JA
164 ! do i = 1, IA
165 ! ATMOS_PHY_TB_??( 1:KS-1,i,j) = ATMOS_PHY_TB_??(KS,i,j)
166 ! ATMOS_PHY_TB_??(KE+1:KA, i,j) = ATMOS_PHY_TB_??(KE,i,j)
167 ! enddo
168 ! enddo
169 
170 ! call COMM_vars8( ATMOS_PHY_TB_??(:,:,:), 1 )
171 ! call COMM_wait ( ATMOS_PHY_TB_??(:,:,:), 1 )
172 
173  return
module COMMUNICATION
Definition: scale_comm.F90:23

◆ atmos_phy_tb_vars_restart_open()

subroutine, public mod_atmos_phy_tb_vars::atmos_phy_tb_vars_restart_open ( )

Open restart file for read.

Definition at line 179 of file mod_atmos_phy_tb_vars.f90.

References scale_fileio::fileio_open(), and scale_time::time_gettimelabel().

Referenced by mod_atmos_vars::atmos_vars_restart_open().

179  use scale_time, only: &
181  use scale_fileio, only: &
183  implicit none
184 
185  character(len=19) :: timelabel
186  character(len=H_LONG) :: basename
187  !---------------------------------------------------------------------------
188 
189 ! if( IO_L ) write(IO_FID_LOG,*)
190 ! if( IO_L ) write(IO_FID_LOG,*) '*** Open restart file (ATMOS_PHY_TB) ***'
191 
192 ! if ( ATMOS_PHY_TB_RESTART_IN_BASENAME /= '' ) then
193 
194 ! if ( ATMOS_PHY_TB_RESTART_IN_POSTFIX_TIMELABEL ) then
195 ! call TIME_gettimelabel( timelabel )
196 ! basename = trim(ATMOS_PHY_TB_RESTART_IN_BASENAME)//'_'//trim(timelabel)
197 ! else
198 ! basename = trim(ATMOS_PHY_TB_RESTART_IN_BASENAME)
199 ! endif
200 
201 ! if( IO_L ) write(IO_FID_LOG,*) '*** basename: ', trim(basename)
202 
203 ! call FILEIO_open( restart_fid, basename )
204 ! else
205 ! if( IO_L ) write(IO_FID_LOG,*) '*** restart file for ATMOS_PHY_TB is not specified.'
206 ! endif
207 
208  return
module FILE I/O (netcdf)
subroutine, public time_gettimelabel(timelabel)
generate time label
Definition: scale_time.F90:90
module TIME
Definition: scale_time.F90:15
subroutine, public fileio_open(fid, basename)
open a netCDF file for read
Here is the call graph for this function:
Here is the caller graph for this function:

◆ atmos_phy_tb_vars_restart_read()

subroutine, public mod_atmos_phy_tb_vars::atmos_phy_tb_vars_restart_read ( )

Read restart.

Definition at line 214 of file mod_atmos_phy_tb_vars.f90.

References scale_fileio::fileio_flush(), and scale_rm_statistics::statistics_checktotal.

Referenced by mod_atmos_vars::atmos_vars_restart_read().

214  use scale_rm_statistics, only: &
216  stat_total
217  use scale_fileio, only: &
218  fileio_read, &
220  implicit none
221 
222  real(RP) :: total
223  integer :: i, j
224  !---------------------------------------------------------------------------
225 
226 ! if ( restart_fid /= -1 ) then
227 ! if( IO_L ) write(IO_FID_LOG,*)
228 ! if( IO_L ) write(IO_FID_LOG,*) '*** Read from restart file (ATMOS_PHY_TB) ***'
229 !
230 ! call FILEIO_read( ATMOS_PHY_TB_??(:,:,:), & ! [OUT]
231 ! restart_fid, VAR_NAME(1), 'ZXY', step=1 ) ! [IN]
232 !
233 ! if ( IO_AGGREGATE ) then
234 ! call FILEIO_flush( restart_fid ) ! X/Y halos have been read from file
235 !
236 ! ! fill k halos
237 ! do j = 1, JA
238 ! do i = 1, IA
239 ! ATMOS_PHY_TB_??( 1:KS-1,i,j) = ATMOS_PHY_TB_??(KS,i,j)
240 ! ATMOS_PHY_TB_??(KE+1:KA, i,j) = ATMOS_PHY_TB_??(KE,i,j)
241 ! enddo
242 ! enddo
243 ! else
244 ! call ATMOS_PHY_TB_vars_fillhalo
245 ! end if
246 !
247 ! if ( STATISTICS_checktotal ) then
248 ! call STAT_total( total, ATMOS_PHY_TB_??(:,:,:), VAR_NAME(1) )
249 ! endif
250 ! else
251 ! if( IO_L ) write(IO_FID_LOG,*) '*** invalid restart file ID for ATMOS_PHY_TB.'
252 ! endif
253 
254  return
logical, public statistics_checktotal
calc&report variable totals to logfile?
subroutine, public fileio_flush(fid)
Flush all pending requests to a netCDF file (PnetCDF only)
module FILE I/O (netcdf)
module Statistics
Here is the call graph for this function:
Here is the caller graph for this function:

◆ atmos_phy_tb_vars_restart_create()

subroutine, public mod_atmos_phy_tb_vars::atmos_phy_tb_vars_restart_create ( )

Create restart file.

Definition at line 260 of file mod_atmos_phy_tb_vars.f90.

References scale_fileio::fileio_create(), and scale_time::time_gettimelabel().

Referenced by mod_atmos_vars::atmos_vars_restart_create().

260  use scale_time, only: &
262  use scale_fileio, only: &
264  implicit none
265 
266  character(len=19) :: timelabel
267  character(len=H_LONG) :: basename
268  !---------------------------------------------------------------------------
269 
270 ! if ( ATMOS_PHY_TB_RESTART_OUT_BASENAME /= '' ) then
271 !
272 ! if( IO_L ) write(IO_FID_LOG,*)
273 ! if( IO_L ) write(IO_FID_LOG,*) '*** Create restart file (ATMOS_PHY_AE) ***'
274 !
275 ! if ( ATMOS_PHY_TB_RESTART_OUT_POSTFIX_TIMELABEL ) then
276 ! call TIME_gettimelabel( timelabel )
277 ! basename = trim(ATMOS_PHY_TB_RESTART_OUT_BASENAME)//'_'//trim(timelabel)
278 ! else
279 ! basename = trim(ATMOS_PHY_TB_RESTART_OUT_BASENAME)
280 ! endif
281 !
282 ! if( IO_L ) write(IO_FID_LOG,*) '*** basename: ', trim(basename)
283 !
284 ! call FILEIO_create( restart_fid, & ! [OUT]
285 ! basename, ATMOS_PHY_TB_RESTART_OUT_TITLE, ATMOS_PHY_TB_RESTART_OUT_DTYPE ) ! [IN]
286 ! endif
287 
288  return
module FILE I/O (netcdf)
subroutine, public time_gettimelabel(timelabel)
generate time label
Definition: scale_time.F90:90
subroutine, public fileio_create(fid, basename, title, datatype, date, subsec, append, nozcoord)
Create/open a netCDF file.
module TIME
Definition: scale_time.F90:15
Here is the call graph for this function:
Here is the caller graph for this function:

◆ atmos_phy_tb_vars_restart_enddef()

subroutine, public mod_atmos_phy_tb_vars::atmos_phy_tb_vars_restart_enddef ( )

Exit netCDF define mode.

Definition at line 294 of file mod_atmos_phy_tb_vars.f90.

References scale_fileio::fileio_enddef().

Referenced by mod_atmos_vars::atmos_vars_restart_enddef().

294  use scale_fileio, only: &
296  implicit none
297 
298 ! if ( restart_fid /= -1 ) then
299 ! call FILEIO_enddef( restart_fid ) ! [IN]
300 ! endif
301 
302  return
module FILE I/O (netcdf)
subroutine, public fileio_enddef(fid)
Exit netCDF file define mode.
Here is the call graph for this function:
Here is the caller graph for this function:

◆ atmos_phy_tb_vars_restart_close()

subroutine, public mod_atmos_phy_tb_vars::atmos_phy_tb_vars_restart_close ( )

Close restart file.

Definition at line 308 of file mod_atmos_phy_tb_vars.f90.

References scale_fileio::fileio_close().

Referenced by mod_atmos_vars::atmos_vars_restart_close().

308  use scale_fileio, only: &
310  implicit none
311  !---------------------------------------------------------------------------
312 
313 ! if ( restart_fid /= -1 ) then
314 ! if( IO_L ) write(IO_FID_LOG,*)
315 ! if( IO_L ) write(IO_FID_LOG,*) '*** Close restart file (ATMOS_PHY_TB) ***'
316 !
317 ! call FILEIO_close( restart_fid ) ! [IN]
318 !
319 ! restart_fid = -1
320 ! endif
321 
322  return
module FILE I/O (netcdf)
subroutine, public fileio_close(fid)
Close a netCDF file.
Here is the call graph for this function:
Here is the caller graph for this function:

◆ atmos_phy_tb_vars_restart_def_var()

subroutine, public mod_atmos_phy_tb_vars::atmos_phy_tb_vars_restart_def_var ( )

Write restart.

Definition at line 328 of file mod_atmos_phy_tb_vars.f90.

References scale_fileio::fileio_def_var().

Referenced by mod_atmos_vars::atmos_vars_restart_def_var().

328  use scale_fileio, only: &
330  implicit none
331  !---------------------------------------------------------------------------
332 
333 ! if ( restart_fid /= -1 ) then
334 
335 ! call FILEIO_def_var( restart_fid, VAR_ID(1), VAR_NAME(1), VAR_DESC(1), &
336 ! VAR_UNIT(1), 'ZXY', ATMOS_PHY_TB_RESTART_OUT_DTYPE ) ! [IN]
337 
338 ! endif
339 
340  return
module FILE I/O (netcdf)
subroutine, public fileio_def_var(fid, vid, varname, desc, unit, axistype, datatype, timeintv, nsteps)
Define a variable to file.
Here is the call graph for this function:
Here is the caller graph for this function:

◆ atmos_phy_tb_vars_restart_write()

subroutine, public mod_atmos_phy_tb_vars::atmos_phy_tb_vars_restart_write ( )

Write restart.

Definition at line 346 of file mod_atmos_phy_tb_vars.f90.

References scale_rm_statistics::statistics_checktotal.

Referenced by mod_atmos_vars::atmos_vars_restart_write().

346  use scale_rm_statistics, only: &
348  stat_total
349  use scale_fileio, only: &
350  fileio_write_var
351  implicit none
352 
353  real(RP) :: total
354  !---------------------------------------------------------------------------
355 
356 ! if ( restart_fid /= -1 ) then
357 !
358 ! call ATMOS_PHY_TB_vars_fillhalo
359 !
360 ! if ( STATISTICS_checktotal ) then
361 ! call STAT_total( total, ATMOS_PHY_TB_??(:,:,:), VAR_NAME(1) )
362 ! endif
363 !
364 ! call FILEIO_write_var( restart_fid, VAR_ID(1), ATMOS_PHY_TB_??(:,:,:), &
365 ! VAR_NAME(1), 'ZXY' ) ! [IN]
366 !
367 ! endif
368 
369  return
logical, public statistics_checktotal
calc&report variable totals to logfile?
module FILE I/O (netcdf)
module Statistics
Here is the caller graph for this function:

Variable Documentation

◆ atmos_phy_tb_restart_output

logical, public mod_atmos_phy_tb_vars::atmos_phy_tb_restart_output = .false.

output restart file?

Definition at line 46 of file mod_atmos_phy_tb_vars.f90.

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

46  logical, public :: ATMOS_PHY_TB_RESTART_OUTPUT = .false.

◆ atmos_phy_tb_restart_in_basename

character(len=h_long), public mod_atmos_phy_tb_vars::atmos_phy_tb_restart_in_basename = ''

Basename of the input file.

Definition at line 48 of file mod_atmos_phy_tb_vars.f90.

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

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

◆ atmos_phy_tb_restart_in_postfix_timelabel

logical, public mod_atmos_phy_tb_vars::atmos_phy_tb_restart_in_postfix_timelabel = .false.

Add timelabel to the basename of input file?

Definition at line 49 of file mod_atmos_phy_tb_vars.f90.

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

49  logical, public :: ATMOS_PHY_TB_RESTART_IN_POSTFIX_TIMELABEL = .false.

◆ atmos_phy_tb_restart_out_basename

character(len=h_long), public mod_atmos_phy_tb_vars::atmos_phy_tb_restart_out_basename = ''

Basename of the output file.

Definition at line 50 of file mod_atmos_phy_tb_vars.f90.

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

50  character(len=H_LONG), public :: ATMOS_PHY_TB_RESTART_OUT_BASENAME = ''

◆ atmos_phy_tb_restart_out_postfix_timelabel

logical, public mod_atmos_phy_tb_vars::atmos_phy_tb_restart_out_postfix_timelabel = .true.

Add timelabel to the basename of output file?

Definition at line 51 of file mod_atmos_phy_tb_vars.f90.

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

51  logical, public :: ATMOS_PHY_TB_RESTART_OUT_POSTFIX_TIMELABEL = .true.

◆ atmos_phy_tb_restart_out_title

character(len=h_mid), public mod_atmos_phy_tb_vars::atmos_phy_tb_restart_out_title = 'ATMOS_PHY_TB restart'

title of the output file

Definition at line 52 of file mod_atmos_phy_tb_vars.f90.

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

52  character(len=H_MID), public :: ATMOS_PHY_TB_RESTART_OUT_TITLE = 'ATMOS_PHY_TB restart'

◆ atmos_phy_tb_restart_out_dtype

character(len=h_short), public mod_atmos_phy_tb_vars::atmos_phy_tb_restart_out_dtype = 'DEFAULT'

REAL4 or REAL8.

Definition at line 53 of file mod_atmos_phy_tb_vars.f90.

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

53  character(len=H_SHORT), public :: ATMOS_PHY_TB_RESTART_OUT_DTYPE = 'DEFAULT'

◆ atmos_phy_tb_momz_t

real(rp), dimension(:,:,:), allocatable, public mod_atmos_phy_tb_vars::atmos_phy_tb_momz_t

Definition at line 55 of file mod_atmos_phy_tb_vars.f90.

Referenced by mod_atmos_phy_tb_driver::atmos_phy_tb_driver(), mod_atmos_phy_tb_driver::atmos_phy_tb_driver_setup(), and atmos_phy_tb_vars_setup().

55  real(RP), public, allocatable :: ATMOS_PHY_TB_MOMZ_t(:,:,:) ! tendency MOMZ [kg/m2/s2]

◆ atmos_phy_tb_momx_t

real(rp), dimension(:,:,:), allocatable, public mod_atmos_phy_tb_vars::atmos_phy_tb_momx_t

Definition at line 56 of file mod_atmos_phy_tb_vars.f90.

Referenced by mod_atmos_phy_tb_driver::atmos_phy_tb_driver(), and atmos_phy_tb_vars_setup().

56  real(RP), public, allocatable :: ATMOS_PHY_TB_MOMX_t(:,:,:) ! tendency MOMX [kg/m2/s2]

◆ atmos_phy_tb_momy_t

real(rp), dimension(:,:,:), allocatable, public mod_atmos_phy_tb_vars::atmos_phy_tb_momy_t

Definition at line 57 of file mod_atmos_phy_tb_vars.f90.

Referenced by mod_atmos_phy_tb_driver::atmos_phy_tb_driver(), and atmos_phy_tb_vars_setup().

57  real(RP), public, allocatable :: ATMOS_PHY_TB_MOMY_t(:,:,:) ! tendency MOMY [kg/m2/s2]

◆ atmos_phy_tb_rhot_t

real(rp), dimension(:,:,:), allocatable, public mod_atmos_phy_tb_vars::atmos_phy_tb_rhot_t

Definition at line 58 of file mod_atmos_phy_tb_vars.f90.

Referenced by mod_atmos_phy_tb_driver::atmos_phy_tb_driver(), and atmos_phy_tb_vars_setup().

58  real(RP), public, allocatable :: ATMOS_PHY_TB_RHOT_t(:,:,:) ! tendency RHOT [K*kg/m3/s]

◆ atmos_phy_tb_rhoq_t

real(rp), dimension(:,:,:,:), allocatable, public mod_atmos_phy_tb_vars::atmos_phy_tb_rhoq_t

Definition at line 59 of file mod_atmos_phy_tb_vars.f90.

Referenced by mod_atmos_phy_tb_driver::atmos_phy_tb_driver(), and atmos_phy_tb_vars_setup().

59  real(RP), public, allocatable :: ATMOS_PHY_TB_RHOQ_t(:,:,:,:) ! tendency rho*QTRC [kg/kg/s]