From b675e17c8824be454f3a21b8f4ab8a8c95e010b0 Mon Sep 17 00:00:00 2001 From: Niki Laptop <2212719@stud.hs-mannheim.de> Date: Sat, 7 Jun 2025 12:38:44 +0200 Subject: [PATCH] change save location for gifs --- scripts/run_simulation.jl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/run_simulation.jl b/scripts/run_simulation.jl index b2a08a8..274501d 100644 --- a/scripts/run_simulation.jl +++ b/scripts/run_simulation.jl @@ -21,8 +21,9 @@ function animate_gray_scott(sol, N; var=:U) data = var == :U ? u : v Plots.heatmap(data, c=:magma, title="$var at t=$(Int(sol.t[t]))", clims=(0, 1)) end - gif(anim, "gray_scott.gif", fps=15) + gif(anim, "gif/gray_scott.gif", fps=15) end +# set time to more than 1000 sol = AnimalFurFHN.run_simulationG((0.0, 10000.0), 256) animate_gray_scott(sol, 256, var=:U)