Ignore:
Timestamp:
Sep 11, 2024, 4:27:07 PM (3 months ago)
Author:
abarral
Message:

Replace REPROBUS CPP KEY by logical using handmade wonky wrapper

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Amaury_dev/libf/phylmd/ecrad.v1.5.1/radiation_ifs_rrtm.F90

    r5159 r5185  
    639639      DO jcol = istartcol,iendcol
    640640        temperature = thermodynamics%temperature_hl(jcol,jlev+ilevoffset)
    641         if (temperature < 339.0_jprb .and. temperature >= 160.0_jprb) then
     641        if (temperature < 339.0_jprb .AND. temperature >= 160.0_jprb) then
    642642          ! Linear interpolation between -113 and 66 degC
    643643          ind(jcol)  = int(temperature - 159.0_jprb)
     
    765765    DO jcol = istartcol,iendcol
    766766      Tsurf = temperature(jcol)
    767       if (Tsurf < 339.0_jprb .and. Tsurf >= 160.0_jprb) then
     767      if (Tsurf < 339.0_jprb .AND. Tsurf >= 160.0_jprb) then
    768768        ! Linear interpolation between -113 and 66 degC
    769769        ind(jcol)  = int(Tsurf - 159.0_jprb)
Note: See TracChangeset for help on using the changeset viewer.