-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathminimal-example.json
83 lines (83 loc) · 1.68 KB
/
minimal-example.json
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
{
"api_parameters": {
"api_version": "0.1",
"api_type": "element",
"query": {
"geom": "false",
"tags": "true",
"sequences": "false",
"children": "true",
"parents": "false",
"predecessors": "true",
"successors": "true",
"expand": "children",
"hubs_explicitly": "true"
}
},
"type": "scenario",
"name": "test_scenario",
"children": [{
"name": "wind",
"type": "volatile_generator",
"tags": {
"fuel_type": "wind",
"installed_power": "251"
},
"predecessors": [],
"successors": ["hub1"]
},
{
"name": "solar",
"type": "volatile_generator",
"tags": {
"fuel_type": "solar",
"installed_power": "251"
},
"predecessors": [],
"successors": ["hub2"]
},
{
"name": "demand",
"type": "demand",
"tags": {
"amount": "100000"
},
"predecessors": ["hub2"],
"successors": []
},
{
"name": "line",
"type": "transmission",
"tags": {
"capacity": "200",
"efficiency": "0.9"
},
"sequences": {},
"predecessors": ["hub1"],
"successors": ["hub2"]
},
{
"name": "hub1",
"type": "hub",
"tags": {
"sector": "electricity"
},
"sequences": {},
"predecessors": ["wind"],
"successors": ["line"]
},
{
"name": "hub2",
"type": "hub",
"tags": {
"sector": "electricity"
},
"sequences": {},
"predecessors": ["line", "solar"],
"successors": ["demand"]
}
],
"tags": {
"description": "Minimal example scenario for testing purposes"
}
}