Changeset 4110 for trunk/LMDZ.COMMON/libf/evolution/surf_ice.F90
- Timestamp:
- Mar 9, 2026, 10:29:53 AM (4 days ago)
- File:
-
- 1 edited
-
trunk/LMDZ.COMMON/libf/evolution/surf_ice.F90 (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/evolution/surf_ice.F90
r4074 r4110 114 114 ! DEPENDENCIES 115 115 ! ------------ 116 use utility, only: real2str 117 use display, only: print_msg 116 use utility, only: real2str 117 use display, only: print_msg, LVL_NFO 118 use stoppage, only: stop_clean 118 119 119 120 ! DECLARATION … … 129 130 threshold_h2oice_cap = threshold_h2oice_cap_in 130 131 h2oice_huge_ini = h2oice_huge_ini_in 131 call print_msg('threshold_h2oice_cap = '//real2str(threshold_h2oice_cap)) 132 call print_msg('h2oice_huge_ini = '//real2str(h2oice_huge_ini)) 132 call print_msg('threshold_h2oice_cap = '//real2str(threshold_h2oice_cap),LVL_NFO) 133 call print_msg('h2oice_huge_ini = '//real2str(h2oice_huge_ini),LVL_NFO) 134 if (threshold_h2oice_cap < 0._dp) call stop_clean(__FILE__,__LINE__,'''threshold_h2oice_cap'' must be positive or null!',1) 135 if (h2oice_huge_ini < 0._dp) call stop_clean(__FILE__,__LINE__,'''h2oice_huge_ini'' must be positive or null!',1) 133 136 134 137 END SUBROUTINE set_surf_ice_config … … 223 226 use slopes, only: subslope_dist, def_slope_mean 224 227 use maths, only: pi 225 use display, only: print_msg 228 use display, only: print_msg, LVL_NFO 226 229 227 230 ! DECLARATION … … 241 244 ! CODE 242 245 ! ---- 243 call print_msg('> Building surface ice/frost for the PCM' )246 call print_msg('> Building surface ice/frost for the PCM',LVL_NFO) 244 247 co2_ice4PCM(:,:) = co2_ice(:,:) 245 248 h2o_ice4PCM(:,:) = 0._dp ! Because in the Mars PCM, only the variation of perennial H2O ice is monitored, not the absolute quantity … … 282 285 use geometry, only: ngrid, nslope 283 286 use evolution, only: dt 284 use display, only: print_msg 287 use display, only: print_msg, LVL_NFO 285 288 286 289 ! DECLARATION … … 301 304 ! ---- 302 305 ! Evolution of CO2 ice for each physical point 303 call print_msg('> Evolution of CO2 ice' )306 call print_msg('> Evolution of CO2 ice',LVL_NFO) 304 307 305 308 co2_ice_old = co2_ice … … 338 341 use evolution, only: dt 339 342 use stopping_crit, only: stopping_crit_h2o, stopFlags 340 use display, only: print_msg 343 use display, only: print_msg, LVL_NFO 341 344 342 345 ! DECLARATION … … 358 361 ! CODE 359 362 ! ---- 360 call print_msg('> Evolution of H2O ice' )363 call print_msg('> Evolution of H2O ice',LVL_NFO) 361 364 362 365 if (ngrid == 1) then ! In 1D
Note: See TracChangeset
for help on using the changeset viewer.
