Changeset 2189 for trunk/LMDZ.MARS/libf
- Timestamp:
- Dec 12, 2019, 5:17:03 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/libf/phymars/co2condens_mod.F
r2184 r2189 209 209 c Tendencies set to 0 210 210 c ------------------------------------- 211 DO l=1,nlayer 212 DO ig=1,ngrid 213 zcondicea(ig,l) = 0. 214 zfallice(ig,l) = 0. 215 pduc(ig,l) = 0 216 pdvc(ig,l) = 0 217 pdtc(ig,l) = 0. 218 END DO 219 END DO 211 zcondicea(1:ngrid,1:nlayer) = 0. 212 zfallice(1:ngrid,1:nlayer+1) = 0. 213 pduc(1:ngrid,1:nlayer) = 0 214 pdvc(1:ngrid,1:nlayer) = 0 215 pdtc(1:ngrid,1:nlayer) = 0. 216 pdqsc(1:ngrid,1:nq) = 0 220 217 221 DO iq=1,nq 222 DO l=1,nlayer 223 DO ig=1,ngrid 224 pdqc(ig,l,iq) = 0 225 END DO 226 END DO 227 END DO 228 229 DO ig=1,ngrid 230 zfallice(ig,nlayer+1) = 0. 231 zcondices(ig) = 0. 232 pdtsrfc(ig) = 0. 233 pdpsrf(ig) = 0. 234 condsub(ig) = .false. 235 zdiceco2(ig) = 0. 236 ENDDO 218 pdqc(1:ngrid,1:nlayer,1:nq) = 0 219 220 zcondices(1:ngrid) = 0. 221 pdtsrfc(1:ngrid) = 0. 222 pdpsrf(1:ngrid) = 0. 223 condsub(1:ngrid) = .false. 224 zdiceco2(1:ngrid) = 0. 225 237 226 zfallheat=0 238 227
Note: See TracChangeset
for help on using the changeset viewer.