MHD - advanced ring - vacuum and plasma shots

From #41655 to #42630 with t_plasma_duration_limit=7 with plasma within +/- 10 from vacuum shot

VACUUM SHOTPLASMA SHOT
ShotNoBasic diagnosticsMHD diagnosticsShotNoBasic diagnosticsMHD diagnostics
Date: 23-05-15, Parameters: U_bt=1200V, U_cd=450V, t_bt=0us, t_cd=350us
41794
17:55:29
41796
18:06:19
Date: 23-05-15, Parameters: U_bt=1200V, U_cd=450V, t_bt=0us, t_cd=350us
41807
19:07:08
41811
19:24:29
Date: 23-05-15, Parameters: U_bt=1200V, U_cd=450V, t_bt=0us, t_cd=350us
41814
20:36:30
41811
19:24:29
Date: 23-05-23, Parameters: U_bt=800V, U_cd=500V, t_bt=0us, t_cd=1000us
41906
16:52:43
41907
16:56:38
Date: 23-06-05, Parameters: U_bt=800V, U_cd=500V, t_bt=0us, t_cd=500us
42052
18:51:00
42054
18:58:57
Date: 23-06-05, Parameters: U_bt=800V, U_cd=500V, t_bt=0us, t_cd=500us
42052
18:51:00
42056
19:06:35
Date: 23-06-05, Parameters: U_bt=800V, U_cd=500V, t_bt=0us, t_cd=500us
42052
18:51:00
42057
19:11:14
Date: 23-06-05, Parameters: U_bt=800V, U_cd=350V, t_bt=0us, t_cd=500us
42063
19:35:53
42065
19:44:18
Alltogether 8 combinations

For generation bash script used

from=41655
#to=43571
to=42630
soubor=index.html; 
url=https://golem.fjfi.cvut.cz/shots/
t_plasma_duration_limit=7
interval=10
title='MHD - advanced ring - vacuum and plasma shots '
#url=/shots

echo "<html><body>
<h1>$title</h1>
<h2>From #$from to #$to with t_plasma_duration_limit=$t_plasma_duration_limit with plasma within +/- $interval from vacuum shot</h2>
<table>" > $soubor;
echo "<tr><th colspan=3>VACUUM SHOT</th><th colspan=3>PLASMA SHOT</th></tr>" >> $soubor;
echo "<tr><th>ShotNo</th><th>Basic diagnostics</th><th>MHD diagnostics</th><th>ShotNo</th><th>Basic diagnostics</th><th>MHD diagnostics</th></tr>" >> $soubor;
Counter=0
for i in `seq $from $to|grep '41906\|41794\|41807\|41814\|42052\|42063\|42082|'`; do echo -ne '*'$i:; 
if [[ $(< /golem/shots/$i/Diagnostics/BasicDiagnostics/DetectPlasma/Results/b_plasma) == "0.000" ]]; then
    echo  Vacuum shot '*'$i yes
    for j in `seq $((i-interval)) $((i+interval))`; 
    do echo -ne tested '*'$j:;
        if [[ `echo $(</golem/shots/$j/Diagnostics/BasicDiagnostics/DetectPlasma/Results/t_plasma_duration)|bc|tr -d -` > $t_plasma_duration_limit ]] \
        && [[ $(< /golem/shots/$i/Infrastructure/Bt_Ecd/Basic/Parameters/u_bt) == $(< /golem/shots/$j/Infrastructure/Bt_Ecd/Basic/Parameters/u_bt) ]] \
        && [[ $(< /golem/shots/$i/Infrastructure/Bt_Ecd/Basic/Parameters/u_cd) == $(< /golem/shots/$j/Infrastructure/Bt_Ecd/Basic/Parameters/u_cd) ]] \
        && [[ $(< /golem/shots/$i/Infrastructure/Bt_Ecd/Basic/Parameters/t_bt) == $(< /golem/shots/$j/Infrastructure/Bt_Ecd/Basic/Parameters/t_bt) ]] \
        && [[ $(< /golem/shots/$i/Infrastructure/Bt_Ecd/Basic/Parameters/t_cd) == $(< /golem/shots/$j/Infrastructure/Bt_Ecd/Basic/Parameters/t_cd) ]] \
        && [[ $(< /golem/shots/$i/shot_date) == $(< /golem/shots/$j/shot_date) ]] \
        && [[ -e "/golem/shots/$i/Devices/DASs/2NI_PC-StepMal/LimiterMirnovCoils/rawdata.jpg" ]] \
        && [[ -e "/golem/shots/$j/Devices/DASs/2NI_PC-StepMal/LimiterMirnovCoils/rawdata.jpg" ]];then
            let Counter++ #increment
            echo YES! $i AND $j FOUND
            echo "<tr><td colspan=6>
            Date: <b>`cat /golem/shots/$i/shot_date`</b>, Parameters:
            U_bt=$(< /golem/shots/$i/Infrastructure/Bt_Ecd/Basic/Parameters/u_bt)V,
            U_cd=$(< /golem/shots/$i/Infrastructure/Bt_Ecd/Basic/Parameters/u_cd)V,
            t_bt=$(< /golem/shots/$i/Infrastructure/Bt_Ecd/Basic/Parameters/t_bt)us,
            t_cd=$(< /golem/shots/$i/Infrastructure/Bt_Ecd/Basic/Parameters/t_cd)us
            </td></tr><tr>
            <td><a href=$url/$i>$i</a><br>`cat /golem/shots/$i/shot_time`</td>
            <td><img src=$url/$i/Diagnostics/BasicDiagnostics/Basic/graph.png></td>
            <td><img src=$url/$i/Devices/DASs/2NI_PC-StepMal/LimiterMirnovCoils/rawdata.jpg></td>
            <td><a href=$url/$j>$j</a><br>`cat /golem/shots/$j/shot_time`</td>
            <td><img src=$url/$j/Diagnostics/BasicDiagnostics/Basic/graph.png></td>
            <td><img src=$url/$j/Devices/DASs/2NI_PC-StepMal/LimiterMirnovCoils/rawdata.jpg></td>
            </tr>" >> $soubor;
        fi
        done 
else echo -ne no';';fi;done
echo "</table>Alltogether $Counter combinations<hr/>
<h2>For generation bash script used</h2>
<pre>
`cat script.bash|sed 's/</\</g'|sed 's/>/\>/g'`
</pre></body></html>" >> $soubor;