-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSimulationSettingsShape.ttl
700 lines (646 loc) · 34.1 KB
/
SimulationSettingsShape.ttl
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
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
@base <http://iec.ch/TC57/2013/CIM-schema-cim16#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
<ACDCTerminalShape> rdf:type sh:NodeShape ;
sh:targetClass <ACDCTerminal> ;
sh:closed "true"^^xsd:boolean ;
sh:property _:IdentifiedObjectShape.description , _:IdentifiedObjectShape.mRID , _:IdentifiedObjectShape.name , _:IdentifiedObjectShape.ParameterEvent .
_:ACDCTerminalShape.SignalRecorder rdf:type sh:PropertyShape ;
sh:path <ACDCTerminal.SignalRecorder> ;
sh:class <SignalRecorder> ;
sh:name "Signal Recorder"@en ;
sh:description "The signal recorder where this signal is recorded."^^rdf:XMLLiteral .
<ACLineSegmentShape> rdf:type sh:NodeShape ;
sh:targetClass <ACLineSegment> ;
sh:closed "true"^^xsd:boolean .
_:ACLineSegmentShape.LineFaults rdf:type sh:PropertyShape ;
sh:path <ACLineSegment.LineFaults> ;
sh:class <LineFault> ;
sh:name "Line Faults"@en ;
sh:description "The line faults of the line segment."^^rdf:XMLLiteral .
<ClearSimulationEventShape> rdf:type sh:NodeShape ;
sh:targetClass <ClearSimulationEvent> ;
sh:property _:ClearSimulationEventShape.eventTime , _:ClearSimulationEventShape.ClearedFaultEvent , _:ClearSimulationEventShape.SimulationEvents , _:ClearSimulationEventShape.ClearedParameterEvent , _:IdentifiedObjectShape.description , _:IdentifiedObjectShape.mRID , _:IdentifiedObjectShape.name , _:IdentifiedObjectShape.ParameterEvent .
_:ClearSimulationEventShape.eventTime rdf:type sh:PropertyShape ;
sh:path <ClearSimulationEvent.eventTime> ;
sh:datatype xsd:double ;
sh:minCount "1"^^xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Event Time"@en ;
sh:description "Execution time of the event."^^rdf:XMLLiteral .
_:ClearSimulationEventShape.ClearedFaultEvent rdf:type sh:PropertyShape ;
sh:path <ClearSimulationEvent.ClearedFaultEvent> ;
sh:class <Fault> ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Cleared Fault Event"@en ;
sh:description "The fault event that is cleared by a ClearSimulationEvent."^^rdf:XMLLiteral .
_:ClearSimulationEventShape.SimulationEvents rdf:type sh:PropertyShape ;
sh:path <ClearSimulationEvent.SimulationEvents> ;
sh:class <SimulationEvents> ;
sh:minCount "1"^^xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Simulation Events"@en ;
sh:description "The simulation events to which this clear simulation event belongs to."^^rdf:XMLLiteral .
_:ClearSimulationEventShape.ClearedParameterEvent rdf:type sh:PropertyShape ;
sh:path <ClearSimulationEvent.ClearedParameterEvent> ;
sh:class <ParameterEvent> ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Cleared Parameter Event"@en ;
sh:description "The parameter event that is cleared by a ClearSimulationEvent."^^rdf:XMLLiteral .
<DetailedModelDescriptorShape> rdf:type sh:NodeShape ;
sh:targetClass <DetailedModelDescriptor> ;
sh:closed "true"^^xsd:boolean ;
sh:property _:IdentifiedObjectShape.description , _:IdentifiedObjectShape.mRID , _:IdentifiedObjectShape.name , _:IdentifiedObjectShape.ParameterEvent .
<DynamicsFunctionBlockShape> rdf:type sh:NodeShape ;
sh:targetClass <DynamicsFunctionBlock> ;
sh:closed "true"^^xsd:boolean ;
sh:property _:IdentifiedObjectShape.description , _:IdentifiedObjectShape.mRID , _:IdentifiedObjectShape.name , _:IdentifiedObjectShape.ParameterEvent .
_:DynamicsFunctionBlockShape.SignalRecorder rdf:type sh:PropertyShape ;
sh:path <DynamicsFunctionBlock.SignalRecorder> ;
sh:class <SignalRecorder> ;
sh:name "Signal Recorder"@en ;
sh:description "The signal recorder where this signal is recorded."^^rdf:XMLLiteral .
<EquipmentShape> rdf:type sh:NodeShape ;
sh:targetClass <Equipment> ;
sh:closed "true"^^xsd:boolean .
_:EquipmentShape.Faults rdf:type sh:PropertyShape ;
sh:path <Equipment.Faults> ;
sh:class <Fault> ;
sh:name "Faults"@en ;
sh:description "All faults on this equipment."^^rdf:XMLLiteral .
<EquipmentFaultShape> rdf:type sh:NodeShape ;
sh:targetClass <EquipmentFault> ;
sh:property _:EquipmentFaultShape.Terminal , _:FaultShape.impedance , _:FaultShape.kind , _:FaultShape.occurredDateTime , _:FaultShape.phases , _:IdentifiedObjectShape.description , _:IdentifiedObjectShape.mRID , _:IdentifiedObjectShape.name , _:FaultShape.FaultCauseTypes , _:FaultShape.FaultyEquipment , _:FaultShape.ClearSimulationEvent , _:FaultShape.SimulationEvents , _:IdentifiedObjectShape.ParameterEvent .
_:EquipmentFaultShape.Terminal rdf:type sh:PropertyShape ;
sh:path <EquipmentFault.Terminal> ;
sh:class <Terminal> ;
sh:minCount "1"^^xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Terminal"@en ;
sh:description "The terminal connecting to the bus to which the fault is applied."^^rdf:XMLLiteral .
<FaultShape> rdf:type sh:NodeShape ;
sh:targetClass <Fault> ;
sh:closed "true"^^xsd:boolean ;
sh:property _:IdentifiedObjectShape.description , _:IdentifiedObjectShape.mRID , _:IdentifiedObjectShape.name , _:IdentifiedObjectShape.ParameterEvent .
_:FaultShape.impedance rdf:type sh:PropertyShape ;
sh:path <Fault.impedance> ;
sh:class <FaultImpedance> ;
sh:minCount "1"^^xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Impedance"@en ;
sh:description "Fault impedance."^^rdf:XMLLiteral .
_:FaultShape.kind rdf:type sh:PropertyShape ;
sh:path <Fault.kind> ;
sh:datatype xsd:string ;
sh:minCount "1"^^xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:in _:PhaseConnectedFaultKind ;
sh:name "Kind"@en ;
sh:description "The kind of phase fault."^^rdf:XMLLiteral .
_:FaultShape.occurredDateTime rdf:type sh:PropertyShape ;
sh:path <Fault.occurredDateTime> ;
sh:datatype <https://schema.org/DateTime> ;
sh:minCount "1"^^xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Occurred Date Time"@en ;
sh:description "The date and time at which the fault occurred."^^rdf:XMLLiteral .
_:FaultShape.phases rdf:type sh:PropertyShape ;
sh:path <Fault.phases> ;
sh:datatype xsd:string ;
sh:minCount "1"^^xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:in _:PhaseCode ;
sh:name "Phases"@en ;
sh:description "The phases participating in the fault."^^rdf:XMLLiteral .
_:FaultShape.FaultCauseTypes rdf:type sh:PropertyShape ;
sh:path <Fault.FaultCauseTypes> ;
sh:class <FaultCauseType> ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Fault Cause Types"@en ;
sh:description "All types of fault cause."^^rdf:XMLLiteral .
_:FaultShape.FaultyEquipment rdf:type sh:PropertyShape ;
sh:path <Fault.FaultyEquipment> ;
sh:class <Equipment> ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Faulty Equipment"@en ;
sh:description "Equipment carrying this fault."^^rdf:XMLLiteral .
_:FaultShape.ClearSimulationEvent rdf:type sh:PropertyShape ;
sh:path <Fault.ClearSimulationEvent> ;
sh:class <ClearSimulationEvent> ;
sh:name "Clear Simulation Event"@en ;
sh:description "The event that clears this fault event."^^rdf:XMLLiteral .
_:FaultShape.SimulationEvents rdf:type sh:PropertyShape ;
sh:path <Fault.SimulationEvents> ;
sh:class <SimulationEvents> ;
sh:minCount "1"^^xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Simulation Events"@en ;
sh:description "The simulation events to which this simulation fault event belongs to."^^rdf:XMLLiteral .
<FaultCauseTypeShape> rdf:type sh:NodeShape ;
sh:targetClass <FaultCauseType> ;
sh:property _:FaultCauseTypeShape.Faults , _:IdentifiedObjectShape.description , _:IdentifiedObjectShape.mRID , _:IdentifiedObjectShape.name , _:IdentifiedObjectShape.ParameterEvent .
_:FaultCauseTypeShape.Faults rdf:type sh:PropertyShape ;
sh:path <FaultCauseType.Faults> ;
sh:class <Fault> ;
sh:name "Faults"@en ;
sh:description "All faults with this cause type."^^rdf:XMLLiteral .
<FaultImpedanceShape> rdf:type sh:NodeShape ;
sh:targetClass <FaultImpedance> ;
sh:property _:FaultImpedanceShape.rGround , _:FaultImpedanceShape.rLineToLine , _:FaultImpedanceShape.xGround , _:FaultImpedanceShape.xLineToLine .
_:FaultImpedanceShape.rGround rdf:type sh:PropertyShape ;
sh:path <FaultImpedance.rGround> ;
sh:datatype xsd:double ;
sh:maxCount "1"^^xsd:integer ;
sh:name "R Ground"@en ;
sh:description "The resistance of the fault between phases and ground."^^rdf:XMLLiteral .
_:FaultImpedanceShape.rLineToLine rdf:type sh:PropertyShape ;
sh:path <FaultImpedance.rLineToLine> ;
sh:datatype xsd:double ;
sh:maxCount "1"^^xsd:integer ;
sh:name "R Line To Line"@en ;
sh:description "The resistance of the fault between phases."^^rdf:XMLLiteral .
_:FaultImpedanceShape.xGround rdf:type sh:PropertyShape ;
sh:path <FaultImpedance.xGround> ;
sh:datatype xsd:double ;
sh:maxCount "1"^^xsd:integer ;
sh:name "X Ground"@en ;
sh:description "The reactance of the fault between phases and ground."^^rdf:XMLLiteral .
_:FaultImpedanceShape.xLineToLine rdf:type sh:PropertyShape ;
sh:path <FaultImpedance.xLineToLine> ;
sh:datatype xsd:double ;
sh:maxCount "1"^^xsd:integer ;
sh:name "X Line To Line"@en ;
sh:description "The reactance of the fault between phases."^^rdf:XMLLiteral .
<IdentifiedObjectShape> rdf:type sh:NodeShape ;
sh:targetClass <IdentifiedObject> ;
sh:closed "true"^^xsd:boolean .
_:IdentifiedObjectShape.description rdf:type sh:PropertyShape ;
sh:path <IdentifiedObject.description> ;
sh:datatype xsd:string ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Description"@en ;
sh:description "The description is a free human readable text describing or naming the object."^^rdf:XMLLiteral .
_:IdentifiedObjectShape.mRID rdf:type sh:PropertyShape ;
sh:path <IdentifiedObject.mRID> ;
sh:datatype xsd:string ;
sh:minCount "1"^^xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:name "MRID"@en ;
sh:description "Master resource identifier issued by a model authority."^^rdf:XMLLiteral .
_:IdentifiedObjectShape.name rdf:type sh:PropertyShape ;
sh:path <IdentifiedObject.name> ;
sh:datatype xsd:string ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Name"@en ;
sh:description "The name is any free human readable and possibly non unique text naming the object."^^rdf:XMLLiteral .
_:IdentifiedObjectShape.ParameterEvent rdf:type sh:PropertyShape ;
sh:path <IdentifiedObject.ParameterEvent> ;
sh:class <ParameterEvent> ;
sh:name "Parameter Event"@en ;
sh:description "The parameter event that uses a parameter which belongs to this equipment, dynamics model or signal."^^rdf:XMLLiteral .
<LineFaultShape> rdf:type sh:NodeShape ;
sh:targetClass <LineFault> ;
sh:property _:LineFaultShape.lengthFromTerminal1 , _:LineFaultShape.ACLineSegment , _:FaultShape.impedance , _:FaultShape.kind , _:FaultShape.occurredDateTime , _:FaultShape.phases , _:IdentifiedObjectShape.description , _:IdentifiedObjectShape.mRID , _:IdentifiedObjectShape.name , _:FaultShape.FaultCauseTypes , _:FaultShape.FaultyEquipment , _:FaultShape.ClearSimulationEvent , _:FaultShape.SimulationEvents , _:IdentifiedObjectShape.ParameterEvent .
_:LineFaultShape.lengthFromTerminal1 rdf:type sh:PropertyShape ;
sh:path <LineFault.lengthFromTerminal1> ;
sh:datatype xsd:double ;
sh:minCount "1"^^xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Length From Terminal1"@en .
_:LineFaultShape.ACLineSegment rdf:type sh:PropertyShape ;
sh:path <LineFault.ACLineSegment> ;
sh:class <ACLineSegment> ;
sh:minCount "1"^^xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Ac Line Segment"@en ;
sh:description "The line segment of this line fault."^^rdf:XMLLiteral .
<ParameterEventShape> rdf:type sh:NodeShape ;
sh:targetClass <ParameterEvent> ;
sh:property _:ParameterEventShape.booleanParameterValue , _:ParameterEventShape.changeKind , _:ParameterEventShape.eventTime , _:ParameterEventShape.floatParementerValue , _:ParameterEventShape.integerParameterValue , _:ParameterEventShape.parameterIRI , _:ParameterEventShape.parameterName , _:ParameterEventShape.rampDuration , _:ParameterEventShape.ClearSimulationEvent , _:ParameterEventShape.SimulationEvents , _:ParameterEventShape.UsesParameterOf , _:IdentifiedObjectShape.description , _:IdentifiedObjectShape.mRID , _:IdentifiedObjectShape.name , _:IdentifiedObjectShape.ParameterEvent .
_:ParameterEventShape.booleanParameterValue rdf:type sh:PropertyShape ;
sh:path <ParameterEvent.booleanParameterValue> ;
sh:datatype xsd:boolean ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Boolean Parameter Value"@en ;
sh:description "Boolean parameter value."^^rdf:XMLLiteral .
_:ParameterEventShape.changeKind rdf:type sh:PropertyShape ;
sh:path <ParameterEvent.changeKind> ;
sh:datatype xsd:string ;
sh:minCount "1"^^xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:in _:ParameterChangeKind ;
sh:name "Change Kind"@en ;
sh:description "Defines if the change is done in one step or using ramp."^^rdf:XMLLiteral .
_:ParameterEventShape.eventTime rdf:type sh:PropertyShape ;
sh:path <ParameterEvent.eventTime> ;
sh:datatype xsd:double ;
sh:minCount "1"^^xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Event Time"@en ;
sh:description "Execution time of the event."^^rdf:XMLLiteral .
_:ParameterEventShape.floatParementerValue rdf:type sh:PropertyShape ;
sh:path <ParameterEvent.floatParementerValue> ;
sh:datatype xsd:double ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Float Parementer Value"@en ;
sh:description "Floating point parameter value."^^rdf:XMLLiteral .
_:ParameterEventShape.integerParameterValue rdf:type sh:PropertyShape ;
sh:path <ParameterEvent.integerParameterValue> ;
sh:datatype xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Integer Parameter Value"@en ;
sh:description "Integer parameter value."^^rdf:XMLLiteral .
_:ParameterEventShape.parameterIRI rdf:type sh:PropertyShape ;
sh:path <ParameterEvent.parameterIRI> ;
sh:datatype xsd:string ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Parameter Iri"@en ;
sh:description "Identifies which parameter is changed during the event."^^rdf:XMLLiteral .
_:ParameterEventShape.parameterName rdf:type sh:PropertyShape ;
sh:path <ParameterEvent.parameterName> ;
sh:datatype xsd:string ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Parameter Name"@en ;
sh:description "Identifies which parameter is changed during the event."^^rdf:XMLLiteral .
_:ParameterEventShape.rampDuration rdf:type sh:PropertyShape ;
sh:path <ParameterEvent.rampDuration> ;
sh:datatype xsd:double ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Ramp Duration"@en ;
sh:description "Defines the duration of the ramp in case."^^rdf:XMLLiteral .
_:ParameterEventShape.ClearSimulationEvent rdf:type sh:PropertyShape ;
sh:path <ParameterEvent.ClearSimulationEvent> ;
sh:class <ClearSimulationEvent> ;
sh:name "Clear Simulation Event"@en ;
sh:description "The event that clears this fault event."^^rdf:XMLLiteral .
_:ParameterEventShape.SimulationEvents rdf:type sh:PropertyShape ;
sh:path <ParameterEvent.SimulationEvents> ;
sh:class <SimulationEvents> ;
sh:minCount "1"^^xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Simulation Events"@en ;
sh:description "The simulation events to which this parameter event belongs to."^^rdf:XMLLiteral .
_:ParameterEventShape.UsesParameterOf rdf:type sh:PropertyShape ;
sh:path <ParameterEvent.UsesParameterOf> ;
sh:class <IdentifiedObject> ;
sh:minCount "1"^^xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Uses Parameter Of"@en ;
sh:description "The equipment, dynamics model or signal that is used to define the parameter event."^^rdf:XMLLiteral .
<PowerFlowSettingsShape> rdf:type sh:NodeShape ;
sh:targetClass <PowerFlowSettings> ;
sh:property _:PowerFlowSettingsShape.activePowerTolerance , _:PowerFlowSettingsShape.algorithmKind , _:PowerFlowSettingsShape.flatStart , _:PowerFlowSettingsShape.impedanceThreshold , _:PowerFlowSettingsShape.interchangeControlEnabled , _:PowerFlowSettingsShape.loadVoltageDependency , _:PowerFlowSettingsShape.reactivePowerTolerance , _:PowerFlowSettingsShape.respectActivePowerLimits , _:PowerFlowSettingsShape.respectReactivePowerLimits , _:PowerFlowSettingsShape.shiftKind , _:PowerFlowSettingsShape.slackDistributionKind , _:PowerFlowSettingsShape.staticVarCompensatorControlPriority , _:PowerFlowSettingsShape.switchedShuntControlPriority , _:PowerFlowSettingsShape.transformerPhaseTapControlPriority , _:PowerFlowSettingsShape.transformerRatioTapControlPriority , _:PowerFlowSettingsShape.voltageAngleLimit , _:PowerFlowSettingsShape.voltageTolerance , _:PowerFlowSettingsShape.SimulationSettings , _:IdentifiedObjectShape.description , _:IdentifiedObjectShape.mRID , _:IdentifiedObjectShape.name , _:IdentifiedObjectShape.ParameterEvent .
_:PowerFlowSettingsShape.activePowerTolerance rdf:type sh:PropertyShape ;
sh:path <PowerFlowSettings.activePowerTolerance> ;
sh:datatype xsd:double ;
sh:minCount "1"^^xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Active Power Tolerance"@en ;
sh:description "The active power tolerance for a given power flow solution."^^rdf:XMLLiteral .
_:PowerFlowSettingsShape.algorithmKind rdf:type sh:PropertyShape ;
sh:path <PowerFlowSettings.algorithmKind> ;
sh:datatype xsd:string ;
sh:minCount "1"^^xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:in _:PowerFlowAlgorithmKind ;
sh:name "Algorithm Kind"@en ;
sh:description "It defines the power flow algorithm."^^rdf:XMLLiteral .
_:PowerFlowSettingsShape.flatStart rdf:type sh:PropertyShape ;
sh:path <PowerFlowSettings.flatStart> ;
sh:datatype xsd:boolean ;
sh:minCount "1"^^xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Flat Start"@en ;
sh:description "True means that power flow used a flat start."^^rdf:XMLLiteral .
_:PowerFlowSettingsShape.impedanceThreshold rdf:type sh:PropertyShape ;
sh:path <PowerFlowSettings.impedanceThreshold> ;
sh:datatype xsd:double ;
sh:minCount "1"^^xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Impedance Threshold"@en ;
sh:description "Zero impedance threshold used considered when calculating zero or low impendence branches."^^rdf:XMLLiteral .
_:PowerFlowSettingsShape.interchangeControlEnabled rdf:type sh:PropertyShape ;
sh:path <PowerFlowSettings.interchangeControlEnabled> ;
sh:datatype xsd:boolean ;
sh:minCount "1"^^xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Interchange Control Enabled"@en ;
sh:description "Define if the interchange control is enabled during power flow calculation."^^rdf:XMLLiteral .
_:PowerFlowSettingsShape.loadVoltageDependency rdf:type sh:PropertyShape ;
sh:path <PowerFlowSettings.loadVoltageDependency> ;
sh:datatype xsd:boolean ;
sh:minCount "1"^^xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Load Voltage Dependency"@en ;
sh:description "Defines if voltage dependency of loads is considered."^^rdf:XMLLiteral .
_:PowerFlowSettingsShape.reactivePowerTolerance rdf:type sh:PropertyShape ;
sh:path <PowerFlowSettings.reactivePowerTolerance> ;
sh:datatype xsd:double ;
sh:minCount "1"^^xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Reactive Power Tolerance"@en ;
sh:description "The reactive power tolerance for a given power flow solution."^^rdf:XMLLiteral .
_:PowerFlowSettingsShape.respectActivePowerLimits rdf:type sh:PropertyShape ;
sh:path <PowerFlowSettings.respectActivePowerLimits> ;
sh:datatype xsd:boolean ;
sh:minCount "1"^^xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Respect Active Power Limits"@en ;
sh:description "Indicates if active power limits of the equipment are respected during power flow calculation."^^rdf:XMLLiteral .
_:PowerFlowSettingsShape.respectReactivePowerLimits rdf:type sh:PropertyShape ;
sh:path <PowerFlowSettings.respectReactivePowerLimits> ;
sh:datatype xsd:boolean ;
sh:minCount "1"^^xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Respect Reactive Power Limits"@en ;
sh:description "Indicates if reactive power of limits of the equipment are respected during power flow calculation."^^rdf:XMLLiteral .
_:PowerFlowSettingsShape.shiftKind rdf:type sh:PropertyShape ;
sh:path <PowerFlowSettings.shiftKind> ;
sh:datatype xsd:string ;
sh:maxCount "1"^^xsd:integer ;
sh:in _:PowerShiftKind ;
sh:name "Shift Kind"@en ;
sh:description "Defines type of scaling used to reach defined net-position."^^rdf:XMLLiteral .
_:PowerFlowSettingsShape.slackDistributionKind rdf:type sh:PropertyShape ;
sh:path <PowerFlowSettings.slackDistributionKind> ;
sh:datatype xsd:string ;
sh:minCount "1"^^xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:in _:SlackDistributionKind ;
sh:name "Slack Distribution Kind"@en ;
sh:description "Defines slack distribution used in power flow calculation."^^rdf:XMLLiteral .
_:PowerFlowSettingsShape.staticVarCompensatorControlPriority rdf:type sh:PropertyShape ;
sh:path <PowerFlowSettings.staticVarCompensatorControlPriority> ;
sh:datatype xsd:integer ;
sh:minCount "1"^^xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Static Var Compensator Control Priority"@en ;
sh:description "Indicates if control is applied on static var compensators."^^rdf:XMLLiteral .
_:PowerFlowSettingsShape.switchedShuntControlPriority rdf:type sh:PropertyShape ;
sh:path <PowerFlowSettings.switchedShuntControlPriority> ;
sh:datatype xsd:integer ;
sh:minCount "1"^^xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Switched Shunt Control Priority"@en ;
sh:description "Indicates if control is applied on switched shunts."^^rdf:XMLLiteral .
_:PowerFlowSettingsShape.transformerPhaseTapControlPriority rdf:type sh:PropertyShape ;
sh:path <PowerFlowSettings.transformerPhaseTapControlPriority> ;
sh:datatype xsd:integer ;
sh:minCount "1"^^xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Transformer Phase Tap Control Priority"@en ;
sh:description "Indicates if phase tap change control is applied on transformers."^^rdf:XMLLiteral .
_:PowerFlowSettingsShape.transformerRatioTapControlPriority rdf:type sh:PropertyShape ;
sh:path <PowerFlowSettings.transformerRatioTapControlPriority> ;
sh:datatype xsd:integer ;
sh:minCount "1"^^xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Transformer Ratio Tap Control Priority"@en ;
sh:description "Indicates if ratio tap change control is applied on transformers."^^rdf:XMLLiteral .
_:PowerFlowSettingsShape.voltageAngleLimit rdf:type sh:PropertyShape ;
sh:path <PowerFlowSettings.voltageAngleLimit> ;
sh:datatype xsd:double ;
sh:minCount "1"^^xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Voltage Angle Limit"@en ;
sh:description "The maximum allowed voltage angle between two nodes for a given power flow solution."^^rdf:XMLLiteral .
_:PowerFlowSettingsShape.voltageTolerance rdf:type sh:PropertyShape ;
sh:path <PowerFlowSettings.voltageTolerance> ;
sh:datatype xsd:double ;
sh:minCount "1"^^xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Voltage Tolerance"@en .
_:PowerFlowSettingsShape.SimulationSettings rdf:type sh:PropertyShape ;
sh:path <PowerFlowSettings.SimulationSettings> ;
sh:class <SimulationSettings> ;
sh:name "Simulation Settings"@en ;
sh:description "The simulation settings to which this power flow settings belongs to."^^rdf:XMLLiteral .
<SignalConfigurationShape> rdf:type sh:NodeShape ;
sh:targetClass <SignalConfiguration> ;
sh:property _:SignalConfigurationShape.SignalRecorder , _:IdentifiedObjectShape.description , _:IdentifiedObjectShape.mRID , _:IdentifiedObjectShape.name , _:IdentifiedObjectShape.ParameterEvent .
_:SignalConfigurationShape.SignalRecorder rdf:type sh:PropertyShape ;
sh:path <SignalConfiguration.SignalRecorder> ;
sh:class <SignalRecorder> ;
sh:name "Signal Recorder"@en ;
sh:description "The signal that is recorded in this signal configuration."^^rdf:XMLLiteral .
<SignalDescriptorShape> rdf:type sh:NodeShape ;
sh:targetClass <SignalDescriptor> ;
sh:closed "true"^^xsd:boolean ;
sh:property _:IdentifiedObjectShape.description , _:IdentifiedObjectShape.mRID , _:IdentifiedObjectShape.name , _:IdentifiedObjectShape.ParameterEvent .
_:SignalDescriptorShape.SignalRecorder rdf:type sh:PropertyShape ;
sh:path <SignalDescriptor.SignalRecorder> ;
sh:class <SignalRecorder> ;
sh:name "Signal Recorder"@en ;
sh:description "The signal recorder where this signal is recorded."^^rdf:XMLLiteral .
<SignalRecorderShape> rdf:type sh:NodeShape ;
sh:targetClass <SignalRecorder> ;
sh:property _:SignalRecorderShape.signalKind , _:SignalRecorderShape.RecordedSignalAt , _:SignalRecorderShape.SimulationConfiguration , _:SignalRecorderShape.RecordedSignalOf , _:SignalRecorderShape.RecordedSignal , _:IdentifiedObjectShape.description , _:IdentifiedObjectShape.mRID , _:IdentifiedObjectShape.name , _:IdentifiedObjectShape.ParameterEvent .
_:SignalRecorderShape.signalKind rdf:type sh:PropertyShape ;
sh:path <SignalRecorder.signalKind> ;
sh:datatype xsd:string ;
sh:minCount "1"^^xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:in _:SignalKind ;
sh:name "Signal Kind"@en ;
sh:description "Indicates the kind of the signal."^^rdf:XMLLiteral .
_:SignalRecorderShape.RecordedSignalAt rdf:type sh:PropertyShape ;
sh:path <SignalRecorder.RecordedSignalAt> ;
sh:class <ACDCTerminal> ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Recorded Signal At"@en ;
sh:description "The terminal at which the signal is recorded."^^rdf:XMLLiteral .
_:SignalRecorderShape.SimulationConfiguration rdf:type sh:PropertyShape ;
sh:path <SignalRecorder.SimulationConfiguration> ;
sh:class <SignalConfiguration> ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Simulation Configuration"@en ;
sh:description "The simulation configuration set for which this signal recorder is recording."^^rdf:XMLLiteral .
_:SignalRecorderShape.RecordedSignalOf rdf:type sh:PropertyShape ;
sh:path <SignalRecorder.RecordedSignalOf> ;
sh:class <DynamicsFunctionBlock> ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Recorded Signal Of"@en ;
sh:description "The dynamics function block to which the singal belongs to."^^rdf:XMLLiteral .
_:SignalRecorderShape.RecordedSignal rdf:type sh:PropertyShape ;
sh:path <SignalRecorder.RecordedSignal> ;
sh:class <SignalDescriptor> ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Recorded Signal"@en ;
sh:description "The signal that is recorded during the simulation."^^rdf:XMLLiteral .
<SimulationEventsShape> rdf:type sh:NodeShape ;
sh:targetClass <SimulationEvents> ;
sh:property _:SimulationEventsShape.FaultEvent , _:SimulationEventsShape.ClearSimulationEvent , _:SimulationEventsShape.ParameterEvent , _:IdentifiedObjectShape.description , _:IdentifiedObjectShape.mRID , _:IdentifiedObjectShape.name , _:IdentifiedObjectShape.ParameterEvent .
_:SimulationEventsShape.FaultEvent rdf:type sh:PropertyShape ;
sh:path <SimulationEvents.FaultEvent> ;
sh:class <Fault> ;
sh:name "Fault Event"@en ;
sh:description "The simulation fault event that is part of this simulation."^^rdf:XMLLiteral .
_:SimulationEventsShape.ClearSimulationEvent rdf:type sh:PropertyShape ;
sh:path <SimulationEvents.ClearSimulationEvent> ;
sh:class <ClearSimulationEvent> ;
sh:name "Clear Simulation Event"@en ;
sh:description "The clear simulation event that is part of this simulation."^^rdf:XMLLiteral .
_:SimulationEventsShape.ParameterEvent rdf:type sh:PropertyShape ;
sh:path <SimulationEvents.ParameterEvent> ;
sh:class <ParameterEvent> ;
sh:name "Parameter Event"@en ;
sh:description "The parameter event that is part of this simulation."^^rdf:XMLLiteral .
<SimulationSettingsShape> rdf:type sh:NodeShape ;
sh:targetClass <SimulationSettings> ;
sh:property _:SimulationSettingsShape.duration , _:SimulationSettingsShape.integrationStepSize , _:SimulationSettingsShape.isIntegrationStepSizeVariable , _:SimulationSettingsShape.maximumIntegrationStepSize , _:SimulationSettingsShape.minimumIntegrationStepSize , _:SimulationSettingsShape.simulationResultsRecordedEvery , _:SimulationSettingsShape.PowerFlowSettings , _:IdentifiedObjectShape.description , _:IdentifiedObjectShape.mRID , _:IdentifiedObjectShape.name , _:IdentifiedObjectShape.ParameterEvent .
_:SimulationSettingsShape.duration rdf:type sh:PropertyShape ;
sh:path <SimulationSettings.duration> ;
sh:datatype xsd:duration ;
sh:minCount "1"^^xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Duration"@en ;
sh:description "Complete simulation duration relative to the start of the simulation."^^rdf:XMLLiteral .
_:SimulationSettingsShape.integrationStepSize rdf:type sh:PropertyShape ;
sh:path <SimulationSettings.integrationStepSize> ;
sh:datatype xsd:double ;
sh:minCount "1"^^xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Integration Step Size"@en ;
sh:description "Indicates the integration step size."^^rdf:XMLLiteral .
_:SimulationSettingsShape.isIntegrationStepSizeVariable rdf:type sh:PropertyShape ;
sh:path <SimulationSettings.isIntegrationStepSizeVariable> ;
sh:datatype xsd:boolean ;
sh:minCount "1"^^xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Is Integration Step Size Variable"@en ;
sh:description "Indicates if the integration step size is variable or fixed."^^rdf:XMLLiteral .
_:SimulationSettingsShape.maximumIntegrationStepSize rdf:type sh:PropertyShape ;
sh:path <SimulationSettings.maximumIntegrationStepSize> ;
sh:datatype xsd:double ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Maximum Integration Step Size"@en ;
sh:description "Maximum integration step size."^^rdf:XMLLiteral .
_:SimulationSettingsShape.minimumIntegrationStepSize rdf:type sh:PropertyShape ;
sh:path <SimulationSettings.minimumIntegrationStepSize> ;
sh:datatype xsd:double ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Minimum Integration Step Size"@en ;
sh:description "Minimum integration step size."^^rdf:XMLLiteral .
_:SimulationSettingsShape.simulationResultsRecordedEvery rdf:type sh:PropertyShape ;
sh:path <SimulationSettings.simulationResultsRecordedEvery> ;
sh:datatype xsd:double ;
sh:minCount "1"^^xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Simulation Results Recorded Every"@en ;
sh:description "Indicates the periodicity of recording of simulation results."^^rdf:XMLLiteral .
_:SimulationSettingsShape.PowerFlowSettings rdf:type sh:PropertyShape ;
sh:path <SimulationSettings.PowerFlowSettings> ;
sh:class <PowerFlowSettings> ;
sh:minCount "1"^^xsd:integer ;
sh:maxCount "1"^^xsd:integer ;
sh:name "Power Flow Settings"@en ;
sh:description "The power flow settings that are part of the simulation settings."^^rdf:XMLLiteral .
<TerminalShape> rdf:type sh:NodeShape ;
sh:targetClass <Terminal> ;
sh:closed "true"^^xsd:boolean ;
sh:property _:IdentifiedObjectShape.description , _:IdentifiedObjectShape.mRID , _:IdentifiedObjectShape.name , _:ACDCTerminalShape.SignalRecorder , _:IdentifiedObjectShape.ParameterEvent .
_:TerminalShape.EquipmentFaults rdf:type sh:PropertyShape ;
sh:path <Terminal.EquipmentFaults> ;
sh:class <EquipmentFault> ;
sh:name "Equipment Faults"@en ;
sh:description "The equipment faults at this terminal."^^rdf:XMLLiteral .
_:ParameterChangeKind rdf:first "step" ;
rdf:rest _:ParameterChangeKind.ramp .
_:ParameterChangeKind.ramp rdf:first "ramp" ;
rdf:rest rdf:nil .
_:PhaseCode rdf:first "ABCN" ;
rdf:rest _:PhaseCode.ABC .
_:PhaseCode.ABC rdf:first "ABC" ;
rdf:rest _:PhaseCode.ABN .
_:PhaseCode.ABN rdf:first "ABN" ;
rdf:rest _:PhaseCode.ACN .
_:PhaseCode.ACN rdf:first "ACN" ;
rdf:rest _:PhaseCode.BCN .
_:PhaseCode.BCN rdf:first "BCN" ;
rdf:rest _:PhaseCode.AB .
_:PhaseCode.AB rdf:first "AB" ;
rdf:rest _:PhaseCode.AC .
_:PhaseCode.AC rdf:first "AC" ;
rdf:rest _:PhaseCode.BC .
_:PhaseCode.BC rdf:first "BC" ;
rdf:rest _:PhaseCode.AN .
_:PhaseCode.AN rdf:first "AN" ;
rdf:rest _:PhaseCode.BN .
_:PhaseCode.BN rdf:first "BN" ;
rdf:rest _:PhaseCode.CN .
_:PhaseCode.CN rdf:first "CN" ;
rdf:rest _:PhaseCode.A .
_:PhaseCode.A rdf:first "A" ;
rdf:rest _:PhaseCode.B .
_:PhaseCode.B rdf:first "B" ;
rdf:rest _:PhaseCode.C .
_:PhaseCode.C rdf:first "C" ;
rdf:rest _:PhaseCode.N .
_:PhaseCode.N rdf:first "N" ;
rdf:rest _:PhaseCode.s1N .
_:PhaseCode.s1N rdf:first "s1N" ;
rdf:rest _:PhaseCode.s2N .
_:PhaseCode.s2N rdf:first "s2N" ;
rdf:rest _:PhaseCode.s12N .
_:PhaseCode.s12N rdf:first "s12N" ;
rdf:rest _:PhaseCode.s1 .
_:PhaseCode.s1 rdf:first "s1" ;
rdf:rest _:PhaseCode.s2 .
_:PhaseCode.s2 rdf:first "s2" ;
rdf:rest _:PhaseCode.s12 .
_:PhaseCode.s12 rdf:first "s12" ;
rdf:rest _:PhaseCode.none .
_:PhaseCode.none rdf:first "none" ;
rdf:rest _:PhaseCode.X .
_:PhaseCode.X rdf:first "X" ;
rdf:rest _:PhaseCode.XY .
_:PhaseCode.XY rdf:first "XY" ;
rdf:rest _:PhaseCode.XN .
_:PhaseCode.XN rdf:first "XN" ;
rdf:rest _:PhaseCode.XYN .
_:PhaseCode.XYN rdf:first "XYN" ;
rdf:rest rdf:nil .
_:PhaseConnectedFaultKind rdf:first "lineToGround" ;
rdf:rest _:PhaseConnectedFaultKind.lineToLine .
_:PhaseConnectedFaultKind.lineToLine rdf:first "lineToLine" ;
rdf:rest _:PhaseConnectedFaultKind.lineToLineToGround .
_:PhaseConnectedFaultKind.lineToLineToGround rdf:first "lineToLineToGround" ;
rdf:rest _:PhaseConnectedFaultKind.lineOpen .
_:PhaseConnectedFaultKind.lineOpen rdf:first "lineOpen" ;
rdf:rest rdf:nil .
_:PowerFlowAlgorithmKind rdf:first "fullNewtonRaphson" ;
rdf:rest _:PowerFlowAlgorithmKind.fixedSlopeNewtonRaphson .
_:PowerFlowAlgorithmKind.fixedSlopeNewtonRaphson rdf:first "fixedSlopeNewtonRaphson" ;
rdf:rest _:PowerFlowAlgorithmKind.fastDecoupled .
_:PowerFlowAlgorithmKind.fastDecoupled rdf:first "fastDecoupled" ;
rdf:rest _:PowerFlowAlgorithmKind.gaussSeidel .
_:PowerFlowAlgorithmKind.gaussSeidel rdf:first "gaussSeidel" ;
rdf:rest _:PowerFlowAlgorithmKind.modifiedGaussSeidel .
_:PowerFlowAlgorithmKind.modifiedGaussSeidel rdf:first "modifiedGaussSeidel" ;
rdf:rest _:PowerFlowAlgorithmKind.dcPowerFlow .
_:PowerFlowAlgorithmKind.dcPowerFlow rdf:first "dcPowerFlow" ;
rdf:rest rdf:nil .
_:PowerShiftKind rdf:first "conformLoadShift" ;
rdf:rest _:PowerShiftKind.allLoadShift .
_:PowerShiftKind.allLoadShift rdf:first "allLoadShift" ;
rdf:rest _:PowerShiftKind.generationShift .
_:PowerShiftKind.generationShift rdf:first "generationShift" ;
rdf:rest _:PowerShiftKind.generationAndLoadShiftKey .
_:PowerShiftKind.generationAndLoadShiftKey rdf:first "generationAndLoadShiftKey" ;
rdf:rest rdf:nil .
_:SignalKind rdf:first "detailedModel" ;
rdf:rest _:SignalKind.standardModelInternal .
_:SignalKind.standardModelInternal rdf:first "standardModelInternal" ;
rdf:rest _:SignalKind.powerSystemSignal .
_:SignalKind.powerSystemSignal rdf:first "powerSystemSignal" ;
rdf:rest rdf:nil .
_:SlackDistributionKind rdf:first "loadDistribution" ;
rdf:rest _:SlackDistributionKind.generationDistributionParticipationFactor .
_:SlackDistributionKind.generationDistributionParticipationFactor rdf:first "generationDistributionParticipationFactor" ;
rdf:rest _:SlackDistributionKind.generationDistributionActivePowerAndVoltageNodesOnly .
_:SlackDistributionKind.generationDistributionActivePowerAndVoltageNodesOnly rdf:first "generationDistributionActivePowerAndVoltageNodesOnly" ;
rdf:rest _:SlackDistributionKind.singleReferenceMachine .
_:SlackDistributionKind.singleReferenceMachine rdf:first "singleReferenceMachine" ;
rdf:rest rdf:nil .