-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEquipmentModelFixture.cs
More file actions
415 lines (340 loc) · 15.2 KB
/
EquipmentModelFixture.cs
File metadata and controls
415 lines (340 loc) · 15.2 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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using ABB.Vtrin;
using ABB.Vtrin.Drivers;
namespace CalcEngineTutorialSetup
{
class EquipmentModelFixture : IFixture
{
public void Setup()
{
// Create or update equipment type and properties
CreateOrUpdateEquipmentTypes();
// Create or update equipment instances
if (Context.NumberOfSites > 1)
{
for (var site = 1; site <= Context.NumberOfSites; site++)
{
createSiteFacade(site);
if (site != Context.NumberOfSites)
{
// There's some concurrency issue after creating instances for one site
Thread.Sleep(300);
}
}
}
else
{
createSiteFacade(null);
}
}
public void Cleanup()
{
removeAclEntries();
deleteEquipmentInstances();
deleteEquipmentTypes();
}
private void CreateOrUpdateEquipmentTypes()
{
// CREATE EQUIPMENT TYPES
// ======================
// Abstract base types
// ===================
var baseEquipmentType = CreateOrUpdateEquipmentType(
equipmentTypeName: "Device",
isAbstract: true);
var mechanicalEquipmentType = CreateOrUpdateEquipmentType(
equipmentTypeName: "Mechanical device",
baseEquipmentType: baseEquipmentType,
isAbstract: true);
var electricalEquipmentType = CreateOrUpdateEquipmentType(
equipmentTypeName: "Electrical device",
baseEquipmentType: baseEquipmentType,
isAbstract: true);
// Equipment types
// ===============
var tankType = CreateOrUpdateEquipmentType(
equipmentTypeName: "Tank",
baseEquipmentType: mechanicalEquipmentType);
var pipeType = CreateOrUpdateEquipmentType(
equipmentTypeName: "Pipe",
baseEquipmentType: mechanicalEquipmentType);
var pumpType = CreateOrUpdateEquipmentType(
equipmentTypeName: "Pump",
baseEquipmentType: electricalEquipmentType);
// EQUIPMENT TYPE PROPERTIES
// =========================
// Common properties
// =================
CreateOrUpdateEquipmentProperty(
propertyName: "Manufacturer",
propertyType: ABB.Vtrin.cTypeCode.String,
propertyUnit: "",
propertyDescription: "The manufacturer of the device",
isHistorized: false,
equipmentType: baseEquipmentType);
// Tank properties
// ===============
CreateOrUpdateEquipmentProperty(
propertyName: "Level",
propertyType: ABB.Vtrin.cTypeCode.Double,
propertyUnit: "mm",
propertyDescription: "The water level inside the tank",
isHistorized: true,
equipmentType: tankType);
CreateOrUpdateEquipmentProperty(
propertyName: "Volume",
propertyType: ABB.Vtrin.cTypeCode.Double,
propertyUnit: "l",
propertyDescription: "The total capacity of the tank",
isHistorized: false,
equipmentType: tankType);
CreateOrUpdateEquipmentProperty(
propertyName: "ContentsVolume",
propertyType: ABB.Vtrin.cTypeCode.Double,
propertyUnit: "l",
propertyDescription: "The volume of water in the tank. This is calculated from Level and Diameter",
isHistorized: true,
equipmentType: tankType);
CreateOrUpdateEquipmentProperty(
propertyName: "Diameter",
propertyType: ABB.Vtrin.cTypeCode.Double,
propertyUnit: "mm",
propertyDescription: "The diameter of the tank. The tank is a cylinder.",
isHistorized: false,
equipmentType: tankType);
// Pipe properties
// ===============
CreateOrUpdateEquipmentProperty(
propertyName: "Diameter",
propertyType: ABB.Vtrin.cTypeCode.Double,
propertyUnit: "cm",
propertyDescription: "The diameter of the pipe",
isHistorized: false,
equipmentType: pipeType);
CreateOrUpdateEquipmentProperty(
propertyName: "Flow",
propertyType: ABB.Vtrin.cTypeCode.Double,
propertyUnit: "l/min",
propertyDescription: "The current water flow through the pipe",
isHistorized: true,
equipmentType: pipeType);
// Pump properties
// ===============
CreateOrUpdateEquipmentProperty(
propertyName: "Power",
propertyType: ABB.Vtrin.cTypeCode.Double,
propertyUnit: "W",
propertyDescription: "The current power of the pump",
isHistorized: true,
equipmentType: pumpType);
CreateOrUpdateEquipmentProperty(
propertyName: "Nominal power",
propertyType: ABB.Vtrin.cTypeCode.Double,
propertyUnit: "W",
propertyDescription: "The nominal power of the pump",
isHistorized: false,
equipmentType: pumpType);
CreateOrUpdateEquipmentProperty(
propertyName: "Source tank",
propertyType: ABB.Vtrin.cTypeCode.GUID,
propertyUnit: null,
propertyDescription: "The tank that pump is pumping water from",
isHistorized: false,
equipmentType: pumpType,
referenceTarget: "Class:" + tankType.ClassName);
CreateOrUpdateEquipmentProperty(
propertyName: "Target tank",
propertyType: ABB.Vtrin.cTypeCode.GUID,
propertyUnit: null,
propertyDescription: "The tank that pump is pumping water into",
isHistorized: false,
equipmentType: pumpType,
referenceTarget: "Class:" + tankType.ClassName);
CreateOrUpdateEquipmentProperty(
propertyName: "Operational state",
propertyType: ABB.Vtrin.cTypeCode.Int16,
propertyUnit: null,
propertyDescription: "Writing to this property turns the pump on or off",
isHistorized: true,
equipmentType: pumpType,
referenceTarget: "Enumeration:Binary Text(1)");
CreateOrUpdateEquipmentProperty(
propertyName: "Power state",
propertyType: ABB.Vtrin.cTypeCode.Int16,
propertyUnit: null,
propertyDescription: "Tells whether the pump is powered or not",
isHistorized: true,
equipmentType: pumpType,
referenceTarget: "Enumeration:Binary Text(6)");
}
private ABB.Vtrin.Interfaces.IEquipment CreateOrUpdateEquipmentType(
string equipmentTypeName,
bool isAbstract = false,
ABB.Vtrin.Interfaces.IEquipment baseEquipmentType = null)
{
var equipmentCache = Context.Driver.Classes["Equipment"].Instances;
// Try to find existing equipment type with the given name
var equipmentType =
(ABB.Vtrin.Interfaces.IEquipment)equipmentCache[equipmentTypeName]?.BeginUpdate();
// Case: No existing equipment type found
// > Create a new equipment type
if (equipmentType == null)
equipmentType = (ABB.Vtrin.Interfaces.IEquipment)equipmentCache.Add();
// Update attributes and commit changes
equipmentType.Name = equipmentTypeName;
equipmentType.Base = baseEquipmentType;
equipmentType.Abstract = isAbstract;
equipmentType.CommitChanges();
return equipmentType;
}
private ABB.Vtrin.Interfaces.IPropertyDefinition CreateOrUpdateEquipmentProperty(
string propertyName,
ABB.Vtrin.cTypeCode propertyType,
string propertyUnit,
bool isHistorized,
ABB.Vtrin.Interfaces.IEquipment equipmentType,
string propertyDescription = null,
string referenceTarget = null)
{
ABB.Vtrin.Interfaces.IPropertyDefinition property;
var equipmentPropertyInstances = Context.Driver.Classes["EquipmentPropertyInfo"].Instances;
// Query existing property infos using property name and equipment type
var properties = equipmentPropertyInstances.GetInstanceSet("Equipment=? AND DisplayName=?", equipmentType, propertyName);
// Case: No existing property found
// > Create a new property
if (properties.Length == 0)
property = (ABB.Vtrin.Interfaces.IPropertyDefinition)equipmentPropertyInstances.Add();
// Case: Existing property found
// > Select that and begin to update
else
property = (ABB.Vtrin.Interfaces.IPropertyDefinition)properties[0].BeginUpdate();
// Update property info
property.DisplayName = propertyName;
property.Type = (int)propertyType;
property.Unit = propertyUnit;
property.Description = propertyDescription;
property.Historized = isHistorized;
property.Equipment = equipmentType;
property.ReferenceTarget = referenceTarget;
// Save or update property
property.CommitChanges();
return property;
}
private void CreateOrUpdateEquipmentInstances(int? site)
{
string topLevelHierarchy = getTopLevelHierarchyPrefix(site);
// Define tank instances
// =====================
var sourceTank = GetOrCreateEquipmentInstance(
instanceName: $"{topLevelHierarchy}.Tank area.Source tank",
equipmentType: Context.Driver.Classes["Path_Tank"]);
var targetTank = GetOrCreateEquipmentInstance(
instanceName: $"{topLevelHierarchy}.Tank area.Target tank",
equipmentType: Context.Driver.Classes["Path_Tank"]);
// Define pipe instances
// =====================
var mainPipe = GetOrCreateEquipmentInstance(
instanceName: $"{topLevelHierarchy}.Pipe",
equipmentType: Context.Driver.Classes["Path_Pipe"]);
var flowbackPipe = GetOrCreateEquipmentInstance(
instanceName: $"{topLevelHierarchy}.Flowback pipe",
equipmentType: Context.Driver.Classes["Path_Pipe"]);
// Define pump instance
// ====================
var pump = GetOrCreateEquipmentInstance(
instanceName: $"{topLevelHierarchy}.Pump section.Pump",
equipmentType: Context.Driver.Classes["Path_Pump"]);
// Defining instance properties
// ============================
pump = pump.BeginUpdate();
pump["Source tank"] = sourceTank;
pump["Target tank"] = targetTank;
pump["Nominal power"] = 1000;
pump["Manufacturer"] = "Pumps & Pipes Inc.";
pump.CommitChanges();
targetTank = targetTank.BeginUpdate();
targetTank["Volume"] = 1000;
targetTank["Diameter"] = 1128;
targetTank["Level"] = 500;
targetTank["ContentsVolume"] = 0;
targetTank["Manufacturer"] = "Tank Company";
targetTank.CommitChanges();
sourceTank = sourceTank.BeginUpdate();
sourceTank["Volume"] = 1000;
sourceTank["Diameter"] = 1128;
sourceTank["Level"] = 500;
sourceTank["ContentsVolume"] = 0;
sourceTank["Manufacturer"] = "Tank Company";
sourceTank.CommitChanges();
mainPipe = mainPipe.BeginUpdate();
mainPipe["Diameter"] = 20;
mainPipe["Manufacturer"] = "Pumps & Pipes Inc.";
mainPipe.CommitChanges();
flowbackPipe = flowbackPipe.BeginUpdate();
flowbackPipe["Diameter"] = 10;
flowbackPipe["Manufacturer"] = "Pumps & Pipes Inc.";
flowbackPipe.CommitChanges();
}
private ABB.Vtrin.cDbClassInstance GetOrCreateEquipmentInstance(
string instanceName,
ABB.Vtrin.cDbClass equipmentType)
{
// Try to find existing instance by the given name
var instance = equipmentType.Instances.GetInstanceByName(instanceName);
// Case: No existing instance found
// > Create a new one and set info
if (instance == null)
{
instance = equipmentType.Instances.Add();
instance.Name = instanceName;
instance.CommitChanges();
}
return instance;
}
private void createSiteFacade(int? site)
{
CreateOrUpdateEquipmentInstances(site);
if (Context.Group != null)
{
addAclEntryForSite(site);
}
}
private void addAclEntryForSite(int? site)
{
string topLevelHierarchy = getTopLevelHierarchyPrefix(site);
var pathCache = Context.Driver.Classes["Path"].Instances;
var siteRootPath = pathCache.GetInstanceByName(topLevelHierarchy);
Acl.CreateAcl(topLevelHierarchy, $"/Path/{siteRootPath.Id}");
}
private void deleteEquipmentInstances()
{
var rootPaths = Context.Driver.Classes["Path"].Instances.GetInstanceSet("Name LIKE 'Example site*' AND Parent = NULL");
foreach (var path in rootPaths)
{
path.Remove();
}
}
private void deleteEquipmentTypes()
{
Context.Driver.Classes["Equipment"].Instances.GetInstanceByName("Pipe")?.Remove();
Context.Driver.Classes["Equipment"].Instances.GetInstanceByName("Tank")?.Remove();
Context.Driver.Classes["Equipment"].Instances.GetInstanceByName("Pump")?.Remove();
Context.Driver.Classes["Equipment"].Instances.GetInstanceByName("Mechanical device")?.Remove();
Context.Driver.Classes["Equipment"].Instances.GetInstanceByName("Electrical device")?.Remove();
Context.Driver.Classes["Equipment"].Instances.GetInstanceByName("Device")?.Remove();
}
private void removeAclEntries()
{
Acl.RemoveAclEntries("Example site*");
}
private string getTopLevelHierarchyPrefix(int? site)
{
return $"Example site{(site != null ? " " + site : "")}";
}
}
}