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

10 lines
216 B
Gnuplot
Raw Normal View History

2023-08-05 19:35:16 +02:00
unset border; unset tics; unset key;
set term gif animate delay 50
set output "trace.gif"
2023-08-21 10:40:48 +02:00
set xrange [0:30]
set yrange [0:4]
2023-09-12 14:10:47 +02:00
do for [ts=0:200] {
2023-08-05 19:35:16 +02:00
plot "particles_".ts.".dat" with points pointtype 7
}
unset output