Review particle tracer. Refactor.

This commit is contained in:
2024-03-05 21:24:45 +01:00
parent ed929ab752
commit 6f3d9e73ef
24 changed files with 1221 additions and 1202 deletions

View File

@@ -0,0 +1,10 @@
unset border; unset tics; unset key;
set term gif animate delay 30
set output "trace.gif"
set xrange [0:30]
set yrange [0:4]
do for [ts=0:120] {
plot "particles_".ts.".dat" with points pointtype 7
}
unset output