Newer
Older
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
{
"name": "advanced_default",
"broker": true,
"federates": [
{
"directory": "./config",
"exec": "python -u ../src/Sensor.py",
"host": "localhost",
"name": "Sensor"
},
{
"directory": "./config",
"exec": "python -u ../src/Controller.py",
"host": "localhost",
"name": "Controller"
},
{
"directory": "./config",
"exec": "python -u ../src/Battery.py",
"host": "localhost",
"name": "Battery"
},
{
"directory": "./config",
"exec": "python -u ../src/Grid.py",
"host": "localhost",
"name": "Grid"
},
{
"directory": "./config",
"exec": "python -u ../src/GUI.py",
"host": "localhost",
"name": "GUI"
},
{
"directory": "./config",
"exec": "python -u ../src/Network.py SensorToControllerNetworkConfig.json",
"host": "localhost",
"name": "SensorToControllerNetwork"
},
{
"directory": "./config",
"exec": "python -u ../src/Network.py ControllerToBatteryNetworkConfig.json",
"host": "localhost",
"name": "ControllerToBatteryNetwork"
},
{
"directory": "./config",
"exec": "python -u ../src/Network.py BatteryToControllerNetworkConfig.json",
"host": "localhost",
"name": "BatteryToControllerNetwork"
}
]
}