blob: 44bf52d2b3754063b2f91cec8c9afd46a0aa3fdc [file] [log] [blame]
avm9996333586062021-01-30 19:54:12 +01001#!/usr/bin/env gnuplot -c
2outputfile="../output/graph"
3datafolder="../data/"
4
5t_error=0.1#ºC
6p_error=0.5#e5 Pa
7
8# == CONFIGURACIÓ DE L'OUTPUT PEL LATEX ==
9set terminal cairolatex size 11cm, 8cm
10set output outputfile.'.tex'
11
12# == CONFIGURACIÓ DEL PLOT ==
13set xlabel '$T \, (\si{\celsius})$'
14set ylabel '$P \, (\SI{e5}{\pascal})$'
15
16# Opcions per la llegenda:
17set key above
18set key spacing 1.5
19
20plot datafolder."data.dat" u 1:2:(t_error):(p_error) w xyerr t "Corba d'equilibri fases líquid-vapor", \
21 datafolder."puntcritic.dat" u 1:2:3:4 w xyerr t "Punt crític"
22
23# == CONFIGURACIÓ DE L'OUTPUT PER SVG ==
24# Això ho uso per generar també una imatge de previsualització que puc carregar
25# a l'ordinador per veure més o menys com a sortit el plot sense haver
26# d'inserir-ho al LaTeX per veure-ho.
27set terminal svg dashed size 600, 600 font "Computer Modern,Tinos,Helvetica,15"
28set output outputfile.'.svg'
29
30replot