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
History
  • 2016-04-18 (S.Nishizawa) [new]

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 197 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_process::prc_mpistop().

Referenced by scale_atmos_dyn::atmos_dyn_setup().

197  use scale_precision
198  use scale_grid_index
199  use scale_index
200  use scale_process, only: &
205  implicit none
206  character(len=*), intent(in) :: Tstep_large_type
207  real(RP), intent(inout) :: DENS(KA,IA,JA)
208  real(RP), intent(inout) :: MOMZ(KA,IA,JA)
209  real(RP), intent(inout) :: MOMX(KA,IA,JA)
210  real(RP), intent(inout) :: MOMY(KA,IA,JA)
211  real(RP), intent(inout) :: RHOT(KA,IA,JA)
212  real(RP), intent(inout) :: QTRC(KA,IA,JA,QA)
213  real(RP), intent(inout) :: PROG(KA,IA,JA,VA)
214  real(RP), intent(inout) :: mflx_hi(KA,IA,JA,3)
215 
216  !---------------------------------------------------------------------------
217 
218  select case( tstep_large_type )
219  case( 'FVM-HEVE' )
221  dens, momz, momx, momy, rhot, qtrc, prog, &
222  mflx_hi )
224  case default
225  write(*,*) 'xxx ATMOS_DYN_Tstep_large_type is invalid: ', tstep_large_type
226  call prc_mpistop
227  end select
228 
229  return
subroutine, public atmos_dyn_tstep_large_fvm_heve_setup(DENS, MOMZ, MOMX, MOMY, RHOT, QTRC, PROG, mflx_hi)
Setup.
subroutine, public prc_mpistop
Abort MPI.
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, 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_FCT_MOMENTUM, FLAG_FCT_T, FLAG_FCT_TRACER, FLAG_FCT_ALONG_STREAM, USE_AVERAGE, DTLS, DTSS, Llast)
Dynamical Process.
module grid index
module Index
Definition: scale_index.F90:14
module PROCESS
module PRECISION
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()