- Timestamp:
- Sep 11, 2024, 4:27:07 PM (3 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/Amaury_dev/libf/phylmd/ecrad.v1.5.1/radiation_ifs_rrtm.F90
r5159 r5185 639 639 DO jcol = istartcol,iendcol 640 640 temperature = thermodynamics%temperature_hl(jcol,jlev+ilevoffset) 641 if (temperature < 339.0_jprb . and. temperature >= 160.0_jprb) then641 if (temperature < 339.0_jprb .AND. temperature >= 160.0_jprb) then 642 642 ! Linear interpolation between -113 and 66 degC 643 643 ind(jcol) = int(temperature - 159.0_jprb) … … 765 765 DO jcol = istartcol,iendcol 766 766 Tsurf = temperature(jcol) 767 if (Tsurf < 339.0_jprb . and. Tsurf >= 160.0_jprb) then767 if (Tsurf < 339.0_jprb .AND. Tsurf >= 160.0_jprb) then 768 768 ! Linear interpolation between -113 and 66 degC 769 769 ind(jcol) = int(Tsurf - 159.0_jprb)
Note: See TracChangeset
for help on using the changeset viewer.