Integrate sequential enhanced solver

This commit is contained in:
2024-02-15 09:44:06 +01:00
parent 5d33bb9d57
commit fe57042556
35 changed files with 2548 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
unset border; unset tics; unset key;
set term gif animate delay 10
set output "trace.gif"
set xrange [0:7]
set yrange [0:1.5]
set size ratio -1
set object 1 rect from 0.0,0.0 to 1.0,0.5 lw 5
do for [ts=0:300] {
plot "particles_".ts.".dat" with points pointtype 7
}
unset output