Changeset 2784 for LMDZ5/trunk/libf
- Timestamp:
- Jan 27, 2017, 9:41:14 AM (8 years ago)
- Location:
- LMDZ5/trunk/libf/phylmd
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/libf/phylmd/physiq_mod.F90
r2783 r2784 1080 1080 INTEGER :: nbtr_tmp ! Number of tracer inside concvl 1081 1081 REAL, dimension(klon,klev) :: sh_in ! Specific humidity entering in phytrac 1082 REAL, dimension(klon,klev) :: ch_in ! Condensed humidity entering in phytrac (eau liquide) 1082 1083 integer iostat 1083 1084 … … 4060 4061 ELSE 4061 4062 sh_in(:,:) = qx(:,:,ivap) 4063 ch_in(:,:) = qx(:,:,iliq) 4062 4064 ENDIF 4063 4065 … … 4092 4094 frac_impa,frac_nucl, beta_prec_fisrt,beta_prec, & 4093 4095 presnivs, pphis, pphi, albsol1, & 4094 sh_in, rhcl, cldfra, rneb, &4096 sh_in, ch_in, rhcl, cldfra, rneb, & 4095 4097 diafra, cldliq, itop_con, ibas_con, & 4096 4098 pmflxr, pmflxs, prfl, psfl, & -
LMDZ5/trunk/libf/phylmd/phytrac_mod.F90
r2752 r2784 66 66 frac_impa,frac_nucl,beta_fisrt,beta_v1, & 67 67 presnivs, pphis, pphi, albsol, & 68 sh, rh,cldfra, rneb, &68 sh, ch, rh, cldfra, rneb, & 69 69 diafra, cldliq, itop_con, ibas_con, & 70 70 pmflxr, pmflxs, prfl, psfl, & … … 139 139 REAL,DIMENSION(klon,klev),INTENT(IN) :: sh ! humidite specifique 140 140 REAL,DIMENSION(klon,klev),INTENT(IN) :: rh ! humidite relative 141 REAL,DIMENSION(klon,klev),INTENT(IN) :: ch ! eau liquide 141 142 REAL,DIMENSION(klon,klev+1),INTENT(IN) :: paprs ! pression pour chaque inter-couche (en Pa) 142 143 REAL,DIMENSION(klon,klev),INTENT(IN) :: pplay ! pression pour le mileu de chaque couche (en Pa) … … 573 574 write(lunout,*) 'flag_cvltr = ', flag_cvltr 574 575 575 IF (lessivage .AND.config_inca.EQ.'inca') THEN576 IF (lessivage .AND. type_trac .EQ. 'inca') THEN 576 577 CALL abort_physic('phytrac', 'lessivage=T config_inca=inca impossible',1) 577 578 STOP … … 1022 1023 pdtphys, t_seri, paprs, pplay, & 1023 1024 pmfu, upwd, ftsol, pctsrf, pphis, & 1024 pphi, albsol, sh, 1025 pphi, albsol, sh, ch, rh, & 1025 1026 cldfra, rneb, diafra, cldliq, & 1026 1027 itop_con, ibas_con, pmflxr, pmflxs, & -
LMDZ5/trunk/libf/phylmd/tracinca_mod.F90
r2624 r2784 36 36 pdtphys, t_seri, paprs, pplay, & 37 37 pmfu, upwd, ftsol, pctsrf, pphis, & 38 pphi, albsol, sh, rh,&38 pphi, albsol, sh, ch, rh, & 39 39 cldfra, rneb, diafra, cldliq, & 40 40 itop_con, ibas_con, pmflxr, pmflxs, & … … 76 76 REAL,DIMENSION(klon,klev),INTENT(IN) :: t_seri ! Temperature 77 77 REAL,DIMENSION(klon,klev),INTENT(IN) :: sh ! humidite specifique 78 REAL,DIMENSION(klon,klev),INTENT(IN) :: ch ! eau liquide 78 79 REAL,DIMENSION(klon,klev),INTENT(IN) :: rh ! humidite relative 79 80 REAL,DIMENSION(klon,klev+1),INTENT(IN) :: paprs ! pression pour chaque inter-couche (en Pa) … … 185 186 t_seri, & !tfld 186 187 sh, & !sh 188 ch, & !ql 187 189 rh, & !rh 188 190 nbp_lon, & !nx
Note: See TracChangeset
for help on using the changeset viewer.