- Timestamp:
- Jul 28, 2025, 7:23:15 PM (7 days ago)
- Location:
- LMDZ6/branches/contrails
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/contrails
- Property svn:mergeinfo changed
/LMDZ6/trunk merged: 5654-5683,5685-5690,5692-5715,5718-5721,5726-5727,5729,5744-5761,5763-5778,5780,5785-5789
- Property svn:mergeinfo changed
-
LMDZ6/branches/contrails/libf/phylmd/rrtm/rrtm_rrtm_140gp.F90
r2146 r5791 41 41 & PCLDF , PTAUCLD,& 42 42 & PTAU_LW,& 43 & PEMIT , PFLUX , PFLUC, PTCLEAR &44 & )43 & PEMIT , PFLUX , PFLUC, PTCLEAR, & 44 & PTOAG, PTOACG) !FC 45 45 46 46 ! *** This program is the driver for RRTM, the AER rapid model. … … 88 88 REAL(KIND=JPRB) ,INTENT(OUT) :: PFLUC(KLON,2,KLEV+1) ! LW clear sky flux (1=up, 2=down) 89 89 REAL(KIND=JPRB) ,INTENT(OUT) :: PTCLEAR(KLON) ! clear-sky fraction of column 90 91 REAL(KIND=JPRB) ,INTENT(OUT) :: PTOAG(KLON,JPGPT) ! full-sky TOA G !FC 92 REAL(KIND=JPRB) ,INTENT(OUT) :: PTOACG(KLON,JPGPT) ! clear-sky TOA G !FC 93 90 94 INTEGER(KIND=JPIM) :: ICLDLYR(JPLAY) ! Cloud indicator 91 95 REAL(KIND=JPRB) :: Z_CLDFRAC(JPLAY) ! Cloud fraction … … 116 120 REAL(KIND=JPRB) :: Z_TOTUFLUX(0:JPLAY) 117 121 118 INTEGER(KIND=JPIM) :: i, icld, iplon, I_K 122 REAL(KIND=JPRB) :: Z_TOAG(JPGPT) !FC 123 REAL(KIND=JPRB) :: Z_TOACG(JPGPT) !FC 124 125 126 INTEGER(KIND=JPIM) :: i, icld, iplon, I_K ,JI !FC 119 127 INTEGER(KIND=JPIM) :: ISTART 120 128 INTEGER(KIND=JPIM) :: IEND … … 253 261 ! Clear radiative transfer is done for clear layers and cloudy radiative 254 262 ! transfer is done for cloudy layers as identified by icldlyr. 263 !FC 255 264 256 265 CALL RRTM_RTRN1A_140GP (KLEV,ISTART,IEND,ICLDLYR,Z_CLDFRAC,Z_TAUCLD,Z_ABSS1,& 257 266 & Z_OD,Z_TAUSF1,Z_CLFNET,Z_CLHTR,Z_FNET,Z_HTR,Z_TOTDFLUC,Z_TOTDFLUX,Z_TOTUFLUC,Z_TOTUFLUX,& 267 & Z_TOAG, Z_TOACG,& 258 268 & Z_TAVEL,Z_PZ,Z_TZ,Z_TBOUND,Z_PFRAC,Z_SEMISS,Z_SEMISLW,IREFLECT) 259 269 … … 270 280 PFLUX(iplon,2,i+1) = -Z_TOTDFLUX(i)*Z_FLUXFAC 271 281 ENDDO 282 !FC 283 DO JI = 1, JPGPT 284 PTOAG(iplon,JI) = Z_TOAG(JI)*Z_FLUXFAC !FC faire attention aux niveaux (i+1 et i) 285 PTOACG(iplon,JI) = Z_TOACG(JI)*Z_FLUXFAC 286 ENDDO 287 !FC 272 288 ENDDO 273 289
Note: See TracChangeset
for help on using the changeset viewer.