File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -941,3 +941,15 @@ Examples:
941941if __ 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments