From bb0bd8f6a01a77d3c31f4324a43d68865ef97c7b Mon Sep 17 00:00:00 2001 From: Cory Date: Sun, 8 Oct 2023 20:26:28 +0200 Subject: [PATCH] Modify path --- src/animate_100_particles.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/animate_100_particles.py b/src/animate_100_particles.py index 19f10ca..3e2f3ff 100644 --- a/src/animate_100_particles.py +++ b/src/animate_100_particles.py @@ -32,7 +32,7 @@ def animate(): fig = plt.figure() ax = fig.add_subplot(projection="3d") - arr = get_data([f"output/simulate_100_particles/p{i}.txt" for i in range(100)]) + arr = get_data([f"output/simulate_100_particles/particle_{i}.txt" for i in range(100)]) arr = arr[:, :, ::10]