Skip to content

Commit

Permalink
changed default values in activity driven model example
Browse files Browse the repository at this point in the history
  • Loading branch information
Moritz Sallermann committed Oct 13, 2023
1 parent eb5a0ff commit 81a1f39
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions examples/ActivityDriven/conf.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ model = "ActivityDriven"
max_iterations = 20 # If not set, max iterations is infinite

[ActivityDriven]
dt = 0.1 # Timestep for the integration of the coupled ODEs
dt = 0.01 # Timestep for the integration of the coupled ODEs
m = 10 # Number of agents contacted, when the agent is active
eps = 0.01 # Minimum activity epsilon; a_i belongs to [epsilon,1]
gamma = 2.1 # Exponent of activity power law distribution of activities
homophily = 0.0 # aka beta. if zero, agents pick their interaction partners at random
reciprocity = 0.5 # probability that when agent i contacts j via weighted reservoir sampling, j also sends feedback to i. So every agent can have more than m incoming connections
alpha = 1.0 # Controversialness of the issue, must be greater than 0.
K = 1.0 # Social interaction strength
homophily = 0.5 # aka beta. if zero, agents pick their interaction partners at random
alpha = 3.0 # Controversialness of the issue, must be greater than 0.
K = 3.0 # Social interaction strength

[network]
number_of_agents = 300
number_of_agents = 1000
connections_per_agent = 10

0 comments on commit 81a1f39

Please sign in to comment.