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
{
"name": "efp",
"model": {
"components": {
"ef": {
"input": ["input_res"],
"output": ["output_req"],
"components": {
"g": {
"output": ["output_req"]
},
"t": {
"input": ["input_req", "input_res"]
}
},
"couplings": [
{
"port_from": "input_res",
"component_to": "t",
"port_to": "input_res"
},
{
"component_from": "g",
"port_from": "output_req",
"component_to": "t",
"port_to": "input_req"
},
{
"component_from": "g",
"port_from": "output_req",
"port_to": "output_req"
}
]
},
"p": {
"input": ["input_req"],
"output": ["output_res"]
}
},
"couplings": [
{
"component_from": "ef",
"port_from": "output_req",
"component_to": "p",
"port_to": "input_req"
},
{
"component_from": "p",
"port_from": "output_res",
"component_to": "ef",
"port_to": "input_res"
}
]
}
}