From c7940448cf96260162bdf41572ecc9325f3585c0 Mon Sep 17 00:00:00 2001 From: Chetan G Date: Tue, 31 Oct 2023 07:53:45 +0530 Subject: [PATCH] Update and rename activematter.py to activematter2.py The simulation code has been encapsulated within a function called simulate_vicsek. This makes the code more modular and easier to reuse in different contexts. Variable and function names have been made consistent by following PEP 8 style guidelines. Variable names use underscores for improved readability. NumPy is used for array operations wherever possible. This improves code efficiency and readability. Redundant calculations for mean_theta and trigonometric operations have been eliminated, resulting in cleaner and more efficient code. Function parameters have been assigned default values, making it easier to run the simulation with different sets of parameters. The plot_real_time parameter has been introduced to control whether real-time plotting is enabled. This allows flexibility in visualization. --- activematter.py => activematter2.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename activematter.py => activematter2.py (100%) diff --git a/activematter.py b/activematter2.py similarity index 100% rename from activematter.py rename to activematter2.py