From 81a1f3907e51f8a75eca35dc79abc7230f86c3c7 Mon Sep 17 00:00:00 2001 From: Moritz Sallermann Date: Fri, 13 Oct 2023 21:52:11 +0000 Subject: [PATCH] changed default values in activity driven model example --- examples/ActivityDriven/conf.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/ActivityDriven/conf.toml b/examples/ActivityDriven/conf.toml index b2fc11d..699eedf 100644 --- a/examples/ActivityDriven/conf.toml +++ b/examples/ActivityDriven/conf.toml @@ -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