Changeset 2855 for trunk/LMDZ.COMMON/libf/evolution/soil_pem.F90
- Timestamp:
- Dec 22, 2022, 5:43:14 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/evolution/soil_pem.F90
r2835 r2855 25 25 ! --------- 26 26 ! inputs: 27 integer,intent(in) :: ngrid 28 integer,intent(in) :: nsoil 29 logical,intent(in) :: firstcall ! identifier for initialization call30 real,intent(in) :: therm_i(ngrid,nsoil) ! thermal inertia 31 real,intent(in) :: timestep ! time step32 real,intent(in) :: tsurf(ngrid) ! surface temperature 27 integer,intent(in) :: ngrid ! number of (horizontal) grid-points 28 integer,intent(in) :: nsoil ! number of soil layers 29 logical,intent(in) :: firstcall ! identifier for initialization call 30 real,intent(in) :: therm_i(ngrid,nsoil) ! thermal inertia [SI] 31 real,intent(in) :: timestep ! time step [s] 32 real,intent(in) :: tsurf(ngrid) ! surface temperature [K] 33 33 34 34 ! outputs: 35 real,intent(inout) :: tsoil(ngrid,nsoil) ! soil (mid-layer) temperature 36 real,intent(inout) :: alph_PEM(ngrid,nsoil-1) 37 real,intent(inout) :: beta_PEM(ngrid,nsoil-1) 35 real,intent(inout) :: tsoil(ngrid,nsoil) ! soil (mid-layer) temperature [K] 36 real,intent(inout) :: alph_PEM(ngrid,nsoil-1) ! intermediate for computations [1] 37 real,intent(inout) :: beta_PEM(ngrid,nsoil-1) ! intermediate for computations [K] 38 38 39 39 ! local variables:
Note: See TracChangeset
for help on using the changeset viewer.