Index: /trunk/LMDZ.COMMON/libf/evolution/changelog.txt
===================================================================
--- /trunk/LMDZ.COMMON/libf/evolution/changelog.txt	(revision 3382)
+++ /trunk/LMDZ.COMMON/libf/evolution/changelog.txt	(revision 3383)
@@ -366,2 +366,8 @@
 == 11/06/2024 == JBC
 Correction related to r3367.
+
+== 13/06/2024 == LL
+Fixing bug to update the CO2 ice tendency: the case when a glacier diseapper was not handled
+
+== 17/06/2024 == JBC
+Small correction for the initialization value of dtphys + Corrections for the launching script.
Index: /trunk/LMDZ.COMMON/libf/evolution/deftank/launchPEM.sh
===================================================================
--- /trunk/LMDZ.COMMON/libf/evolution/deftank/launchPEM.sh	(revision 3382)
+++ /trunk/LMDZ.COMMON/libf/evolution/deftank/launchPEM.sh	(revision 3383)
@@ -78,7 +78,7 @@
             if [ $relaunch = "PCM" ]; then
                 echo "What is the number of the PCM run?"
-                echo "It should be between 1 and $iPCM."
+                echo "It should be between 1 and $((iPCM - 1))."
                 read irelaunch
-                if [ 0 -lt $irelaunch ] && [ $irelaunch -le $iPCM ]; then
+                if [ 0 -lt $irelaunch ] && [ $irelaunch -lt $iPCM ]; then
                     break
                 else
@@ -89,5 +89,5 @@
                 echo "It should be between 1 and $((iPEM - 1))."
                 read irelaunch
-                if [ 0 -lt $irelaunch ] && [ $irelaunch -le $iPEM ]; then
+                if [ 0 -lt $irelaunch ] && [ $irelaunch -lt $iPEM ]; then
                     break
                 else
Index: /trunk/LMDZ.COMMON/libf/evolution/deftank/lib_launchPEM.sh
===================================================================
--- /trunk/LMDZ.COMMON/libf/evolution/deftank/lib_launchPEM.sh	(revision 3382)
+++ /trunk/LMDZ.COMMON/libf/evolution/deftank/lib_launchPEM.sh	(revision 3383)
@@ -258,5 +258,5 @@
             cleanfiles diags/data2reshape .nc $irelaunch
             cyclelaunch $nPCM_ini $irelaunch
-        elif [ $irelaunch -eq 0 ]; then
+        elif [ $irelaunch -eq $nPCM_ini ]; then
             cp diags/data2reshape$(($irelaunch - 1)).nc data2reshape_Y1.nc
             cp diags/data2reshape${irelaunch}.nc data2reshape_Y2.nc
Index: /trunk/LMDZ.COMMON/libf/evolution/pem.F90
===================================================================
--- /trunk/LMDZ.COMMON/libf/evolution/pem.F90	(revision 3382)
+++ /trunk/LMDZ.COMMON/libf/evolution/pem.F90	(revision 3383)
@@ -341,5 +341,5 @@
 !------------------------
 #ifndef CPP_1D
-    dtphys = 0
+    dtphys = daysec/48. ! Dummy value (overwritten in phyetat0)
     call conf_gcm(99,.true.)
     call infotrac_init
