-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathref_sim.json
More file actions
227 lines (227 loc) · 5.15 KB
/
ref_sim.json
File metadata and controls
227 lines (227 loc) · 5.15 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
{
"id": "unit.test.simulator-signature",
"name": "Simulator signature for unit testing",
"dependencies": {"otherLib": ">=1.0"},
"description": "This is a simulator signature\n that should be used for **unit testing only**",
"version": "2022.07",
"status": "beta",
"authors": [
{
"name": "Kurt Cobain",
"email": "kurt@nirvana.org"
},
{
"name": "Dave Grohl",
"email": "dave@nirvana.org"
},
{
"name": "Krist Novoselic",
"email": "krist@nirvana.org"
}
],
"contacts": [
{
"name": "OpenFLUID contact",
"email": "contact@openfluid-project.org"
}
],
"license": "GPL-3.0-or-later",
"tags": [
"simulator",
"unit testing",
"development",
"software quality"
],
"links": [
{
"label": "OpenFLUID",
"url": "www.openfluid-project.org"
},
{
"label": "OpenFLUID community",
"url": "community.openfluid-project.org"
}
],
"issues": [
{
"id": 101,
"title": "Issue X",
"description": "This is the issue X",
"tags": [
"bug",
"results"
],
"creator": "Dave",
"created_at": "1983-07-22 16:47:11",
"updated_at": "2024-02-29 12:16:52",
"state": "open"
},
{
"id": 102,
"title": "Issue Y",
"description": "This is\nthe issue Y",
"tags": [
"feature",
"IO"
],
"creator": "Kurt",
"created_at": "1900-01-01 00:00:00",
"updated_at": "1900-01-01 00:00:00",
"state": "closed"
}
],
"simulator": {
"data": {
"parameters": {
"required": [
{
"name": "speedl",
"description": "speed limit",
"siunit": "m/s",
"type": "double"
},
{
"name": "forcefield",
"description": "field of force",
"siunit": "n/m2",
"type": "matrix"
}
],
"used": [
{
"name": "coeff",
"description": "coefficient",
"siunit": "",
"type": ""
},
{
"name": "coeff 2",
"description": "coefficient with a space",
"siunit": "",
"type": ""
},
{
"name": "coeff&3",
"description": "coefficient with weïrd char",
"siunit": "",
"type": ""
}
]
},
"attributes": {
"required": [
{
"name": "stage_area",
"unitsclass": "ZU",
"description": "the stage area",
"siunit": "m2",
"type": "double"
}
],
"used": [
{
"name": "venue_capacity",
"unitsclass": "YU",
"description": "the venue capacity",
"siunit": "",
"type": "integer"
},
{
"name": "venue_volume",
"unitsclass": "YU",
"description": "the venue volume",
"siunit": "m3s",
"type": ""
}
],
"produced": [
{
"name": "area_per_musician",
"unitsclass": "ZU",
"description": "the area for each musician on stage",
"siunit": "m2",
"type": "double"
}
]
},
"variables": {
"produced": [
{
"name": "venue.band.music.instruments",
"unitsclass": "YU",
"description": "the music",
"siunit": "db",
"type": "vector"
},
{
"name": "venue.stage.light.system",
"unitsclass": "YU",
"description": "the light",
"siunit": "lm",
"type": "map"
}
],
"required": [
{
"name": "venue.stage.power",
"unitsclass": "ZU",
"description": "the electric power",
"siunit": "W",
"type": "integer"
}
],
"used": [
{
"name": "venue.band.mojo",
"unitsclass": "ZU",
"description": "the mojo",
"siunit": "",
"type": ""
}
],
"updated": [
{
"name": "venue.temperature.attendance",
"unitsclass": "ZU",
"description": "the venue temperature",
"siunit": "K",
"type": "double"
}
]
},
"events": [
"ZU",
"YU"
],
"extrafiles": {
"required": [
"forced_data1.csv",
"forced_data2.csv"
],
"used": [
"observed.csv",
"simulated.csv",
"randomized.csv"
]
}
},
"spatial_graph": {
"description": "Spatial graph is modified",
"details": [
{
"unitsclass": "XU",
"description": "XU units are created"
},
{
"unitsclass": "YU",
"description": "YU units connections to XU units are updated"
}
]
},
"scheduling": {
"type": "range",
"min": 300,
"max": 600
}
}
}