Files
BasicSolver
EnhancedSolver
2D-mpi
src
vis_files
animate.plot
backstep_animate.plot
canal_animate.plot
karman_animate.plot
Makefile
README.md
backstep.par
canal.par
config.mk
dcavity.par
include_CLANG.mk
include_GCC.mk
include_ICX.mk
karman.par
residual.plot
surface.plot
vector.plot
2D-seq
3D-mpi
3D-seq
PoissonSolver
.clang-format
.clang-tidy
.clangd
.gitignore
LICENSE
README.md
NuSiF-Solver/EnhancedSolver/2D-mpi/vis_files/animate.plot

11 lines
216 B
Gnuplot

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