Changeset 3123
- Timestamp:
- Dec 13, 2017, 2:16:38 PM (7 years ago)
- Location:
- LMDZ6/trunk/libf/phylmd
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/libf/phylmd/physiq_mod.F90
r3117 r3123 3537 3537 ! 3538 3538 !--WMO criterion to determine tropopause 3539 CALL stratosphere_mask(missing_val, t_seri, pplay, latitude_deg)3539 CALL stratosphere_mask(missing_val, pphis, t_seri, pplay, latitude_deg) 3540 3540 ! 3541 3541 !--STRAT AEROSOL … … 3577 3577 #ifdef CPP_StratAer 3578 3578 !--compute stratospheric mask 3579 CALL stratosphere_mask(missing_val, t_seri, pplay, latitude_deg)3579 CALL stratosphere_mask(missing_val, pphis, t_seri, pplay, latitude_deg) 3580 3580 !--interactive strat aerosols 3581 3581 CALL calcaerosolstrato_rrtm(pplay,t_seri,paprs,debut) -
LMDZ6/trunk/libf/phylmd/stratosphere_mask.F90
r3119 r3123 2 2 ! $Id$ 3 3 ! 4 SUBROUTINE stratosphere_mask(missing_val, t_seri, pplay, xlat)4 SUBROUTINE stratosphere_mask(missing_val, pphis, t_seri, pplay, xlat) 5 5 6 6 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! … … 39 39 IMPLICIT NONE 40 40 41 INCLUDE "YOMCST.h" 42 41 43 REAL, INTENT(IN) :: missing_val ! missing value, also XIOS 44 REAL,DIMENSION(klon),INTENT(IN) :: pphis ! Geopotentiel de surface 42 45 REAL,DIMENSION(klon,klev),INTENT(IN) :: t_seri ! Temperature 43 46 REAL,DIMENSION(klon,klev),INTENT(IN) :: pplay ! pression pour le mileu de chaque couche (en Pa) … … 62 65 ENDDO 63 66 psrf=pplay(i,1) 64 zsrf= 0.067 zsrf=pphis(i)/RG !--altitude de la surface 65 68 call twmo(missing_val, klev, t, p, psrf, zsrf, plimu, pliml, gamma, ptrp, ttrp, ztrp) 66 69 tp(i)=ptrp
Note: See TracChangeset
for help on using the changeset viewer.