source: trunk/WRF.COMMON/INTERFACES/dynphy_wrf_void_lmd/iniphysiq_mod.F @ 3020

Last change on this file since 3020 was 2277, checked in by mlefevre, 5 years ago

MESOSCALE. Updates of physics interface for Venus, prescribed and void physics.

File size: 919 bytes
Line 
1MODULE iniphysiq_mod
2
3CONTAINS
4
5subroutine iniphysiq(ngrid,nlayer,nq,piphysiq,&
6                     punjours, pdayref, &
7                     prad,pg,pr,pcpp,iflag_phys)
8
9implicit none
10
11real,intent(in) :: prad ! radius of the planet (m)
12real,intent(in) :: pg ! gravitational acceleration (m/s2)
13real,intent(in) :: pr ! ! reduced gas constant R/mu
14real,intent(in) :: pcpp ! specific heat Cp
15real,intent(in) :: punjours ! length (in s) of a standard day [daysec]
16integer,intent(in) :: pdayref ! reference day of for the simulation [day_ini]
17integer,intent(in) :: iflag_phys ! type of physics to be called
18
19integer,intent(in) :: ngrid ! number of physics columns for this MPI process
20integer,intent(in) :: nlayer ! number of atmospheric layers
21integer,intent(in) :: nq ! number of tracers
22real,intent(in) :: piphysiq   ! call physics every piphysiq dynamical timesteps
23
24end subroutine iniphysiq
25
26END MODULE iniphysiq_mod
Note: See TracBrowser for help on using the repository browser.