Changeset 1421 for trunk/LMDZ.GENERIC/libf/phystd
- Timestamp:
- Apr 30, 2015, 10:24:13 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/libf/phystd/phyetat0.F90
r1415 r1421 11 11 inquire_dimension, inquire_dimension_length 12 12 use slab_ice_h, only: noceanmx 13 use callkeys_mod, only: CLFvarying 13 14 14 15 implicit none … … 251 252 252 253 ! Cloud fraction (added by BC 2010) 254 if (CLFvarying) then 253 255 call get_field("cloudfrac",cloudfrac,found,indextime) 254 256 if (.not.found) then … … 259 261 minval(cloudfrac), maxval(cloudfrac) 260 262 endif 263 else 264 cloudfrac(:,:)=0.0 265 endif 261 266 262 267 ! Total cloud fraction (added by BC 2010) 268 if (CLFvarying) then 263 269 call get_field("totcloudfrac",totcloudfrac,found,indextime) 264 270 if (.not.found) then … … 268 274 write(*,*) "phyetat0: Total cloud fraction <totcloudfrac> range:", & 269 275 minval(totcloudfrac), maxval(totcloudfrac) 276 endif 277 else 278 totcloudfrac(:)=0.0 270 279 endif 271 280
Note: See TracChangeset
for help on using the changeset viewer.