You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
413 B
Gnuplot
15 lines
413 B
Gnuplot
set ylabel "[N]"
|
|
set yrange[-100:150]
|
|
set title "Fuerzas vs Tiempo"
|
|
set key outside
|
|
set grid
|
|
|
|
# Bucle de actualización
|
|
while (1) {
|
|
plot 'postProcessing/forces/0/forc.dat' using 1:(($2)) title 'Presión' with lines,\
|
|
'postProcessing/forces/0/forc.dat' using 1:(($5)) title 'Viscosa' with lines,\
|
|
'postProcessing/forces/0/forc.dat' using 1:(($2 + $5)) title 'Total' with lines
|
|
pause 5
|
|
}
|
|
|