Changeset 973 for trunk/LMDZ.VENUS/libf/phyvenus/phyetat0.F90
- Timestamp:
- May 27, 2013, 9:47:37 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.VENUS/libf/phyvenus/phyetat0.F90
r892 r973 152 152 PRINT*,'Rayonnement solaire au sol solsw:', xmin, xmax 153 153 154 ! Lecture rayonnement I Fau sol:154 ! Lecture rayonnement IR au sol: 155 155 156 156 CALL get_field("sollw",sollw,found) … … 166 166 xmax = MAX(sollw(i),xmax) 167 167 ENDDO 168 PRINT*,'Rayonnement I Fau sol sollw:', xmin, xmax168 PRINT*,'Rayonnement IR au sol sollw:', xmin, xmax 169 169 170 170 ! Lecture derive des flux: … … 183 183 ENDDO 184 184 PRINT*,'Derive des flux fder:', xmin, xmax 185 186 ! Lecture derive flux IR: 187 188 CALL get_field("dlw",dlw,found) 189 IF (.not.found) THEN 190 PRINT*, 'phyetat0: Le champ <dlw> est absent' 191 PRINT*, 'mis a zero' 192 dlw = 0. 193 ENDIF 194 xmin = 1.0E+20 195 xmax = -1.0E+20 196 DO i = 1, klon 197 xmin = MIN(dlw(i),xmin) 198 xmax = MAX(dlw(i),xmax) 199 ENDDO 200 PRINT*,'Derive flux IR dlw:', xmin, xmax 201 202 ! Lecture rayonnement IR vers le bas au sol: 203 204 CALL get_field("sollwdown",sollwdown,found) 205 IF (.not.found) THEN 206 PRINT*, 'phyetat0: Le champ <sollwdown> est absent' 207 PRINT*, 'mis a zero' 208 sollwdown = 0. 209 ENDIF 210 xmin = 1.0E+20 211 xmax = -1.0E+20 212 DO i = 1, klon 213 xmin = MIN(sollwdown(i),xmin) 214 xmax = MAX(sollwdown(i),xmax) 215 ENDDO 216 PRINT*,'Flux IR vers le bas au sol sollwdown:', xmin, xmax 185 217 186 218 ! Lecture du rayonnement net au sol:
Note: See TracChangeset
for help on using the changeset viewer.