- Timestamp:
- Sep 11, 2024, 4:27:07 PM (3 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/Amaury_dev/libf/phylmd/ecrad.v1.5.1/radiation_check.F90
r5159 r5185 48 48 if (allocated(var)) then 49 49 50 if (present(i1) . and. present(i2)) then50 if (present(i1) .AND. present(i2)) then 51 51 varmin = minval(var(i1:i2)) 52 52 varmax = maxval(var(i1:i2)) … … 62 62 is_bad = .true. 63 63 if (do_fix) then 64 if (present(i1) . and. present(i2)) then64 if (present(i1) .AND. present(i2)) then 65 65 var(i1:i2) = max(boundmin, min(boundmax, var(i1:i2))) 66 66 else … … 105 105 if (allocated(var)) then 106 106 107 if (present(i1) . and. present(i2)) then107 if (present(i1) .AND. present(i2)) then 108 108 ii1 = i1 109 109 ii2 = i2 … … 112 112 ii2 = ubound(var,1) 113 113 end if 114 if (present(j1) . and. present(j2)) then114 if (present(j1) .AND. present(j2)) then 115 115 jj1 = j1 116 116 jj2 = j2 … … 168 168 if (allocated(var)) then 169 169 170 if (present(i1) . and. present(i2)) then170 if (present(i1) .AND. present(i2)) then 171 171 ii1 = i1 172 172 ii2 = i2 … … 175 175 ii2 = ubound(var,1) 176 176 end if 177 if (present(j1) . and. present(j2)) then177 if (present(j1) .AND. present(j2)) then 178 178 jj1 = j1 179 179 jj2 = j2 … … 182 182 jj2 = ubound(var,2) 183 183 end if 184 if (present(k1) . and. present(k2)) then184 if (present(k1) .AND. present(k2)) then 185 185 kk1 = k1 186 186 kk2 = k2
Note: See TracChangeset
for help on using the changeset viewer.