NuSiF-Solver/BasicSolver/2D-seq-pt/animate.plot

10 lines
215 B
Gnuplot
Raw Normal View History

2023-02-05 07:34:23 +01:00
unset border; unset tics; unset key;
set term gif animate delay 50
2023-08-06 21:22:54 +02:00
set xrange [0:30]
set yrange [0:4]
2023-02-05 07:34:23 +01:00
set output "trace.gif"
do for [ts=0:23] {
plot "particles_".ts.".dat" with points pointtype 7
}
unset output