2017-05-26 08:51:58 +00:00
|
|
|
|
2017-07-04 08:54:05 +00:00
|
|
|
fn = "<grep -a ^H ".ARG1
|
2017-05-26 08:51:58 +00:00
|
|
|
|
|
|
|
|
set y2tics
|
|
|
|
|
set ytics nomirror
|
|
|
|
|
set ylab "Temperature [°C]"
|
2021-11-29 21:18:19 +00:00
|
|
|
set y2lab "Voltage [V], Bias Current [10nA]"
|
2017-05-26 08:51:58 +00:00
|
|
|
set xlab "Time"
|
|
|
|
|
set y2ra [0:]
|
2021-11-29 21:18:19 +00:00
|
|
|
set yra [0<*:*]
|
2017-05-26 08:51:58 +00:00
|
|
|
|
|
|
|
|
R1 = 3.3e3
|
|
|
|
|
R25 = 3.3e3
|
2018-07-08 14:51:09 +00:00
|
|
|
B25 = 4500.
|
2017-05-26 08:51:58 +00:00
|
|
|
R(a) = R1*a/(4096-a)
|
|
|
|
|
degC(a) = B25/(log(R(a)/R25)+B25/298.0) - 273
|
|
|
|
|
|
|
|
|
|
t0=`date +%s -d 0`
|
|
|
|
|
t(x) = (x-t0)/3600.0
|
2021-11-29 21:18:19 +00:00
|
|
|
t(x)=x
|
|
|
|
|
set format x "%H:%M\n%d. %b\n%Y" time
|
2017-05-26 08:51:58 +00:00
|
|
|
|
|
|
|
|
plot \
|
|
|
|
|
fn u (t($2)):($3*3.3/4096) axis x1y2 tit "V_{CORE}" w l, \
|
|
|
|
|
fn u (t($2)):($4*9.9/4096) axis x1y2 tit "V_{CC}" w l, \
|
|
|
|
|
fn u (t($2)):($5*6.6/4096) axis x1y2 tit "V_{IO}" w l, \
|
|
|
|
|
fn u (t($2)):($6*6.6/4096) axis x1y2 tit "V_{PRIM}" w l, \
|
|
|
|
|
fn u (t($2)):(degC($7)) axis x1y1 tit "T_{FPGA}" w l, \
|
|
|
|
|
fn u (t($2)):(degC($8)) axis x1y1 tit "T_{1}" w l, \
|
|
|
|
|
fn u (t($2)):(degC($9)) axis x1y1 tit "T_{2}" w l, \
|
2021-11-29 21:18:19 +00:00
|
|
|
fn u (t($2)):($10*0.077/10) axis x1y2 tit "I_{BIAS}" w l
|
2017-05-26 08:51:58 +00:00
|
|
|
|