Changeset 2885 for trunk/LMDZ.COMMON/libf/evolution/read_data_GCM.F90
- Timestamp:
- Jan 31, 2023, 9:52:30 PM (22 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/evolution/read_data_GCM.F90
r2855 r2885 69 69 REAL, ALLOCATABLE :: co2_ice_s(:,:,:) ! co2 ice, mesh averaged, of the concatenated file [kg/m^2] 70 70 REAL, ALLOCATABLE :: h2o_ice_s_slope(:,:,:,:) ! h2o ice per slope of the concatenated file [kg/m^2] 71 REAL, ALLOCATABLE :: watercap_slope(:,:,:,:) 71 72 72 73 !----------------------------------------------------------------------- … … 80 81 allocate(co2_ice_s(iim+1,jjm+1,timelen)) 81 82 allocate(h2o_ice_s_slope(iim+1,jjm+1,nslope,timelen)) 83 allocate(watercap_slope(iim_input+1,jjm_input+1,nslope,timelen)) 82 84 allocate(h2o_ice_s(iim+1,jjm+1,timelen)) 83 85 … … 133 135 134 136 print *, "Downloading data for h2o_ice_s_slope done" 137 print *, "Downloading data for watercap_slope ..." 138 139 DO islope=1,nslope 140 write(num,fmt='(i2.2)') islope 141 call get_var3("watercap_slope"//num,watercap_slope(:,:,islope,:)) 142 ENDDO 143 144 print *, "Downloading data for watercap_slope done" 135 145 print *, "Downloading data for tsurf_slope ..." 136 146 … … 198 208 199 209 print *, "Computing the min of h2o_ice_slope" 200 min_h2o_ice_slope(:,:,:)=minval(h2o_ice_s_slope ,4)210 min_h2o_ice_slope(:,:,:)=minval(h2o_ice_s_slope+watercap_slope,4) 201 211 print *, "Computing the min of co2_ice_slope" 202 212 min_co2_ice_slope(:,:,:)=minval(co2_ice_slope,4) … … 225 235 min_co2_ice_slope(i,j,islope) = 0. 226 236 endif 227 if (min_h2o_ice_slope(i,j,islope).LT.0) then228 min_h2o_ice_slope(i,j,islope) = 0.229 endif237 ! if (min_h2o_ice_slope(i,j,islope).LT.0) then 238 ! min_h2o_ice_slope(i,j,islope) = 0. 239 ! endif 230 240 ENDDO 231 241 ENDDO
Note: See TracChangeset
for help on using the changeset viewer.