Przeglądaj źródła

First experiment E000

Francois Massonnet 7 lat temu
rodzic
commit
29b5110949

+ 3 - 3
3.3.0/runtime/classic/config-run.xml

@@ -63,7 +63,7 @@
         <Parameter name="EXP_NAME">
             <Description>Experiment name (4 letters)</Description>
             <Type>STRING</Type>
-            <Value>ECE3</Value>
+            <Value>E000</Value>
         </Parameter>
 
         <Parameter name="RUN_START_DATE">
@@ -75,7 +75,7 @@
         <Parameter name="RUN_END_DATE">
             <Description>End date of the simulation. Use any reasonable syntax.</Description>
             <Type>STRING</Type>
-            <Value>${run_start_date} + 4 years</Value>
+            <Value>${run_start_date} + 1 year</Value>
         </Parameter>
 
         <Parameter name="FORCE_RUN_FROM_SCRATCH">
@@ -93,7 +93,7 @@
         <Parameter name="RUN_NUM_LEGS">
             <Description>Number of restart legs</Description>
             <Type>INTEGER</Type>
-            <Value>2</Value>
+            <Value>1</Value>
         </Parameter>
 
         <Parameter name="OUTPUT_CONTROL_FILES_DIR">

+ 7 - 4
3.3.0/runtime/classic/lemaitre3.sh.tmpl

@@ -1,12 +1,12 @@
 #!/bin/bash
 # Submission script for Lemaitre3
 #SBATCH --job-name=ece3
-#SBATCH --time=23:50:00
+#SBATCH --time=06:00:00
 #
 #SBATCH --ntasks=144
 #SBATCH --mem-per-cpu=3072
 #
-##SBATCH --mail-user=noname@uclouvain.be
+#SBATCH --mail-user=francois.massonnet@uclouvain.be
 #SBATCH --mail-type=ALL
 #SBATCH --open-mode=append
 #SBATCH --switches=1@47:50:00
@@ -18,7 +18,10 @@ echo "jobid : ${SLURM_JOB_ID-"local"}"
 echo "jobname : ${SLURM_JOB_NAME-"local"}"
 echo "submit dir : ${SLURM_SUBMIT_DIR-"local"}"
 
-set -ue 
-
+set -ue
+set -o nounset
+set -o errexit
+set -x
+    
 # Directories
 start_dir=${SLURM_SUBMIT_DIR-$PWD}

+ 5 - 2
3.3.0/runtime/classic/zenobe.sh.tmpl

@@ -3,9 +3,9 @@
 #PBS -q large
 #PBS -r y
 #PBS -W group_list=ecearth
-#PBS -l walltime=23:50:00
+#PBS -l walltime=06:00:00
 #PBS -l select=17:ncpus=24:mem=63000mb:mpiprocs=24:ompthreads=1
-#PBS -M noname@uclouvain.be
+#PBS -M francois.massonnet@uclouvain.be
 #PBS -m abe
 
 exec > ${PBS_O_WORKDIR-$PWD}/${PBS_JOBNAME-"local"}_${PBS_JOBID-"id"}.log
@@ -19,6 +19,9 @@ echo "user : $PBS_O_LOGNAME"
 echo "threads : $OMP_NUM_THREADS"
 
 set -ue
+set -o nounset
+set -o errexit
+set -x
 
 # Directories
 start_dir=${PBS_O_WORKDIR-$PWD}