Changeset 12855
- Timestamp:
- 2020-05-01T19:09:33+02:00 (5 years ago)
- Location:
- NEMO/branches/2020/r12581_ticket2418
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
NEMO/branches/2020/r12581_ticket2418/src/OCE/stpctl.F90
r12840 r12855 175 175 & zmax(4) >= 100._wp .OR. & ! too large sea surface salinity ( > 100 ) 176 176 & zmax(4) < 0._wp .OR. & ! too large sea surface salinity (keep this line for sea-ice) 177 & ISNAN( zmax(1) + zmax(2) + zmax(3) ) ) THEN ! NaN encounter in the tests 177 & ISNAN( zmax(1) + zmax(2) + zmax(3) ) ! NaN encounter in the tests 178 & ABS( zmax(1) + zmax(2) + zmax(3) ) > HUGE(1._wp) ) THEN ! Infinity encounter in the tests 178 179 ! 179 180 iloc(:,:) = 0 -
NEMO/branches/2020/r12581_ticket2418/src/SAS/stpctl.F90
r12840 r12855 138 138 & zmax(2) > 10._wp .OR. & ! too large ice velocity ( > 10 m/s) 139 139 & zmax(3) > 101._wp .OR. & ! too cold ice temperature ( < -100 degC) 140 & ISNAN( zmax(1) + zmax(2) + zmax(3) ) ) THEN ! NaN encounter in the tests 140 & ISNAN( zmax(1) + zmax(2) + zmax(3) ) ! NaN encounter in the tests 141 & ABS( zmax(1) + zmax(2) + zmax(3) ) > HUGE(1._wp) ) THEN ! Infinity encounter in the tests 141 142 ! 142 143 iloc(:,:) = 0 -
NEMO/branches/2020/r12581_ticket2418/tests/CANAL/MY_SRC/stpctl.F90
r12840 r12855 175 175 !!$ & zmax(4) >= 100._wp .OR. & ! too large sea surface salinity ( > 100 ) 176 176 !!$ & zmax(4) < 0._wp .OR. & ! too large sea surface salinity (keep this line for sea-ice) 177 & ISNAN( zmax(1) + zmax(2) + zmax(3) ) ) THEN ! NaN encounter in the tests 177 & ISNAN( zmax(1) + zmax(2) + zmax(3) ) ! NaN encounter in the tests 178 & ABS( zmax(1) + zmax(2) + zmax(3) ) > HUGE(1._wp) ) THEN ! Infinity encounter in the tests 178 179 ! 179 180 iloc(:,:) = 0 -
NEMO/branches/2020/r12581_ticket2418/tests/STATION_ASF/MY_SRC/stpctl.F90
r12840 r12855 137 137 & zmax(2) > 2000._wp .OR. & ! too large non-solar heat flux ( > 2000 W/m^2 ) 138 138 & zmax(3) > 1.E-3_wp .OR. & ! too large net freshwater flux ( > 1.E-3 kg/m^2/s ) 139 & ISNAN( zmax(1) + zmax(2) + zmax(3) ) ) THEN ! NaN encounter in the tests 139 & ISNAN( zmax(1) + zmax(2) + zmax(3) ) ! NaN encounter in the tests 140 & ABS( zmax(1) + zmax(2) + zmax(3) ) > HUGE(1._wp) ) THEN ! Infinity encounter in the tests 140 141 ! 141 142 iloc(:,:) = 0
Note: See TracChangeset
for help on using the changeset viewer.