blob: 7c2a3ff87ce74adff8f274e817b7d02751d28498 [file] [log] [blame]
avm99963de16cf62021-01-21 13:00:04 +01001#!/usr/bin/env gnuplot -c
2metall="coure"
3outputfile="../output/".metall
4datafolder="../data/".metall."/"
5
6# == CONFIGURACIÓ DE L'OUTPUT PEL LATEX ==
7set terminal cairolatex size 11cm, 8cm
8set output outputfile.'.tex'
9
10# == CONFIGURACIÓ DEL PLOT ==
11set xlabel '$t \, (\si{\second})$'
12set ylabel '$T \, (\si{\celsius})$'
13
14# Opcions per la llegenda:
15set key above
16set key spacing 1.5
17
18set xtics 1000
19
20plot datafolder.'10.dat' u 1:3:4 w yerr t '$x = \SI{10}{\centi\meter}$', \
21 datafolder.'20.dat' u 1:3:4 w yerr t '$x = \SI{20}{\centi\meter}$', \
22 datafolder.'30.dat' u 1:3:4 w yerr t '$x = \SI{30}{\centi\meter}$'
23
24# == CONFIGURACIÓ DE L'OUTPUT PER SVG ==
25# Això ho uso per generar també una imatge de previsualització que puc carregar
26# a l'ordinador per veure més o menys com a sortit el plot sense haver
27# d'inserir-ho al LaTeX per veure-ho.
28set terminal svg dashed size 600, 600 font "Computer Modern,Tinos,Helvetica,15"
29set output outputfile.'.svg'
30
31replot