1 | #!/bin/bash |
---|
2 | |
---|
3 | ################################################################################# |
---|
4 | # A.I : 1e version : Decembre 2019 |
---|
5 | # Reprise Mars 2020 |
---|
6 | # installer les scripts de post-traitement multi-atlas pour LMDZ sur une machine |
---|
7 | # le packege sera integrer sous svn aux sources du modele ..../BOL/ |
---|
8 | # Ce script permet de definir les differents repertoires en fonction de la machine |
---|
9 | # Permet de creer les sscripts job_multi.sh et atlas.sh |
---|
10 | ################################################################################# |
---|
11 | # Definition des coleurs d'affichage |
---|
12 | noir='\e[0;30m' gris='\e[1;30m' rougefonce='\e[0;31m' rose='\e[1;31m' vertfonce='\e[0;32m' vertclair='\e[1;32m' orange='\e[0;33m' jaune='\e[1;33m' bleufonce='\e[0;34m' bleuclair='\e[1;34m' violetfonce='\e[0;35m' violetclair='\e[1;35m' cyanfonce='\e[0;36m' cyanclair='\e[1;36m' grisclair='\e[0;37m' blanc='\e[1;37m' neutre='\e[0;m' |
---|
13 | ## |
---|
14 | ## |
---|
15 | # AI avril 2020 : A FAIRE : |
---|
16 | # Utiliser des fonctions entete, ... |
---|
17 | # A function pour definir l entete du job en fonction de la machine |
---|
18 | #function jobentete { #1er argument doit etre le nom de la machine |
---|
19 | |
---|
20 | #set -x |
---|
21 | # Nom machine et compte |
---|
22 | hostname=`hostname` |
---|
23 | login=`whoami` |
---|
24 | |
---|
25 | # Definitions en fonction de la machine |
---|
26 | # CICLAD |
---|
27 | if [ ${hostname:0:5} = cicla ] ; then |
---|
28 | # chemin vers le rep dods de base |
---|
29 | DODSDIR=/prodigfs/ipslfs/dods |
---|
30 | # Rep ou sont stockes les multiatlas |
---|
31 | MULTIDIR=$DODSDIR/$login/lmdz/MultiSimu |
---|
32 | if [ ! -d $MULTIDIR ] ; then mkdir -p $MULTIDIR ; fi |
---|
33 | |
---|
34 | # Def entete des job |
---|
35 | cat <<eod >> entete.sh |
---|
36 | #PBS -N atlas |
---|
37 | #PBS -m a |
---|
38 | #PBS -j oe |
---|
39 | #PBS -q h12 |
---|
40 | #PBS -o atlasNOMSIMULATION.out |
---|
41 | #PBS -S /bin/bash |
---|
42 | #PBS -l nodes=1:ppn=1 |
---|
43 | #PBS -l mem=30gb |
---|
44 | #PBS -l vmem=30gb |
---|
45 | # |
---|
46 | # Commande pour soumettre en bash |
---|
47 | submit=qsub |
---|
48 | |
---|
49 | login=$login |
---|
50 | DODSDIR=$DODSDIR |
---|
51 | eod |
---|
52 | fi |
---|
53 | |
---|
54 | # CLIMSERV |
---|
55 | if [ ${hostname:0:5} = camel ] ; then |
---|
56 | DODSDIR=/prodigfs/ipslfs/dods |
---|
57 | cat <<eod > entete.sh |
---|
58 | #PBS -N atlas |
---|
59 | #PBS -m a |
---|
60 | #PBS -j oe |
---|
61 | #PBS -q h12 |
---|
62 | #PBS -o atlasNOMSIMULATION.out |
---|
63 | #PBS -S /bin/bash |
---|
64 | #PBS -l nodes=1:ppn=1 |
---|
65 | #PBS -l mem=30gb |
---|
66 | #PBS -l vmem=30gb |
---|
67 | # |
---|
68 | # Commande pour soumettre en bash |
---|
69 | submit=qsub |
---|
70 | eod |
---|
71 | fi |
---|
72 | |
---|
73 | # IRENE |
---|
74 | if [ ${hostname:0:5} = irene ] ; then |
---|
75 | cat <<eod > definerep.sh |
---|
76 | MAIN_SE= |
---|
77 | TS_DA= |
---|
78 | TS_MO= |
---|
79 | MULTIDIR= |
---|
80 | groupe= |
---|
81 | eod |
---|
82 | cat <<eod > entete.sh |
---|
83 | ###################### |
---|
84 | ## IRENE TGCC/CEA ## |
---|
85 | ###################### |
---|
86 | #MSUB -r multiatlas # Job name |
---|
87 | #MSUB -o multi.out_%I |
---|
88 | #MSUB -e multi.out_%I |
---|
89 | #MSUB -n 1 |
---|
90 | #MSUB -T 36000 # Maximum elapsed time |
---|
91 | #MSUB -q xlarge |
---|
92 | #MSUB -c 8 |
---|
93 | #MSUB -Q normal |
---|
94 | #MSUB -A $groupe |
---|
95 | #MSUB -m store,work,scratch |
---|
96 | # |
---|
97 | # Commande pour soumettre en bash |
---|
98 | submit=ccc_msub |
---|
99 | eod |
---|
100 | fi |
---|
101 | |
---|
102 | # JEAN- |
---|
103 | if [ ${hostname:0:5} = jean- ] ; then |
---|
104 | cat <<eod > definerep.sh |
---|
105 | MAIN_SE= |
---|
106 | TS_DA= |
---|
107 | TS_MO= |
---|
108 | MULTIDIR= |
---|
109 | groupe= |
---|
110 | eod |
---|
111 | cat <<eod > entete.sh |
---|
112 | ###################### |
---|
113 | ## IRENE TGCC/CEA ## |
---|
114 | ###################### |
---|
115 | #MSUB -r multiatlas # Job name |
---|
116 | #MSUB -o multi.out_%I |
---|
117 | #MSUB -e multi.out_%I |
---|
118 | #MSUB -n 1 |
---|
119 | #MSUB -T 36000 # Maximum elapsed time |
---|
120 | #MSUB -q xlarge |
---|
121 | #MSUB -c 8 |
---|
122 | #MSUB -Q normal |
---|
123 | #MSUB -A $groupe |
---|
124 | #MSUB -m store,work,scratch |
---|
125 | # |
---|
126 | # Commande pour soumettre en bash |
---|
127 | submit=sbash |
---|
128 | eod |
---|
129 | fi |
---|
130 | |
---|
131 | # PC (formation et perso linux) |
---|
132 | |
---|
133 | # Machines locales lmd |
---|
134 | |
---|
135 | local=`pwd -P` |
---|
136 | |
---|
137 | echo -e "${noir}%%%%%%%%%%%%%%%%%%%%%%%%% ${rougefonce} MULTIATLAS LMDZ ${noir}%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%" |
---|
138 | echo -e "${vertfonce}" To create your multi-atlas you needs : |
---|
139 | echo 1. to create your multiatlas directory "example Multi01" : |
---|
140 | echo - mkdir -p /prodigfs/ipslfs/dods/$login/lmdz/MultiSimu/Multi01 |
---|
141 | echo 2. to define some characeristics of your multi-atlas "names, dates, description of simulations and atlas variables" : |
---|
142 | echo - cp Utils/def.txt Utils/atlas-def /prodigfs/ipslfs/dods/$login/lmdz/MultiSimu/Multi01/. |
---|
143 | echo define "names, date, description" of simulations in file : |
---|
144 | echo - /prodigfs/ipslfs/dods/$login/lmdz/MultiSimu/Multi01/def.txt |
---|
145 | echo define atlas variables in file |
---|
146 | echo - /prodigfs/ipslfs/dods/$login/lmdz/MultiSimu/Multi01/atlas-def |
---|
147 | echo 3. Add the link to the simulation outputs in your file : $local/runs.txt |
---|
148 | |
---|
149 | rm -f job_multi.sh |
---|
150 | cat entete.sh >| job_multi.sh |
---|
151 | cat Utils/multi.sh >> job_multi.sh |
---|
152 | chmod +x job_multi.sh |
---|
153 | |
---|
154 | rm -f atlas.sh |
---|
155 | cat entete.sh >| atlas.sh |
---|
156 | cat Utils/atlas0.sh >> atlas.sh |
---|
157 | chmod +x atlas.sh |
---|
158 | \mv atlas.sh atlas/. |
---|
159 | |
---|
160 | echo 4. Then you can run your multiatlas : |
---|
161 | echo ./job_multi.sh Multi01 |
---|
162 | echo -e "${noir}%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%" |
---|