Ignore:
Timestamp:
Feb 25, 2025, 7:15:18 PM (5 months ago)
Author:
Laurent Fairhead
Message:

Roll back of commit 5511 and part of 5544 to insure convergence of next testing revision. Both commits will be reintroduced just after the validation of this
testing version

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/trunk/libf/phylmd/Dust/checknanqfi.f90

    r5354 r5561  
    11SUBROUTINE checknanqfi(zq,qmin,qmax,comment)
    22  USE dimphy
    3   USE, intrinsic :: ieee_arithmetic
    43  IMPLICIT NONE
    54
     
    1716     DO i = 1, klon
    1817!        IF (zq(i,k).GT.qmax .OR. zq(i,k).LT.qmin) THEN
    19         IF (ieee_is_nan(zq(i,k))) THEN
     18        IF (isnan(zq(i,k))) THEN
    2019           jbad = jbad + 1
    2120           jadrs(jbad) = i
Note: See TracChangeset for help on using the changeset viewer.