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

(lint) Fix obsolete boolean operators

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Amaury_dev/libf/phylmd/inlandsis/sisvat_sno_albedo.F

    r3980 r5082  
    218218
    219219
    220           IF (iflag_albcalc .GE. 1) THEN  ! Albedo calculation according to Kokhanovsky and Zege 2004
     220          IF (iflag_albcalc >= 1) THEN  ! Albedo calculation according to Kokhanovsky and Zege 2004
    221221
    222222          dalbed = 0.0
     
    752752          alb30 = exp(-(alpha**0.5)* 3.0 / 7.0 * (1.0 + 20 * cos30))
    753753
    754           IF ((wavelengths(i).GE.lambdamin).AND.
    755      .       (wavelengths(i).LT.lambdamax)) THEN
     754          IF ((wavelengths(i)>=lambdamin).AND.
     755     .       (wavelengths(i)<lambdamax)) THEN
    756756          albint=albint+R*Pas  ! rectangle integration -> can be improved with trapezintegration
    757757          norm=norm+Pas
Note: See TracChangeset for help on using the changeset viewer.