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

11 lines
216 B
Gnuplot
Raw Normal View History

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