-
Notifications
You must be signed in to change notification settings - Fork 0
/
sim.json
75 lines (74 loc) · 1.57 KB
/
sim.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
{
"until": 28800,
"seed": 1234,
"version": "1.0",
"objects": [
{
"x": 489,
"y": 308,
"type": "sink",
"name": "sink_1",
"model": null
},
{
"x": 469,
"y": 232,
"type": "splitter",
"name": "splitter_2",
"out": [
"sink_1",
"queue_2"
],
"model": {
"prob": "0.9"
}
},
{
"x": 266,
"y": 184,
"type": "splitter",
"name": "splitter_1",
"out": [
"queue_2",
"queue_1"
],
"model": {
"prob": "0.9"
}
},
{
"x": 349,
"y": 180,
"type": "queue",
"name": "queue_2",
"out": "splitter_2",
"model": {
"nservers": 1,
"mu": "2",
"maxqlen": "-1"
}
},
{
"x": 161,
"y": 99,
"type": "queue",
"name": "queue_1",
"out": "splitter_1",
"model": {
"nservers": 1,
"mu": ".2",
"maxqlen": "-1"
}
},
{
"x": 99,
"y": 50,
"type": "source",
"name": "source_1",
"out": "queue_1",
"model": {
"lambda": "0.2"
}
}
]
}