-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_script.gnu
More file actions
32 lines (25 loc) · 848 Bytes
/
_script.gnu
File metadata and controls
32 lines (25 loc) · 848 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
set terminal pngcairo enhanced font "arial,32" fontscale 1.0 size 2000,2000
set output 'simulation.png'
set grid lw 4
set title "System state"
set style line 5 lt rgb "red" lw 5
set style line 6 lt rgb "green" lw 5
set style line 7 lt rgb "blue" lw 5
set ylabel "Temperatura"
set xlabel "Tiempo (seg)"
plot 'a.dat' with lines ls 7 title 'Temp. Placa', 'b.dat' with lines ls 5 title 'Temp. Calentador', 'z.dat' with lines ls 6 title 'Temp. Referencia'
replot
set title "Heatplate Heatmap"
unset key
unset ylabel
unset xlabel
set tic scale 0
set size square
set palette defined (0 "white", 1 "yellow", 2 "orange", 3 "red", 4 "black")
set cbrange [0:50]
set cblabel "Temperature"
set xrange[-0.5:39]
set yrange[-0.5:39]
set view map
set terminal gif animate enhanced font "arial,16" fontscale 1.0 delay 1 size 1200,800
set output 'heatmap.gif'