Changeset 393 for LMDZ.3.3/branches/rel-LF/libf/phylmd/radlwsw.F
- Timestamp:
- Jul 19, 2002, 11:51:34 AM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ.3.3/branches/rel-LF/libf/phylmd/radlwsw.F
r367 r393 39 39 #include "dimphy.h" 40 40 #include "raddim.h" 41 #include "YOETHF.h" 41 42 c 42 43 real rmu0(klon), fract(klon), dist … … 88 89 REAL*8 ztopsw0(kdlon), ztoplw0(kdlon) 89 90 REAL*8 zsolsw0(kdlon), zsollw0(kdlon) 90 91 REAL*8 zznormcp 91 92 c 92 93 c------------------------------------------- … … 215 216 ENDDO 216 217 DO k = 1, kflev 218 c DO i = 1, kdlon 219 c heat(iof+i,k) = zheat(i,k) 220 c cool(iof+i,k) = zcool(i,k) 221 c heat0(iof+i,k) = zheat0(i,k) 222 c cool0(iof+i,k) = zcool0(i,k) 223 c ENDDO 217 224 DO i = 1, kdlon 218 heat(iof+i,k) = zheat(i,k) 219 cool(iof+i,k) = zcool(i,k) 220 heat0(iof+i,k) = zheat0(i,k) 221 cool0(iof+i,k) = zcool0(i,k) 225 C scale factor to take into account the difference between 226 C dry air and watter vapour scpecific heat capacity 227 zznormcp=1.0+RVTMP2*PWV(i,k) 228 heat(iof+i,k) = zheat(i,k)/zznormcp 229 cool(iof+i,k) = zcool(i,k)/zznormcp 230 heat0(iof+i,k) = zheat0(i,k)/zznormcp 231 cool0(iof+i,k) = zcool0(i,k)/zznormcp 222 232 ENDDO 223 233 ENDDO
Note: See TracChangeset
for help on using the changeset viewer.