forked from AB-CE/abce
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstable_economy_config.json
More file actions
102 lines (102 loc) · 2.35 KB
/
stable_economy_config.json
File metadata and controls
102 lines (102 loc) · 2.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"simulation": {
"name": "stable_generalized_network",
"random_seed": 42,
"rounds": 40,
"result_path": "result_stable_economy"
},
"network": {
"connection_type": "random",
"connection_probability": 0.4,
"max_connections_per_agent": 8
},
"climate": {
"stress_enabled": false,
"geographical_effects": false,
"heterogeneity_enabled": false,
"chronic_rules": [],
"shock_rules": []
},
"agents": {
"producer": {
"count": 8,
"initial_money": 100.0,
"initial_inventory": {},
"production": {
"base_output_quantity": 5.0,
"profit_margin": 0.2,
"base_overhead": 8.0,
"inputs": {
"labor": 1.0
},
"outputs": ["intermediate_good"]
},
"consumption": {
"preference": "final_good",
"consumption_fraction": 0.25,
"minimum_survival_consumption": 0.2
},
"labor": {
"endowment": 0.0,
"wage": 12.0
},
"geographical_distribution": ["all"]
},
"intermediary": {
"count": 6,
"initial_money": 80.0,
"initial_inventory": {
"intermediate_good": 2.0
},
"production": {
"base_output_quantity": 6.0,
"profit_margin": 0.2,
"base_overhead": 5.0,
"inputs": {
"labor": 0.5,
"intermediate_good": 0.5
},
"outputs": ["final_good"]
},
"consumption": {
"preference": "final_good",
"consumption_fraction": 0.3,
"minimum_survival_consumption": 0.25
},
"labor": {
"endowment": 0.0,
"wage": 12.0
},
"geographical_distribution": ["all"]
},
"consumer": {
"count": 12,
"initial_money": 200.0,
"initial_inventory": {
"final_good": 1.0,
"labor": 1.0
},
"production": {
"base_output_quantity": 0.0,
"profit_margin": 0.0,
"base_overhead": 0.0,
"inputs": {},
"outputs": []
},
"consumption": {
"preference": "final_good",
"consumption_fraction": 0.5,
"minimum_survival_consumption": 0.4
},
"labor": {
"endowment": 1.0,
"wage": 12.0
},
"geographical_distribution": ["all"]
}
},
"visualization": {
"create_visualizations": true,
"animate_network": true
}
}