Changeset 2775


Ignore:
Timestamp:
Jan 26, 2017, 2:14:32 PM (7 years ago)
Author:
Laurent Fairhead
Message:

Test to avoid considering concentration of seaice as percentages
LF

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ5/trunk/libf/dynphy_lonlat/phylmd/limit_netcdf.F90

    r2766 r2775  
    447447          CALL abort_physic('SIC','Found sea-ice fractions greater than 1.')
    448448      ELSE IF(TRIM(unit_sic)=="X".OR.TRIM(unit_sic)=="%") THEN
    449         IF(ANY(champ>100.0+EPSFRA)) &
    450           CALL abort_physic('SIC','Found sea-ice percentages greater than 100.')
     449!        IF(ANY(champ>100.0+EPSFRA)) &
     450!          CALL abort_physic('SIC','Found sea-ice percentages greater than 100.')
     451        IF(MAXVAL(champ)< 1.01) &
     452          CALL abort_physic('SIC','All sea-ice percentages lower than 1.')
    451453      END IF
    452454    END IF
Note: See TracChangeset for help on using the changeset viewer.