mirror of
https://github.com/gsi-upm/soil
synced 2024-11-14 15:32:29 +00:00
63 lines
1.5 KiB
YAML
63 lines
1.5 KiB
YAML
name: TerroristNetworkModel_sim
|
|
max_time: 150
|
|
num_trials: 1
|
|
network_params:
|
|
generator: random_geometric_graph
|
|
radius: 0.2
|
|
# generator: geographical_threshold_graph
|
|
# theta: 20
|
|
n: 100
|
|
network_agents:
|
|
- agent_class: TerroristNetworkModel.TerroristNetworkModel
|
|
weight: 0.8
|
|
state:
|
|
id: civilian # Civilians
|
|
- agent_class: TerroristNetworkModel.TerroristNetworkModel
|
|
weight: 0.1
|
|
state:
|
|
id: leader # Leaders
|
|
- agent_class: TerroristNetworkModel.TrainingAreaModel
|
|
weight: 0.05
|
|
state:
|
|
id: terrorist # Terrorism
|
|
- agent_class: TerroristNetworkModel.HavenModel
|
|
weight: 0.05
|
|
state:
|
|
id: civilian # Civilian
|
|
|
|
environment_params:
|
|
# TerroristSpreadModel
|
|
information_spread_intensity: 0.7
|
|
terrorist_additional_influence: 0.035
|
|
max_vulnerability: 0.7
|
|
prob_interaction: 0.5
|
|
|
|
# TrainingAreaModel and HavenModel
|
|
training_influence: 0.20
|
|
haven_influence: 0.20
|
|
|
|
# TerroristNetworkModel
|
|
vision_range: 0.30
|
|
sphere_influence: 2
|
|
weight_social_distance: 0.035
|
|
weight_link_distance: 0.035
|
|
|
|
visualization_params:
|
|
# Icons downloaded from https://www.iconfinder.com/
|
|
shape_property: agent
|
|
shapes:
|
|
TrainingAreaModel: target
|
|
HavenModel: home
|
|
TerroristNetworkModel: person
|
|
colors:
|
|
- attr_id: civilian
|
|
color: '#40de40'
|
|
- attr_id: terrorist
|
|
color: red
|
|
- attr_id: leader
|
|
color: '#c16a6a'
|
|
background_image: 'map_4800x2860.jpg'
|
|
background_opacity: '0.9'
|
|
background_filter_color: 'blue'
|
|
skip_test: true # This simulation takes too long for automated tests.
|