Changeset 3068 for trunk/LMDZ.MARS/deftank
- Timestamp:
- Oct 3, 2023, 11:25:57 AM (15 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/deftank/pem/launch_pem.sh
r3065 r3068 16 16 # Path to the arch.env to source: 17 17 source ../trunk/LMDZ.COMMON/arch.env 18 19 # Save the current value of LC_NUMERIC and set it to a locale that uses a dot as the decimal separator 20 OLD_LC_NUMERIC=$LC_NUMERIC 21 LC_NUMERIC=en_US.UTF-8 18 22 19 23 #------- Modify here the number of Earth years to be simulated --------- … … 106 110 #--- Loop to run GCM year by year 107 111 cp run_GCM.def run.def 108 rm diagfi.def 112 if [ -f "diagfi.def" ]; then 113 rm diagfi.def 114 fi 109 115 if [ -f "diagfi_GCM.def" ]; then 110 116 cp diagfi_GCM.def diagfi.def … … 154 160 echo "Run PEM $iPEM..." 155 161 cp run_PEM.def run.def 156 rm diagfi.def 162 if [ -f "diagfi.def" ]; then 163 rm diagfi.def 164 fi 157 165 if [ -f "diagfi_PEM.def" ]; then 158 166 cp diagfi_PEM.def diagfi.def … … 191 199 rm tmp_PEMyears.txt 192 200 201 # Restore the previous value of LC_NUMERIC 202 LC_NUMERIC=$OLD_LC_NUMERIC 203 193 204 #----------------- Preparation for relaunch if needed ------------------ 194 205 #echo "Reinitializing starting files..."
Note: See TracChangeset
for help on using the changeset viewer.