Last change
on this file since 4148 was
3881,
checked in by musat, 4 years ago
|
Changement des PATHS sur ciclad
|
-
Property svn:executable set to
*
|
File size:
1.4 KB
|
Line | |
---|
1 | #!/bin/bash |
---|
2 | |
---|
3 | local=`pwd -P` |
---|
4 | login=`whoami` |
---|
5 | hostname=`hostname` |
---|
6 | if [ ${hostname:0:5} = cicla ] ; then |
---|
7 | DODSDIR=/thredds/ipsl |
---|
8 | HTML00=http://vesg.ipsl.upmc.fr/thredds/fileServer/IPSLFS/$login |
---|
9 | machine=ciclad |
---|
10 | fi |
---|
11 | if [ ${hostname:0:5} = camel ] ; then |
---|
12 | DODSDIR=/thredds/ipsl |
---|
13 | fi |
---|
14 | if [ ${hostname:0:5} = irene ] ; then |
---|
15 | DODSDIR= |
---|
16 | fi |
---|
17 | if [ ${hostname:0:5} = jean- ] ; then |
---|
18 | DODSDIR= |
---|
19 | fi |
---|
20 | |
---|
21 | set -x |
---|
22 | comp=$1 |
---|
23 | MULTIDIR=$DODSDIR/$login/lmdz/MultiSimu |
---|
24 | COMP_D=$MULTIDIR/$comp |
---|
25 | PCMDI_D=$COMP_D/PCMDI |
---|
26 | |
---|
27 | # html pour les métriques |
---|
28 | cat $COMP_D/entete.html doc_pcmdi.html >| $COMP_D/PCMDI.html |
---|
29 | ref=`echo $listsimss | awk ' { print $1 } '` |
---|
30 | echo "<h1> Metrics with respect to forced-by-SST AMIP multi model </h1>" >> $COMP_D/PCMDI.html |
---|
31 | cat $PCMDI_D/rms_xyt-CMIP5_AMIP-metrics.html >> $COMP_D/PCMDI.html |
---|
32 | echo "<h1> Metrics with respect to coupled CMIP5 simulations (historical)</h1>" >> $COMP_D/PCMDI.html |
---|
33 | cat $PCMDI_D/rms_xyt-CMIP5_historical-metrics.html >> $COMP_D/PCMDI.html |
---|
34 | echo "<h1> Metrics with respect to IPSLCM5A-LR (clim A verifier) </h1>" >> $COMP_D/PCMDI.html |
---|
35 | cat $PCMDI_D/rms_xyt-AR4-metrics.html >> $COMP_D/PCMDI.html |
---|
36 | |
---|
37 | #bias_xy-AR4-metrics.html bias_xy-CMIP5_historical-metrics.html cor_xyt-CMIP5_AMIP-metrics.html rms_xyt-AR4-metrics.html rms_xyt-CMIP5_historical-metrics.html |
---|
38 | #bias_xy-CMIP5_AMIP-metrics.html cor_xyt-AR4-metrics.html cor_xyt-CMIP5_historical-metrics.html rms_xyt-CMIP5_AMIP-metrics.html |
---|
39 | |
---|
Note: See
TracBrowser
for help on using the repository browser.