Changeset 3383 for trunk/LMDZ.COMMON/libf/evolution
- Timestamp:
- Jun 17, 2024, 6:44:19 PM (5 months ago)
- Location:
- trunk/LMDZ.COMMON/libf/evolution
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/evolution/changelog.txt
r3368 r3383 366 366 == 11/06/2024 == JBC 367 367 Correction related to r3367. 368 369 == 13/06/2024 == LL 370 Fixing bug to update the CO2 ice tendency: the case when a glacier diseapper was not handled 371 372 == 17/06/2024 == JBC 373 Small correction for the initialization value of dtphys + Corrections for the launching script. -
trunk/LMDZ.COMMON/libf/evolution/deftank/launchPEM.sh
r3365 r3383 78 78 if [ $relaunch = "PCM" ]; then 79 79 echo "What is the number of the PCM run?" 80 echo "It should be between 1 and $ iPCM."80 echo "It should be between 1 and $((iPCM - 1))." 81 81 read irelaunch 82 if [ 0 -lt $irelaunch ] && [ $irelaunch -l e$iPCM ]; then82 if [ 0 -lt $irelaunch ] && [ $irelaunch -lt $iPCM ]; then 83 83 break 84 84 else … … 89 89 echo "It should be between 1 and $((iPEM - 1))." 90 90 read irelaunch 91 if [ 0 -lt $irelaunch ] && [ $irelaunch -l e$iPEM ]; then91 if [ 0 -lt $irelaunch ] && [ $irelaunch -lt $iPEM ]; then 92 92 break 93 93 else -
trunk/LMDZ.COMMON/libf/evolution/deftank/lib_launchPEM.sh
r3367 r3383 258 258 cleanfiles diags/data2reshape .nc $irelaunch 259 259 cyclelaunch $nPCM_ini $irelaunch 260 elif [ $irelaunch -eq 0]; then260 elif [ $irelaunch -eq $nPCM_ini ]; then 261 261 cp diags/data2reshape$(($irelaunch - 1)).nc data2reshape_Y1.nc 262 262 cp diags/data2reshape${irelaunch}.nc data2reshape_Y2.nc -
trunk/LMDZ.COMMON/libf/evolution/pem.F90
r3367 r3383 341 341 !------------------------ 342 342 #ifndef CPP_1D 343 dtphys = 0343 dtphys = daysec/48. ! Dummy value (overwritten in phyetat0) 344 344 call conf_gcm(99,.true.) 345 345 call infotrac_init
Note: See TracChangeset
for help on using the changeset viewer.