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

module Atmosphere / Dynamical scheme More...

Functions/Subroutines

subroutine, public atmos_dyn_tstep_large_setup (Tstep_large_type, DENS, MOMZ, MOMX, MOMY, RHOT, QTRC, PROG, mflx_hi)
 Register. More...
 

Variables

procedure(large), pointer, public atmos_dyn_tstep_large => NULL()
 

Detailed Description

module Atmosphere / Dynamical scheme

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

Function/Subroutine Documentation

◆ atmos_dyn_tstep_large_setup()

subroutine, public scale_atmos_dyn_tstep_large::atmos_dyn_tstep_large_setup ( character(len=*), intent(in)  Tstep_large_type,
real(rp), dimension(ka,ia,ja), intent(inout)  DENS,
real(rp), dimension(ka,ia,ja), intent(inout)  MOMZ,
real(rp), dimension(ka,ia,ja), intent(inout)  MOMX,
real(rp), dimension(ka,ia,ja), intent(inout)  MOMY,
real(rp), dimension(ka,ia,ja), intent(inout)  RHOT,
real(rp), dimension(ka,ia,ja,qa), intent(inout)  QTRC,
real(rp), dimension(ka,ia,ja,va), intent(inout)  PROG,
real(rp), dimension(ka,ia,ja,3), intent(inout)  mflx_hi 
)

Register.

Definition at line 201 of file scale_atmos_dyn_tstep_large.F90.

References atmos_dyn_tstep_large, 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(), and scale_prc::prc_abort().

Referenced by scale_atmos_dyn::atmos_dyn_setup().

201  use scale_precision
203  use scale_index
204  use scale_prc, only: &
205  prc_abort
209  implicit none
210  character(len=*), intent(in) :: tstep_large_type
211  real(RP), intent(inout) :: dens(ka,ia,ja)
212  real(RP), intent(inout) :: momz(ka,ia,ja)
213  real(RP), intent(inout) :: momx(ka,ia,ja)
214  real(RP), intent(inout) :: momy(ka,ia,ja)
215  real(RP), intent(inout) :: rhot(ka,ia,ja)
216  real(RP), intent(inout) :: qtrc(ka,ia,ja,qa)
217  real(RP), intent(inout) :: prog(ka,ia,ja,va)
218  real(RP), intent(inout) :: mflx_hi(ka,ia,ja,3)
219 
220  !---------------------------------------------------------------------------
221 
222  select case( tstep_large_type )
223  case( 'FVM-HEVE' )
225  dens, momz, momx, momy, rhot, qtrc, prog, &
226  mflx_hi )
228  case default
229  log_error("ATMOS_DYN_Tstep_large_setup",*) 'ATMOS_DYN_Tstep_large_type is invalid: ', tstep_large_type
230  call prc_abort
231  end select
232 
233  return
subroutine, public atmos_dyn_tstep_large_fvm_heve_setup(DENS, MOMZ, MOMX, MOMY, RHOT, QTRC, PROG, mflx_hi)
Setup.
integer, public va
Definition: scale_index.F90:35
subroutine, public atmos_dyn_tstep_large_fvm_heve(DENS, MOMZ, MOMX, MOMY, RHOT, QTRC, PROG, DENS_av, MOMZ_av, MOMX_av, MOMY_av, RHOT_av, QTRC_av, mflx_hi, tflx_hi, num_diff, num_diff_q, QTRC0, DENS_tp, MOMZ_tp, MOMX_tp, MOMY_tp, RHOT_tp, RHOQ_tp, CORIOLI, CDZ, CDX, CDY, FDZ, FDX, FDY, RCDZ, RCDX, RCDY, RFDZ, RFDX, RFDY, PHI, GSQRT, J13G, J23G, J33G, MAPF, AQ_R, AQ_CV, AQ_CP, AQ_MASS, REF_dens, REF_pott, REF_qv, REF_pres, BND_W, BND_E, BND_S, BND_N, ND_COEF, ND_COEF_Q, ND_ORDER, ND_SFC_FACT, ND_USE_RS, BND_QA, BND_SMOOTHER_FACT, DAMP_DENS, DAMP_VELZ, DAMP_VELX, DAMP_VELY, DAMP_POTT, DAMP_QTRC, DAMP_alpha_DENS, DAMP_alpha_VELZ, DAMP_alpha_VELX, DAMP_alpha_VELY, DAMP_alpha_POTT, DAMP_alpha_QTRC, wdamp_coef, divdmp_coef, FLAG_TRACER_SPLIT_TEND, FLAG_FCT_MOMENTUM, FLAG_FCT_T, FLAG_FCT_TRACER, FLAG_FCT_ALONG_STREAM, USE_AVERAGE, I_QV, DTLS, DTSS, Llast)
Dynamical Process.
integer, public ia
of whole cells: x, local, with HALO
integer, public ja
of whole cells: y, local, with HALO
module Index
Definition: scale_index.F90:11
module atmosphere / grid / cartesC index
module PROCESS
Definition: scale_prc.F90:11
subroutine, public prc_abort
Abort Process.
Definition: scale_prc.F90:338
module PRECISION
integer, public ka
of whole cells: z, local, with HALO
procedure(large), pointer, public atmos_dyn_tstep_large
Here is the call graph for this function:
Here is the caller graph for this function:

Variable Documentation

◆ atmos_dyn_tstep_large

procedure(large), pointer, public scale_atmos_dyn_tstep_large::atmos_dyn_tstep_large => NULL()