[3697] | 1 | #!/bin/bash |
---|
[3684] | 2 | |
---|
[4330] | 3 | #set -x |
---|
[4307] | 4 | |
---|
[4341] | 5 | source ~/env_Multi_atlas.sh |
---|
[4330] | 6 | |
---|
[3684] | 7 | ########################################################################### |
---|
| 8 | ########################################################################### |
---|
| 9 | # Traitement d'une serie d'experiences se trouvant sur le repertoire |
---|
| 10 | # $ROOTSTORAGE/$EXPNAME |
---|
| 11 | # L'organisation des fichiers suit celle de libIGCM |
---|
| 12 | # Une simulation sera par exemple stokÃee sur |
---|
| 13 | # $ROOTSTORAGE/$EXPNAME/${run}/ATM/Analyse/${run}_SE_1980_1986_1M_hitsmth.nc |
---|
| 14 | # /ATLAS/Analyse/SE/${run}_base |
---|
| 15 | # le script cree eventuellement les atlas si ils n'existent pas |
---|
| 16 | # calcule les valeurs inglobales (flux au sommet, prÃecip ...) |
---|
| 17 | # publie l'ensemble sur DODS |
---|
| 18 | # et cree un fichier html pointant vers cette arborescence dods. |
---|
| 19 | ########################################################################### |
---|
| 20 | ########################################################################### |
---|
| 21 | |
---|
[4307] | 22 | logname=aidel |
---|
[3684] | 23 | comp=COMP |
---|
[4330] | 24 | EXPNAME=NPV5LRL79 |
---|
| 25 | put=cp |
---|
[3684] | 26 | |
---|
| 27 | helptext=" |
---|
| 28 | --help Ce manuel |
---|
| 29 | --run Nom de la simulation |
---|
| 30 | --id Nom du repertoire contenant la simuation a partir de $STORAGE |
---|
| 31 | --wd Nom du repetoire temporaire |
---|
| 32 | --origwww Au cas ou les simulations viennent d ailleurs |
---|
| 33 | " |
---|
| 34 | |
---|
| 35 | while test -n "${1}"; do |
---|
| 36 | case "${1}" in |
---|
| 37 | --help) echo "$helptext"; |
---|
| 38 | exit 0;; |
---|
| 39 | --comp) comp="${2}" |
---|
| 40 | shift;; |
---|
[4307] | 41 | --runstxt) runstxt="${2}" |
---|
| 42 | shift ;; |
---|
[3684] | 43 | --id) CONFIGNAME="${2}" |
---|
| 44 | shift;; |
---|
| 45 | --wd) ROOTWORK="${2}" |
---|
| 46 | shift;; |
---|
| 47 | --origwww) ROOTWEBORIG="${2}" |
---|
| 48 | shift;; |
---|
| 49 | *) echo "make_se.sh: argument non reconnu ${1}"; exit 1;; |
---|
| 50 | esac |
---|
| 51 | shift |
---|
| 52 | done |
---|
| 53 | |
---|
[4341] | 54 | HTML=http://${dthredds}/$login/lmdz/MultiSimu/$comp |
---|
| 55 | MULTIDIR=${DODSDIR}/${login}/lmdz/MultiSimu |
---|
[4330] | 56 | COMP_D=$MULTIDIR/$comp |
---|
| 57 | DEF_FILE=$COMP_D/def.txt |
---|
| 58 | HTML_D=$COMP_D |
---|
[4341] | 59 | CICLAD=/thredds/ipsl/${login}/lmdz |
---|
| 60 | ROOTWORK=$CICLAD |
---|
[4330] | 61 | |
---|
| 62 | #################################################################### |
---|
[3684] | 63 | glob=1 |
---|
| 64 | |
---|
| 65 | # Version Abderrahmane/centres de caclcul |
---|
| 66 | listevar="bils fnet tops topl topl0 crfsw crflw crfnet eva pr prw " |
---|
| 67 | # Version ciclad multi-atlas |
---|
| 68 | listevar="bils rt rst rlut rlutcs crest crelt cret eva pr prw " |
---|
| 69 | listevalvar="7.097 0.7823 240.4 239.6 269.4 -47.05 29.84 -17.21 3.415 2.61 27.46 " |
---|
| 70 | |
---|
| 71 | |
---|
| 72 | ########################################################################### |
---|
| 73 | # CREATION DE L'ENTETE DU FICHIER html |
---|
| 74 | ########################################################################### |
---|
| 75 | |
---|
| 76 | # Horrible astuce pour controler a peu pres la longueur des chaines |
---|
| 77 | # de caractere pour la description des simus |
---|
| 78 | longn=`wc -lc $DEF_FILE | awk ' { print int ( $2 / $1 / 2 ) } '` |
---|
| 79 | longc="" ; i=0 ; while [ $i != $longn ] ; do (( i = $i + 1 )) ; longc="$longc"_ ; done |
---|
| 80 | |
---|
[4307] | 81 | htmlfile=$CICLAD/HTML/tmp.html ; rm -f $htmlfile ; touch $htmlfile |
---|
| 82 | errfile=$CICLAD/HTML/tmphtml$$.err ; rm -f $errfile ; touch $errfile |
---|
[3684] | 83 | D_work=$ROOTWORK/tmp_makehtml$$ ; rm -rf $D_work ; mkdir -p $D_work |
---|
| 84 | emptyelt='<td> - </td>' |
---|
[4307] | 85 | |
---|
[3684] | 86 | cat <<eod>| $htmlfile |
---|
| 87 | <table cellpadding="2" cellspacing="2" border="1" |
---|
| 88 | style="text-align: left; width: 100px; margin-left: auto; |
---|
| 89 | margin-right: auto;"> |
---|
| 90 | <tr> |
---|
[4314] | 91 | <td><a href="https://thredds-su.ipsl.fr/thredds/fileServer/ipsl_thredds/${login}/lmdz/MultiSimu/$comp/def.txt"> RUN (link to outputs) </a></td> |
---|
[3684] | 92 | <td> Atlas YEAR</td> |
---|
| 93 | <td> Atlas --DJF-- </td> |
---|
| 94 | <td> Atlas --JJA-- </td> |
---|
[4307] | 95 | <td> Atlas --MAM-- </td> |
---|
| 96 | <td> Atlas --SON-- </td> |
---|
[3684] | 97 | <td> Description of the simulation $longc </td> |
---|
| 98 | <td> Period </td> |
---|
| 99 | <td> Name (link to parameters) </td> |
---|
| 100 | eod |
---|
| 101 | |
---|
| 102 | if [ $glob = 1 ] ; then |
---|
| 103 | for var in $listevar ; do |
---|
| 104 | echo '<td> '$var' </td>' >> $htmlfile |
---|
| 105 | done |
---|
| 106 | fi |
---|
| 107 | |
---|
| 108 | ################CLIMATOS################################################## |
---|
| 109 | echo '<tr>' >> $htmlfile |
---|
| 110 | echo "<td> CLIMATOS </td>" >> $htmlfile |
---|
| 111 | echo "<td> </td>" >> $htmlfile |
---|
| 112 | echo "<td> </td>" >> $htmlfile |
---|
| 113 | echo "<td> </td>" >> $htmlfile |
---|
| 114 | echo "<td> </td>" >> $htmlfile |
---|
| 115 | echo "<td> </td>" >> $htmlfile |
---|
| 116 | echo "<td> </td>" >> $htmlfile |
---|
[4307] | 117 | echo "<td> </td>" >> $htmlfile |
---|
| 118 | echo "<td> </td>" >> $htmlfile |
---|
[3684] | 119 | if [ $glob = 1 ] ; then |
---|
| 120 | for var in $listevalvar ; do |
---|
| 121 | echo '<td> '$var' </td>' >> $htmlfile |
---|
| 122 | done |
---|
| 123 | fi |
---|
| 124 | echo '<tr>' >> $htmlfile |
---|
| 125 | |
---|
| 126 | lc=`wc -l $DEF_FILE | awk ' { print $1 } '` |
---|
| 127 | ll=1 |
---|
| 128 | ########################################################################### |
---|
| 129 | # DEBUT DE LA BOUCLE SUR LES SIMULATIONS |
---|
| 130 | while [ $ll -le $lc ] ; do |
---|
| 131 | #for sim in `awk ' {print $1} ' $DEF_FILE` ; do |
---|
| 132 | line=`sed -n -e ${ll}p $DEF_FILE` |
---|
| 133 | sim=`echo $line | awk ' { print $1 } '` |
---|
| 134 | simdir=`grep -w "^$sim " $runstxt | awk ' { print $2 } '` |
---|
[4307] | 135 | echo simdir $simdir |
---|
[3684] | 136 | run=`basename $simdir ` |
---|
| 137 | years=`echo $line | awk ' { print $2 } '` |
---|
[4307] | 138 | # years=`grep '^'$run' ' $DEF_FILE | awk ' { print $2 }'` |
---|
[3684] | 139 | yearsb=`echo $years | sed -e 's/_/-/'` |
---|
| 140 | echo run $run |
---|
| 141 | echo '<tr>' >> $htmlfile |
---|
| 142 | ########################################################################### |
---|
| 143 | |
---|
| 144 | |
---|
| 145 | |
---|
| 146 | NCFILE=${run}_SE_${years}_1M_histmth.nc |
---|
| 147 | |
---|
[4307] | 148 | # AI partie rapat |
---|
| 149 | #$home/Diagnos_v6/dods_publi.sh $EXPNAME/$run/DEBUG |
---|
| 150 | #Mettre les sorties sur dods |
---|
| 151 | #$home/Diagnos_v6/dods_publi.sh $EXPNAME/$run/ATM/Output |
---|
| 152 | #Mettre les sorties sur dods les restart |
---|
| 153 | #$home/Diagnos_v6/dods_publi.sh $EXPNAME/$run/RESTART |
---|
| 154 | |
---|
| 155 | |
---|
[3684] | 156 | #-------------------------------------------------------------------------- |
---|
| 157 | # Liens vers les fichiers, monitoring et atlas |
---|
| 158 | #-------------------------------------------------------------------------- |
---|
[4307] | 159 | # echo "<td><a href=\"$ROOTWEBatlas/"$run"\"> "$run" </a></td>" >> $htmlfile |
---|
[3684] | 160 | echo "<td><a href=\"$ROOTWEB_PRODout/"$run"/catalog.html\"> "$sim" </a></td>" >> $htmlfile |
---|
| 161 | |
---|
| 162 | D_SE=$run/ATM/Analyse/SE |
---|
| 163 | |
---|
| 164 | echo OK0 |
---|
| 165 | # if [ -f "$ROOTSTORAGE/$D_SE/$NCFILE" ] ; then |
---|
| 166 | if [ 1 = 1 ] ; then |
---|
| 167 | |
---|
[4307] | 168 | for SEAS in YEAR DJF JJA MAM SON ; do |
---|
[3684] | 169 | echo '<td>' >> $htmlfile |
---|
| 170 | for PROJ in GLOB NH SH ; do |
---|
| 171 | atlas=index_${PROJ}_${SEAS}_${run}_$years.html |
---|
| 172 | echo Chemin atlas |
---|
| 173 | echo $COMP_D/ATLAS/$atlas |
---|
| 174 | if [ -f $COMP_D/ATLAS/$atlas ] ; then |
---|
| 175 | atlasf=$COMP_D/ATLAS/$atlas |
---|
| 176 | else # Ancienne version des scripts d'atlas : |
---|
| 177 | atlasf=$ROOTSTORAGE/$run/ATLAS/SE_$years/ATM/$atlas |
---|
| 178 | fi |
---|
[4307] | 179 | ###atlas_html=`echo $atlasf | sed -e 's:/thredds/ipsl/:http\://thredds-su.ipsl.fr/thredds/fileServer/ipsl_thredds/:'` |
---|
| 180 | atlas_html=`echo $atlasf | sed -e 's:/thredds/ipsl/:http\://thredds-su.ipsl.fr/thredds/fileServer/ipsl_thredds/:'` |
---|
[3684] | 181 | echo atlas_html $atlas_html |
---|
| 182 | echo atlasf $atlasf |
---|
| 183 | if [ -f $atlasf ] ; then |
---|
| 184 | echo "<a href=\"$atlas_html\"> ${PROJ:0:1} </a>" |
---|
| 185 | echo "<a href=\"$atlas_html\"> ${PROJ:0:1} </a>" >> $htmlfile |
---|
| 186 | else |
---|
| 187 | echo "-" >> $htmlfile |
---|
| 188 | echo Le fichier $atlas_html n\'existe pas |
---|
| 189 | fi |
---|
| 190 | done |
---|
| 191 | echo '</td>' >> $htmlfile |
---|
| 192 | done |
---|
| 193 | |
---|
| 194 | |
---|
| 195 | #-------------------------------------------------------------------------- |
---|
| 196 | else # Cas ou le fichier histmth.nc n est pas present |
---|
| 197 | #-------------------------------------------------------------------------- |
---|
| 198 | echo Le fichier $ROOTSTORAGE/"$run"/$D_SE/$NCFILE n\'existe pas >> $errfile |
---|
| 199 | for i in 1 2 3 ; do |
---|
| 200 | echo "$emptyelt" >> $htmlfile |
---|
| 201 | done |
---|
| 202 | fi |
---|
| 203 | |
---|
| 204 | # Parametres testes par rapport a la simulation de Ref |
---|
| 205 | grep "^$sim " $DEF_FILE | grep $years | sed -e 's/'$years'//' -e 's/'$sim'/<td>/' -e 's/$/<\/td>/' >> $htmlfile |
---|
| 206 | echo '<td> '$years' </td>' >> $htmlfile |
---|
| 207 | |
---|
| 208 | echo "<td><a href=\"$ROOTWEB_PROD/"$run"/catalog.html\"> "$sim" </a></td>" >> $htmlfile |
---|
| 209 | #-------------------------------------------------------------------------- |
---|
| 210 | # Parametres globaux |
---|
| 211 | #-------------------------------------------------------------------------- |
---|
| 212 | echo OK0 |
---|
| 213 | if [ $glob = 1 ] ; then |
---|
[4307] | 214 | echo OK GGGGGGGGGGGGG $glob |
---|
| 215 | listeval="" |
---|
| 216 | echo LISTEVAR $listevar |
---|
| 217 | # echo NCFILE $NCFILE |
---|
| 218 | for var in $listevar ; do |
---|
| 219 | echo $ROOTWORK/VLR/YEAR/${sim}_$years/METRICS/glob |
---|
| 220 | # if [ -f "$ROOTSTORAGE/$run/ATM/Analyse/Bilans/$years/${run}_bilans.data" ] ; then |
---|
| 221 | # if [ -f "$ROOTWORK/VLR/YEAR/${run}_$years/METRICS/glob" ] ; then |
---|
| 222 | if [ -f "$ROOTWORK/VLR/YEAR/${sim}_$years/METRICS/glob" ] ; then |
---|
[3684] | 223 | val=`grep "^$var " $ROOTWORK/VLR/YEAR/${sim}_$years/METRICS/glob | awk ' { print $2 }' ` |
---|
| 224 | echo $val |
---|
| 225 | else |
---|
| 226 | val=. |
---|
| 227 | fi |
---|
| 228 | listeval="$listeval <td> $val </td>" |
---|
| 229 | done |
---|
| 230 | echo $listeval |
---|
| 231 | echo $listeval >> $htmlfile |
---|
| 232 | fi # glob |
---|
| 233 | echo LISTEVAL $listeval |
---|
| 234 | |
---|
[4307] | 235 | |
---|
[3684] | 236 | ########################################################################### |
---|
| 237 | # FIN DE LA BOUCLE SUR LES SIMULATIONS |
---|
| 238 | ########################################################################### |
---|
| 239 | echo '</tr>' >> $htmlfile |
---|
| 240 | (( ll = $ll + 1 )) |
---|
| 241 | done |
---|
| 242 | echo $htmlfile |
---|
| 243 | |
---|
| 244 | ############################################################################# |
---|
| 245 | # Traitement eventuel des comparaisons |
---|
| 246 | ############################################################################# |
---|
| 247 | |
---|
| 248 | echo '<tr>' >> $htmlfile |
---|
| 249 | |
---|
| 250 | if [ -f cmp.liste ] ; then |
---|
| 251 | |
---|
| 252 | for cmp in `awk ' { print $1 } ' cmp.liste` ; do |
---|
| 253 | |
---|
| 254 | descr=`grep "$cmp " cmp.liste | awk ' { print $2 } '` |
---|
| 255 | |
---|
| 256 | # Rajout des courbes de comparaison entre simulations |
---|
| 257 | echo '<tr>' >> $htmlfile |
---|
| 258 | echo "<td> $cmp </td>" >> $htmlfile |
---|
| 259 | echo "<td><a href=\"$ROOTWEB/$cmp/ATLAS\"> X </a></td>" >> $htmlfile |
---|
| 260 | echo "<td> X </td>" >> $htmlfile |
---|
| 261 | echo "<td> X </td>" >> $htmlfile |
---|
| 262 | echo "<td><a href=\"$ROOTWEB/$cmp/MoyZon/$years/catalog.html\"> "X" </a></td>" >> $htmlfile |
---|
| 263 | echo "<td><a href=\"$ROOTWEB/$cmp/CRF/$years/catalog.html\"> "X" </a></td>" >> $htmlfile |
---|
| 264 | echo "<td> X </td>" >> $htmlfile |
---|
| 265 | echo "<td> X </td>" >> $htmlfile |
---|
| 266 | echo "<td> X </td>" >> $htmlfile |
---|
| 267 | echo "<td> X </td>" >> $htmlfile |
---|
| 268 | echo "<td> X </td>" >> $htmlfile |
---|
| 269 | echo "<td> $descr </td>" >> $htmlfile |
---|
| 270 | echo '</tr>' >> $htmlfile |
---|
| 271 | |
---|
| 272 | done |
---|
| 273 | fi |
---|
| 274 | |
---|
| 275 | echo '</table>' >> $htmlfile |
---|
| 276 | ########################################################################### |
---|
| 277 | |
---|
| 278 | mkdir -p $HTML_D |
---|
[4307] | 279 | $put $htmlfile $HTML_D/Table_simulations_$comp.html |
---|
| 280 | echo $put $htmlfile $HTML_D/Table_simulations_$comp.html |
---|
[3684] | 281 | |
---|
[4307] | 282 | #$home/Diagnos_v6/dods_publi.sh $EXPNAME/HTML |
---|