Skip to content

Commit 4c82f73

Browse files
committed
bifucractioin plots
1 parent 54dfde7 commit 4c82f73

2 files changed

Lines changed: 13 additions & 1 deletion

File tree

docs/sary_prompts.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -941,3 +941,15 @@ Examples:
941941
if __name__ == "__main__":
942942
main()
943943

944+
(Phase 1 and 1.5) (Criticality)
945+
Statistical Test For Power Law using power law package
946+
Bifurcation
947+
Cluster size distribution
948+
949+
(Phase 2): (Self orgaization)
950+
Box plots (x axis-inital death rate, y axis - final or converged death rate)
951+
952+
(Phase 3): (Finite Size)
953+
log log plots of cluster size disstribution with cutoff (because of grid size)
954+
955+
(Phase 4): Sensitivity

scripts/generate_bifurcation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def run_single_bifurcation_sim(
106106
prey_counts = []
107107
predator_counts = []
108108
for _ in range(measurement_steps):
109-
model.run(1)
109+
model.update()
110110
prey_counts.append(np.sum(model.grid == 1))
111111
predator_counts.append(np.sum(model.grid == 2))
112112

0 commit comments

Comments
 (0)