Ignore:
Timestamp:
Jul 19, 2024, 5:41:58 PM (2 months ago)
Author:
abarral
Message:

(lint) Fix obsolete boolean operators

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Amaury_dev/libf/phylmd/icefrac_lsc_mod.F90

    r4664 r5082  
    3333
    3434  DO ip=1,np
    35      IF (iflag_t_glace.EQ.1) THEN
     35     IF (iflag_t_glace==1) THEN
    3636       ! Transition to ice close to surface for T<Tmax
    3737       ! w=1 at the surface and 0 for sig < sig0
    3838       www=(max(sig(ip)-sig0,0.))/(1.-sig0)
    39      ELSEIF (iflag_t_glace.GE.2) THEN
     39     ELSEIF (iflag_t_glace>=2) THEN
    4040       ! No convertion to ice close to surface
    4141       www = 0.
     
    4444     liqfrac_tmp=  (temp(ip)-tmin_tmp) / (t_glace_max-tmin_tmp)
    4545     liqfrac_tmp = MIN(MAX(liqfrac_tmp,0.0),1.0)
    46      IF (iflag_t_glace.GE.3) THEN
     46     IF (iflag_t_glace>=3) THEN
    4747       icefrac(ip) = 1.0-liqfrac_tmp**exposant_glace
    4848     ELSE
Note: See TracChangeset for help on using the changeset viewer.