SCALE-RM
Data Types | Functions/Subroutines | Variables
scale_atmos_dyn_tstep_short Module Reference

module Atmosphere / Dynamical scheme More...

Functions/Subroutines

subroutine, public atmos_dyn_tstep_short_regist (ATMOS_DYN_TYPE, VA_out, VAR_NAME, VAR_DESC, VAR_UNIT)
 Register. More...
 

Variables

procedure(short_setup), pointer, public atmos_dyn_tstep_short_setup => NULL()
 
procedure(short), pointer, public atmos_dyn_tstep_short => NULL()
 

Detailed Description

module Atmosphere / Dynamical scheme

Description
Dynamical scheme selecter for dynamical short time step
Author
Team SCALE

Function/Subroutine Documentation

◆ atmos_dyn_tstep_short_regist()

subroutine, public scale_atmos_dyn_tstep_short::atmos_dyn_tstep_short_regist ( character(len=*), intent(in)  ATMOS_DYN_TYPE,
integer, intent(out)  VA_out,
character(len=h_short), dimension(:), intent(out)  VAR_NAME,
character(len=h_mid), dimension(:), intent(out)  VAR_DESC,
character(len=h_short), dimension(:), intent(out)  VAR_UNIT 
)

Register.

Parameters
[out]va_outnumber of prognostic variables
[out]var_namename of the variables
[out]var_descdesc. of the variables
[out]var_unitunit of the variables

Definition at line 157 of file scale_atmos_dyn_tstep_short.F90.

References atmos_dyn_tstep_short, scale_atmos_dyn_tstep_short_fvm_heve::atmos_dyn_tstep_short_fvm_heve(), scale_atmos_dyn_tstep_short_fvm_heve::atmos_dyn_tstep_short_fvm_heve_regist(), scale_atmos_dyn_tstep_short_fvm_heve::atmos_dyn_tstep_short_fvm_heve_setup(), scale_atmos_dyn_tstep_short_fvm_hevi::atmos_dyn_tstep_short_fvm_hevi(), scale_atmos_dyn_tstep_short_fvm_hevi::atmos_dyn_tstep_short_fvm_hevi_regist(), scale_atmos_dyn_tstep_short_fvm_hevi::atmos_dyn_tstep_short_fvm_hevi_setup(), scale_atmos_dyn_tstep_short_fvm_hivi::atmos_dyn_tstep_short_fvm_hivi(), scale_atmos_dyn_tstep_short_fvm_hivi::atmos_dyn_tstep_short_fvm_hivi_regist(), scale_atmos_dyn_tstep_short_fvm_hivi::atmos_dyn_tstep_short_fvm_hivi_setup(), atmos_dyn_tstep_short_setup, and scale_prc::prc_abort().

Referenced by mod_atmos_dyn_vars::atmos_dyn_vars_setup().

