You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Let the system run until a steady state is observed
13
+
- For each death rate value, let the CA run for a specified number of iterations after warmp up, show distribution (scatters) for each sim run at a given prey death rate, and the average line
14
+
15
+
16
+
# Phase 1: finding the critical point
17
+
- Create bifurcation diagram of mean population count, varying prey death rate
18
+
- Look for critical transition
19
+
- Create log-log plot of cluster size distribution, varying prey death rate
20
+
- Look for power-law
21
+
22
+
# Experiment Phase: CA Stochastic Bifurcation Diagram:
23
+
24
+
1) Write a Config Object specific to that experiment
25
+
2) Make sure the experiment running on the cluster is running 15 reps of each runs at all sweeped values.
26
+
3) Make sure the outputs of the experiment are a 1D and 2D array (explained below)
27
+
28
+
# Bifurcation Diagram Prompts:
29
+
1) Help me write a function for creating a stochastic bifurcation diagram, of the population count at equilibrium, varying the prey death rate (as the control variable).
30
+
2) At each sweeped value of the prey death control variable, we should be measuring the population count at equilibrium for at least 15 simulation runs.
31
+
3) Which means that the two inputs for my function should be a 1D Array for the sweep parameter, and a 2D array for the experiment results at each sweep for the rows, and the results for each iteration for the columns.
32
+
4) When running my function, using the argparse module, my command-line arguments specifies which analysis to do, in this case the analysis is the bifurcation diagram.
0 commit comments