-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cmorized esm-hist for realisation 2-10
- Loading branch information
Showing
176 changed files
with
7,626 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
82 changes: 82 additions & 0 deletions
82
namelists/CMIP6_NorESM2-LM/esm-hist/cmor_NHIST_1901_f19_tn14_20230201esm.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
#!/bin/bash | ||
|
||
CMOR_ROOT=$(cd $(dirname $0) && cd ../../.. && pwd) | ||
source ${CMOR_ROOT}/workflow/cmorRun1memb.sh | ||
|
||
# initialize | ||
login0=false | ||
|
||
# set active | ||
login0=true | ||
|
||
# initialize | ||
version=v20230616 | ||
expid=esm-hist | ||
model=NorESM2-LM | ||
|
||
# --- Use input arguments if exits | ||
if [ $# -ge 1 ] | ||
then | ||
while test $# -gt 0; do | ||
case "$1" in | ||
-m=*) | ||
model=$(echo $1|sed -e 's/^[^=]*=//g') | ||
shift | ||
;; | ||
-e=*) | ||
expid=$(echo $1|sed -e 's/^[^=]*=//g') | ||
shift | ||
;; | ||
-v=*) | ||
version=$(echo $1|sed -e 's/^[^=]*=//g') | ||
shift | ||
;; | ||
* ) | ||
echo "ERROR: option $1 not allowed." | ||
echo "*** EXITING THE SCRIPT" | ||
exit 1 | ||
;; | ||
esac | ||
done | ||
fi | ||
# --- | ||
|
||
echo "--------------------" | ||
echo "EXPID: $expid " | ||
echo "--------------------" | ||
|
||
echo " " | ||
echo "START CMOR... " | ||
echo "$(date) " | ||
echo " " | ||
|
||
if $login0 | ||
then | ||
#---------------- | ||
# part 1 | ||
#---------------- | ||
CaseName=NHIST_1901_f19_tn14_20230201esm | ||
real=2 | ||
physics=1 | ||
forcing=1 | ||
init=1 | ||
years1=(1850 $(seq 1860 10 2000) 2010) | ||
years2=(1859 $(seq 1869 10 2009) 2014) | ||
years1=(1970) | ||
years2=(1979) | ||
years1=(1940) | ||
years2=(1949) | ||
|
||
runcmor -c=$CaseName -m=$model -e=$expid -v=$version -r=$real -p=$physics -f=$forcing -i=$init -yrs1="${years1[*]}" -yrs2="${years2[*]}" -mpi=DMPI | ||
#--- | ||
fi | ||
#--- | ||
|
||
wait | ||
echo " " | ||
echo "CMOR DONE" | ||
echo "$(date) " | ||
echo "~~~~~~~~~" | ||
|
||
# PrePARE QC check, create links and update sha256sum | ||
#${CMOR_ROOT}/workflow/cmorPost.sh -m=${model} -e=${expid} -v=${version} --verbose=false |
80 changes: 80 additions & 0 deletions
80
namelists/CMIP6_NorESM2-LM/esm-hist/cmor_NHIST_1951_f19_tn14_20230201esm.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
#!/bin/bash | ||
|
||
CMOR_ROOT=$(cd $(dirname $0) && cd ../../.. && pwd) | ||
source ${CMOR_ROOT}/workflow/cmorRun1memb.sh | ||
|
||
# initialize | ||
login0=false | ||
|
||
# set active | ||
login0=true | ||
|
||
# initialize | ||
version=v20230616 | ||
expid=esm-hist | ||
model=NorESM2-LM | ||
|
||
# --- Use input arguments if exits | ||
if [ $# -ge 1 ] | ||
then | ||
while test $# -gt 0; do | ||
case "$1" in | ||
-m=*) | ||
model=$(echo $1|sed -e 's/^[^=]*=//g') | ||
shift | ||
;; | ||
-e=*) | ||
expid=$(echo $1|sed -e 's/^[^=]*=//g') | ||
shift | ||
;; | ||
-v=*) | ||
version=$(echo $1|sed -e 's/^[^=]*=//g') | ||
shift | ||
;; | ||
* ) | ||
echo "ERROR: option $1 not allowed." | ||
echo "*** EXITING THE SCRIPT" | ||
exit 1 | ||
;; | ||
esac | ||
done | ||
fi | ||
# --- | ||
|
||
echo "--------------------" | ||
echo "EXPID: $expid " | ||
echo "--------------------" | ||
|
||
echo " " | ||
echo "START CMOR... " | ||
echo "$(date) " | ||
echo " " | ||
|
||
if $login0 | ||
then | ||
#---------------- | ||
# part 1 | ||
#---------------- | ||
CaseName=NHIST_1951_f19_tn14_20230201esm | ||
real=3 | ||
physics=1 | ||
forcing=1 | ||
init=1 | ||
years1=(1850 $(seq 1860 10 2000) 2010) | ||
years2=(1859 $(seq 1869 10 2009) 2014) | ||
years1=($(seq 1990 10 2000) 2010) | ||
years2=($(seq 1999 10 2009) 2014) | ||
|
||
runcmor -c=$CaseName -m=$model -e=$expid -v=$version -r=$real -p=$physics -f=$forcing -i=$init -yrs1="${years1[*]}" -yrs2="${years2[*]}" -mpi=DMPI | ||
#--- | ||
fi | ||
#--- | ||
|
||
wait | ||
echo " " | ||
echo "CMOR DONE" | ||
echo "$(date) " | ||
echo "~~~~~~~~~" | ||
|
||
# PrePARE QC check, create links and update sha256sum | ||
${CMOR_ROOT}/workflow/cmorPost.sh -m=${model} -e=${expid} -v=${version} --verbose=false |
80 changes: 80 additions & 0 deletions
80
namelists/CMIP6_NorESM2-LM/esm-hist/cmor_NHIST_2001_f19_tn14_20230201esm.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
#!/bin/bash | ||
|
||
CMOR_ROOT=$(cd $(dirname $0) && cd ../../.. && pwd) | ||
source ${CMOR_ROOT}/workflow/cmorRun1memb.sh | ||
|
||
# initialize | ||
login0=false | ||
|
||
# set active | ||
login0=true | ||
|
||
# initialize | ||
version=v20230616 | ||
expid=esm-hist | ||
model=NorESM2-LM | ||
|
||
# --- Use input arguments if exits | ||
if [ $# -ge 1 ] | ||
then | ||
while test $# -gt 0; do | ||
case "$1" in | ||
-m=*) | ||
model=$(echo $1|sed -e 's/^[^=]*=//g') | ||
shift | ||
;; | ||
-e=*) | ||
expid=$(echo $1|sed -e 's/^[^=]*=//g') | ||
shift | ||
;; | ||
-v=*) | ||
version=$(echo $1|sed -e 's/^[^=]*=//g') | ||
shift | ||
;; | ||
* ) | ||
echo "ERROR: option $1 not allowed." | ||
echo "*** EXITING THE SCRIPT" | ||
exit 1 | ||
;; | ||
esac | ||
done | ||
fi | ||
# --- | ||
|
||
echo "--------------------" | ||
echo "EXPID: $expid " | ||
echo "--------------------" | ||
|
||
echo " " | ||
echo "START CMOR... " | ||
echo "$(date) " | ||
echo " " | ||
|
||
if $login0 | ||
then | ||
#---------------- | ||
# part 1 | ||
#---------------- | ||
CaseName=NHIST_2001_f19_tn14_20230201esm | ||
real=4 | ||
physics=1 | ||
forcing=1 | ||
init=1 | ||
years1=(1850 $(seq 1860 10 2000) 2010) | ||
years2=(1859 $(seq 1869 10 2009) 2014) | ||
years1=($(seq 1970 10 2000) 2010) | ||
years2=($(seq 1979 10 2009) 2014) | ||
|
||
runcmor -c=$CaseName -m=$model -e=$expid -v=$version -r=$real -p=$physics -f=$forcing -i=$init -yrs1="${years1[*]}" -yrs2="${years2[*]}" -mpi=DMPI | ||
#--- | ||
fi | ||
#--- | ||
|
||
wait | ||
echo " " | ||
echo "CMOR DONE" | ||
echo "$(date) " | ||
echo "~~~~~~~~~" | ||
|
||
# PrePARE QC check, create links and update sha256sum | ||
${CMOR_ROOT}/workflow/cmorPost.sh -m=${model} -e=${expid} -v=${version} --verbose=false |
80 changes: 80 additions & 0 deletions
80
namelists/CMIP6_NorESM2-LM/esm-hist/cmor_NHIST_2051_f19_tn14_20230201esm.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
#!/bin/bash | ||
|
||
CMOR_ROOT=$(cd $(dirname $0) && cd ../../.. && pwd) | ||
source ${CMOR_ROOT}/workflow/cmorRun1memb.sh | ||
|
||
# initialize | ||
login0=false | ||
|
||
# set active | ||
login0=true | ||
|
||
# initialize | ||
version=v20230616 | ||
expid=esm-hist | ||
model=NorESM2-LM | ||
|
||
# --- Use input arguments if exits | ||
if [ $# -ge 1 ] | ||
then | ||
while test $# -gt 0; do | ||
case "$1" in | ||
-m=*) | ||
model=$(echo $1|sed -e 's/^[^=]*=//g') | ||
shift | ||
;; | ||
-e=*) | ||
expid=$(echo $1|sed -e 's/^[^=]*=//g') | ||
shift | ||
;; | ||
-v=*) | ||
version=$(echo $1|sed -e 's/^[^=]*=//g') | ||
shift | ||
;; | ||
* ) | ||
echo "ERROR: option $1 not allowed." | ||
echo "*** EXITING THE SCRIPT" | ||
exit 1 | ||
;; | ||
esac | ||
done | ||
fi | ||
# --- | ||
|
||
echo "--------------------" | ||
echo "EXPID: $expid " | ||
echo "--------------------" | ||
|
||
echo " " | ||
echo "START CMOR... " | ||
echo "$(date) " | ||
echo " " | ||
|
||
if $login0 | ||
then | ||
#---------------- | ||
# part 1 | ||
#---------------- | ||
CaseName=NHIST_2051_f19_tn14_20230201esm | ||
real=5 | ||
physics=1 | ||
forcing=1 | ||
init=1 | ||
years1=(1850 $(seq 1860 10 2000) 2010) | ||
years2=(1859 $(seq 1869 10 2009) 2014) | ||
years1=($(seq 1910 10 2000) 2010) | ||
years2=($(seq 1919 10 2009) 2014) | ||
|
||
runcmor -c=$CaseName -m=$model -e=$expid -v=$version -r=$real -p=$physics -f=$forcing -i=$init -yrs1="${years1[*]}" -yrs2="${years2[*]}" -mpi=DMPI | ||
#--- | ||
fi | ||
#--- | ||
|
||
wait | ||
echo " " | ||
echo "CMOR DONE" | ||
echo "$(date) " | ||
echo "~~~~~~~~~" | ||
|
||
# PrePARE QC check, create links and update sha256sum | ||
#${CMOR_ROOT}/workflow/cmorPost.sh -m=${model} -e=${expid} -v=${version} --verbose=false |
Oops, something went wrong.