Changeset 4110 for trunk/LMDZ.COMMON/libf/evolution/surf_temp.F90
- Timestamp:
- Mar 9, 2026, 10:29:53 AM (8 days ago)
- File:
-
- 1 edited
-
trunk/LMDZ.COMMON/libf/evolution/surf_temp.F90 (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/evolution/surf_temp.F90
r4074 r4110 139 139 ! ------------ 140 140 use geometry, only: ngrid, nslope, nlon, nlat, latitudes, vect2lonlat, lonlat2vect 141 use display, only: print_msg 141 use display, only: print_msg, LVL_NFO, LVL_WRN 142 142 use utility, only: int2str 143 143 … … 167 167 if (ngrid == 1) return 168 168 169 call print_msg("> Adapting surface temperature where ice disappeared" )169 call print_msg("> Adapting surface temperature where ice disappeared",LVL_NFO) 170 170 ! Convert from reduced grid to lon-lat grid 171 171 call vect2lonlat(nlon,nlat,ngrid,latitudes,latitude_ll) … … 225 225 radius = radius + 1 226 226 end do 227 if (.not. found) call print_msg(" Warning: no bare soil found for ice disappeared at point ("//int2str(i)//','//int2str(j)//','//int2str(islope)//'!')227 if (.not. found) call print_msg("No bare soil found for ice disappeared at point ("//int2str(i)//','//int2str(j)//','//int2str(islope)//'!',LVL_WRN) 228 228 end if 229 229 end do … … 325 325 ! DEPENDENCIES 326 326 ! ------------ 327 use display, only: print_msg 327 use display, only: print_msg, LVL_NFO 328 328 329 329 ! DECLARATION … … 338 338 ! CODE 339 339 ! ---- 340 call print_msg('> Building surface temperature for the PCM' )340 call print_msg('> Building surface temperature for the PCM',LVL_NFO) 341 341 tsurf4PCM(:,:) = tsurf_avg(:,:) + tsurf_dev(:,:) 342 342
Note: See TracChangeset
for help on using the changeset viewer.
