Last change
on this file since 3810 was
3737,
checked in by idelkadi, 4 years ago
|
Repository under svn of a first version of Multiatlas diagnostics for LMDZ. This version is adapted to be able to run a LMDZ multiatlas on an individual account on the ciclad machine of the IPSL. In this version, the parts to be modified are identified so as to subsequently adapt it to other machines.
Modifications following changes and simplification of access from CICLAD / ClimServ?? to the different "thredds"
|
-
Property svn:executable set to
*
|
File size:
1.0 KB
|
Line | |
---|
1 | #!/bin/bash |
---|
2 | |
---|
3 | comp=$1 |
---|
4 | |
---|
5 | local=`pwd -P` |
---|
6 | login=`whoami` |
---|
7 | hostname=`hostname` |
---|
8 | if [ ${hostname:0:5} = cicla ] ; then |
---|
9 | DODSDIR=/modfs/ipslfs/dods |
---|
10 | HTML00=http://vesg.ipsl.upmc.fr/thredds/fileServer/IPSLFS/$login |
---|
11 | machine=ciclad |
---|
12 | fi |
---|
13 | if [ ${hostname:0:5} = camel ] ; then |
---|
14 | DODSDIR=/modfs/ipslfs/dods |
---|
15 | fi |
---|
16 | if [ ${hostname:0:5} = irene ] ; then |
---|
17 | DODSDIR= |
---|
18 | fi |
---|
19 | if [ ${hostname:0:5} = jean- ] ; then |
---|
20 | DODSDIR= |
---|
21 | fi |
---|
22 | |
---|
23 | COMP_D=$DODSDIR/$login/lmdz/MultiSimu/$comp |
---|
24 | entetef=$COMP_D/entete.html |
---|
25 | |
---|
26 | ############################################################################# |
---|
27 | |
---|
28 | compf=$COMP_D/AXE5.html |
---|
29 | HTML=$HTML00/lmdz/MultiSimu/$comp |
---|
30 | |
---|
31 | cat $entetef > $compf |
---|
32 | |
---|
33 | echo '<hr>' >> $compf |
---|
34 | |
---|
35 | cat <<eod>> $compf |
---|
36 | <h1> Cette page n'attend que les ajouts de l'Axe 5: Moyennes latitudes (dynamique et couplage avec l'océan)</h1> |
---|
37 | |
---|
38 | <hr> |
---|
39 | Responsable : Francis Codron <br> |
---|
40 | Francis.Codron@locean-ipsl.upmc.fr <br> |
---|
41 | Liste de diffusion : lmdz_moyennes_latitudes@mailhost.lmd.jussieu.fr |
---|
42 | |
---|
43 | |
---|
44 | </body> |
---|
45 | </html> |
---|
46 | eod |
---|
47 | |
---|
48 | echo $compf | sed -e 's:/modfs/ipslfs/dods/:http\://vesg.ipsl.upmc.fr/thredds/fileServer/IPSLFS/:' |
---|
49 | |
---|
Note: See
TracBrowser
for help on using the repository browser.