157  use scale_precision
159  use scale_index
160  use scale_prc, only: &
161  prc_abort
174  implicit none
175 
176  character(len=*), intent(in) :: atmos_dyn_type
177  integer, intent(out) :: va_out
178  character(len=H_SHORT), intent(out) :: var_name(:)
179  character(len=H_MID), intent(out) :: var_desc(:)
180  character(len=H_SHORT), intent(out) :: var_unit(:)
181  !---------------------------------------------------------------------------
182 
183  select case( atmos_dyn_type )
184  case( 'FVM-HEVE', 'HEVE' )
185 
186  call atmos_dyn_tstep_short_fvm_heve_regist( atmos_dyn_type, & ! [IN]
187  va_out, & ! [OUT]
188  var_name, var_desc, var_unit ) ! [OUT]
189 
190  atmos_dyn_tstep_short_setup => atmos_dyn_tstep_short_fvm_heve_setup
192 
193  case( 'FVM-HEVI', 'HEVI' )
194 
195  call atmos_dyn_tstep_short_fvm_hevi_regist( atmos_dyn_type, & ! [IN]
196  va_out, & ! [OUT]
197  var_name, var_desc, var_unit ) ! [OUT]
198 
199  atmos_dyn_tstep_short_setup => atmos_dyn_tstep_short_fvm_hevi_setup
201 
202  case( 'FVM-HIVI', 'HIVI' )
203 
204  log_error("ATMOS_DYN_Tstep_short_regist",*) 'HIVI is tentatively disabled'
205  call prc_abort
206 
207  call atmos_dyn_tstep_short_fvm_hivi_regist( atmos_dyn_type, & ! [IN]
208  va_out, & ! [OUT]
209  var_name, var_desc, var_unit ) ! [OUT]
210 
211  atmos_dyn_tstep_short_setup => atmos_dyn_tstep_short_fvm_hivi_setup
213 
214  case( 'OFF', 'NONE' )
215 
216  va_out = 0
217  var_name(:) = ""
218  var_desc(:) = ""
219  var_unit(:) = ""
220 
221  case default
222  log_error("ATMOS_DYN_Tstep_short_regist",*) 'ATMOS_DYN_TYPE is invalid: ', atmos_dyn_type
223  call prc_abort
224  end select
225 
226  return
subroutine, public atmos_dyn_tstep_short_fvm_hevi_regist(ATMOS_DYN_TYPE, VA_out, VAR_NAME, VAR_DESC, VAR_UNIT)
Register.
subroutine, public atmos_dyn_tstep_short_fvm_heve(DENS_RK, MOMZ_RK, MOMX_RK, MOMY_RK, RHOT_RK, PROG_RK, mflx_hi, tflx_hi, DENS0, MOMZ0, MOMX0, MOMY0, RHOT0, DENS, MOMZ, MOMX, MOMY, RHOT, DENS_t, MOMZ_t, MOMX_t, MOMY_t, RHOT_t, PROG0, PROG, DPRES0, RT2P, CORIOLI, num_diff, wdamp_coef, divdmp_coef, DDIV, FLAG_FCT_MOMENTUM, FLAG_FCT_T, FLAG_FCT_ALONG_STREAM, CDZ, FDZ, FDX, FDY, RCDZ, RCDX, RCDY, RFDZ, RFDX, RFDY, PHI, GSQRT, J13G, J23G, J33G, MAPF, REF_dens, REF_rhot, BND_W, BND_E, BND_S, BND_N, dtrk, last)
subroutine, public atmos_dyn_tstep_short_fvm_hivi_regist(ATMOS_DYN_TYPE, VA_out, VAR_NAME, VAR_DESC, VAR_UNIT)
Register.
subroutine, public atmos_dyn_tstep_short_fvm_hivi(DENS_RK, MOMZ_RK, MOMX_RK, MOMY_RK, RHOT_RK, PROG_RK, mflx_hi, tflx_hi, DENS0, MOMZ0, MOMX0, MOMY0, RHOT0, DENS, MOMZ, MOMX, MOMY, RHOT, DENS_t, MOMZ_t, MOMX_t, MOMY_t, RHOT_t, PROG0, PROG, DPRES0, RT2P, CORIOLI, num_diff, wdamp_coef, divdmp_coef, DDIV, FLAG_FCT_MOMENTUM, FLAG_FCT_T, FLAG_FCT_ALONG_STREAM, CDZ, FDZ, FDX, FDY, RCDZ, RCDX, RCDY, RFDZ, RFDX, RFDY, PHI, GSQRT, J13G, J23G, J33G, MAPF, REF_dens, REF_rhot, BND_W, BND_E, BND_S, BND_N, dtrk, last)
module Index
Definition: scale_index.F90:11
module atmosphere / grid / cartesC index
module PROCESS
Definition: scale_prc.F90:11
procedure(short), pointer, public atmos_dyn_tstep_short
subroutine, public prc_abort
Abort Process.
Definition: scale_prc.F90:338
subroutine, public atmos_dyn_tstep_short_fvm_heve_regist(ATMOS_DYN_TYPE, VA_out, VAR_NAME, VAR_DESC, VAR_UNIT)
Register.
subroutine, public atmos_dyn_tstep_short_fvm_hevi(DENS_RK, MOMZ_RK, MOMX_RK, MOMY_RK, RHOT_RK, PROG_RK, mflx_hi, tflx_hi, DENS0, MOMZ0, MOMX0, MOMY0, RHOT0, DENS, MOMZ, MOMX, MOMY, RHOT, DENS_t, MOMZ_t, MOMX_t, MOMY_t, RHOT_t, PROG0, PROG, DPRES0, RT2P, CORIOLI, num_diff, wdamp_coef, divdmp_coef, DDIV, FLAG_FCT_MOMENTUM, FLAG_FCT_T, FLAG_FCT_ALONG_STREAM, CDZ, FDZ, FDX, FDY, RCDZ, RCDX, RCDY, RFDZ, RFDX, RFDY, PHI, GSQRT, J13G, J23G, J33G, MAPF, REF_dens, REF_rhot, BND_W, BND_E, BND_S, BND_N, dtrk, last)
module PRECISION
Here is the call graph for this function:
Here is the caller graph for this function:

Variable Documentation

◆ atmos_dyn_tstep_short_setup

procedure(short_setup), pointer, public scale_atmos_dyn_tstep_short::atmos_dyn_tstep_short_setup => NULL()

Definition at line 132 of file scale_atmos_dyn_tstep_short.F90.

Referenced by scale_atmos_dyn::atmos_dyn_setup(), and atmos_dyn_tstep_short_regist().

132  procedure(short_setup), pointer :: atmos_dyn_tstep_short_setup => null()

◆ atmos_dyn_tstep_short

procedure(short), pointer, public scale_atmos_dyn_tstep_short::atmos_dyn_tstep_short => NULL()