Last change
on this file since 4333 was
4307,
checked in by musat, 2 years ago
|
Fusion entre la version commune (compte fabric) et la version perso
du multi-atlas incluant
- la fiabilisation de la realisation des cartes
- la correction des coupes (latitude,altitude) pour les biais
- l'ajout d'une option pour des multi-atlas par rapport a une simulation de reference
- l'ajout d'options pour un multi-atlas regional
- la mise a jour des thredds (repertoire & html) pour ciclad
IonelaMusat?
|
-
Property svn:executable set to
*
|
File size:
1.6 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 | dthredds=thredds-su.ipsl.fr/thredds/fileServer/ipsl_thredds |
---|
9 | HTML00=http://${dthredds}/$login |
---|
10 | machine=ciclad |
---|
11 | fi |
---|
12 | if [ ${hostname:0:5} = spiri ] ; then |
---|
13 | DODSDIR=/thredds/ipsl |
---|
14 | dthredds=thredds-su.ipsl.fr/thredds/fileServer/ipsl_thredds |
---|
15 | HTML00=http://${dthredds}/$login |
---|
16 | machine=spirit |
---|
17 | fi |
---|
18 | if [ ${hostname:0:5} = camel ] ; then |
---|
19 | DODSDIR=/thredds/ipsl |
---|
20 | fi |
---|
21 | if [ ${hostname:0:5} = irene ] ; then |
---|
22 | DODSDIR= |
---|
23 | fi |
---|
24 | if [ ${hostname:0:5} = jean- ] ; then |
---|
25 | DODSDIR= |
---|
26 | fi |
---|
27 | |
---|
28 | set -x |
---|
29 | comp=$1 |
---|
30 | MULTIDIR=$DODSDIR/$login/lmdz/MultiSimu |
---|
31 | COMP_D=$MULTIDIR/$comp |
---|
32 | PCMDI_D=$COMP_D/PCMDI |
---|
33 | |
---|
34 | # html pour les métriques |
---|
35 | cat $COMP_D/entete.html doc_pcmdi.html >| $COMP_D/PCMDI.html |
---|
36 | ref=`echo $listsimss | awk ' { print $1 } '` |
---|
37 | echo "<h1> Metrics with respect to forced-by-SST AMIP multi model </h1>" >> $COMP_D/PCMDI.html |
---|
38 | cat $PCMDI_D/rms_xyt-CMIP5_AMIP-metrics.html >> $COMP_D/PCMDI.html |
---|
39 | echo "<h1> Metrics with respect to coupled CMIP5 simulations (historical)</h1>" >> $COMP_D/PCMDI.html |
---|
40 | cat $PCMDI_D/rms_xyt-CMIP5_historical-metrics.html >> $COMP_D/PCMDI.html |
---|
41 | echo "<h1> Metrics with respect to IPSLCM5A-LR (clim A verifier) </h1>" >> $COMP_D/PCMDI.html |
---|
42 | cat $PCMDI_D/rms_xyt-AR4-metrics.html >> $COMP_D/PCMDI.html |
---|
43 | |
---|
44 | #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 |
---|
45 | #bias_xy-CMIP5_AMIP-metrics.html cor_xyt-AR4-metrics.html cor_xyt-CMIP5_historical-metrics.html rms_xyt-CMIP5_AMIP-metrics.html |
---|
46 | |
---|
Note: See
TracBrowser
for help on using the repository browser.