-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEquipmentBoundary.ttl
293 lines (273 loc) · 17.7 KB
/
EquipmentBoundary.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
@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#> .
<ACDCTerminal> rdf:type rdfs:Class ;
rdfs:subClassOf <IdentifiedObject> ;
rdfs:label "ACDCTerminal"@en ;
rdfs:comment "An electrical connection point (AC or DC) to a piece of conducting equipment. Terminals are connected at physical connection points called connectivity nodes."^^rdf:XMLLiteral .
<BaseVoltage> rdf:type rdfs:Class ;
rdfs:subClassOf <IdentifiedObject> ;
rdfs:label "BaseVoltage"@en ;
rdfs:comment "Defines a system base voltage which is referenced. "^^rdf:XMLLiteral .
<BaseVoltage.nominalVoltage> rdf:type rdfs:Property ;
rdfs:label "nominalVoltage"@en ;
rdfs:domain <BaseVoltage> ;
rdfs:range xsd:double ;
rdfs:comment "The power system resource's base voltage. Shall be a positive value and not zero."^^rdf:XMLLiteral .
<BaseVoltage.VoltageLevel> rdf:type rdfs:Property ;
rdfs:label "VoltageLevel"@en ;
rdfs:domain <BaseVoltage> ;
rdfs:range <VoltageLevel> ;
rdfs:comment "The voltage levels having this base voltage."^^rdf:XMLLiteral .
<Bay> rdf:type rdfs:Class ;
rdfs:subClassOf <EquipmentContainer> ;
rdfs:label "Bay"@en ;
rdfs:comment "A collection of power system resources (within a given substation) including conducting equipment, protection relays, measurements, and telemetry. A bay typically represents a physical grouping related to modularization of equipment."^^rdf:XMLLiteral .
<Bay.VoltageLevel> rdf:type rdfs:Property ;
rdfs:label "VoltageLevel"@en ;
rdfs:domain <Bay> ;
rdfs:range <VoltageLevel> ;
rdfs:comment "The voltage level containing this bay."^^rdf:XMLLiteral .
<BoundaryPoint> rdf:type rdfs:Class ;
rdfs:subClassOf <PowerSystemResource> ;
rdfs:label "BoundaryPoint"@en ;
rdfs:comment "Designates a connection point at which one or more model authority sets shall connect to. The location of the connection point as well as other properties are agreed between organisations responsible for the interconnection, hence all attributes of the class represent this agreement. It is primarily used in a boundary model authority set which can contain one or many BoundaryPoint-s among other Equipment-s and their connections."^^rdf:XMLLiteral .
<BoundaryPoint.fromEndIsoCode> rdf:type rdfs:Property ;
rdfs:label "fromEndIsoCode"@en ;
rdfs:domain <BoundaryPoint> ;
rdfs:range xsd:string ;
rdfs:comment "The ISO code of the region which the \"From\" side of the Boundary point belongs to or it is connected to.\nThe ISO code is a two-character country code as defined by ISO 3166 (http://www.iso.org/iso/country_codes). The length of the string is 2 characters maximum."^^rdf:XMLLiteral .
<BoundaryPoint.fromEndName> rdf:type rdfs:Property ;
rdfs:label "fromEndName"@en ;
rdfs:domain <BoundaryPoint> ;
rdfs:range xsd:string ;
rdfs:comment "A human readable name with length of the string 64 characters maximum. It covers the following two cases:\n-if the Boundary point is placed on a tie-line, it is the name (IdentifiedObject.name) of the substation at which the \"From\" side of the tie-line is connected to.\n-if the Boundary point is placed in a substation, it is the name (IdentifiedObject.name) of the element (e.g. PowerTransformer, ACLineSegment, Switch, etc.) at which the \"From\" side of the Boundary point is connected to."^^rdf:XMLLiteral .
<BoundaryPoint.fromEndNameTso> rdf:type rdfs:Property ;
rdfs:label "fromEndNameTso"@en ;
rdfs:domain <BoundaryPoint> ;
rdfs:range xsd:string ;
rdfs:comment "Identifies the name of the transmission system operator, distribution system operator or other entity at which the \"From\" side of the interconnection is connected to. The length of the string is 64 characters maximum."^^rdf:XMLLiteral .
<BoundaryPoint.isDirectCurrent> rdf:type rdfs:Property ;
rdfs:label "isDirectCurrent"@en ;
rdfs:domain <BoundaryPoint> ;
rdfs:range xsd:boolean ;
rdfs:comment "If true, this boundary point is a point of common coupling (PCC) of a direct current (DC) interconnection, otherwise the interconnection is AC (default)."^^rdf:XMLLiteral .
<BoundaryPoint.isExcludedFromAreaInterchange> rdf:type rdfs:Property ;
rdfs:label "isExcludedFromAreaInterchange"@en ;
rdfs:domain <BoundaryPoint> ;
rdfs:range xsd:boolean ;
rdfs:comment "If true, this boundary point is on the interconnection that is excluded from control area interchange calculation and consequently has no related tie flows. Otherwise, the interconnection is included in control area interchange and a TieFlow is required at all sides of the boundary point (default)."^^rdf:XMLLiteral .
<BoundaryPoint.toEndIsoCode> rdf:type rdfs:Property ;
rdfs:label "toEndIsoCode"@en ;
rdfs:domain <BoundaryPoint> ;
rdfs:range xsd:string ;
rdfs:comment "The ISO code of the region which the \"To\" side of the Boundary point belongs to or is connected to.\nThe ISO code is a two-character country code as defined by ISO 3166 (http://www.iso.org/iso/country_codes). The length of the string is 2 characters maximum."^^rdf:XMLLiteral .
<BoundaryPoint.toEndName> rdf:type rdfs:Property ;
rdfs:label "toEndName"@en ;
rdfs:domain <BoundaryPoint> ;
rdfs:range xsd:string ;
rdfs:comment "A human readable name with length of the string 64 characters maximum. It covers the following two cases:\n-if the Boundary point is placed on a tie-line, it is the name (IdentifiedObject.name) of the substation at which the \"To\" side of the tie-line is connected to.\n-if the Boundary point is placed in a substation, it is the name (IdentifiedObject.name) of the element (e.g. PowerTransformer, ACLineSegment, Switch, etc.) at which the \"To\" side of the Boundary point is connected to."^^rdf:XMLLiteral .
<BoundaryPoint.toEndNameTso> rdf:type rdfs:Property ;
rdfs:label "toEndNameTso"@en ;
rdfs:domain <BoundaryPoint> ;
rdfs:range xsd:string ;
rdfs:comment "Identifies the name of the transmission system operator, distribution system operator or other entity at which the \"To\" side of the interconnection is connected to. The length of the string is 64 characters maximum."^^rdf:XMLLiteral .
<BoundaryPoint.ConnectivityNode> rdf:type rdfs:Property ;
rdfs:label "ConnectivityNode"@en ;
rdfs:domain <BoundaryPoint> ;
rdfs:range <ConnectivityNode> ;
rdfs:comment "The connectivity node that is designated as a boundary point."^^rdf:XMLLiteral .
<ConductingEquipment> rdf:type rdfs:Class ;
rdfs:subClassOf <Equipment> ;
rdfs:label "ConductingEquipment"@en ;
rdfs:comment "The parts of the AC power system that are designed to carry current or that are conductively connected through terminals."^^rdf:XMLLiteral .
<ConductingEquipment.Terminals> rdf:type rdfs:Property ;
rdfs:label "Terminals"@en ;
rdfs:domain <ConductingEquipment> ;
rdfs:range <Terminal> ;
rdfs:comment "Conducting equipment have terminals that may be connected to other conducting equipment terminals via connectivity nodes or topological nodes."^^rdf:XMLLiteral .
<ConnectivityNode> rdf:type rdfs:Class ;
rdfs:subClassOf <IdentifiedObject> ;
rdfs:label "ConnectivityNode"@en ;
rdfs:comment "Connectivity nodes are points where terminals of AC conducting equipment are connected together with zero impedance."^^rdf:XMLLiteral .
<ConnectivityNode.Terminals> rdf:type rdfs:Property ;
rdfs:label "Terminals"@en ;
rdfs:domain <ConnectivityNode> ;
rdfs:range <Terminal> ;
rdfs:comment "Terminals interconnected with zero impedance at a this connectivity node. "^^rdf:XMLLiteral .
<ConnectivityNode.ConnectivityNodeContainer> rdf:type rdfs:Property ;
rdfs:label "ConnectivityNodeContainer"@en ;
rdfs:domain <ConnectivityNode> ;
rdfs:range <ConnectivityNodeContainer> ;
rdfs:comment "Container of this connectivity node."^^rdf:XMLLiteral .
<ConnectivityNode.BoundaryPoint> rdf:type rdfs:Property ;
rdfs:label "BoundaryPoint"@en ;
rdfs:domain <ConnectivityNode> ;
rdfs:range <BoundaryPoint> ;
rdfs:comment "The boundary point associated with the connectivity node."^^rdf:XMLLiteral .
<ConnectivityNodeContainer> rdf:type rdfs:Class ;
rdfs:subClassOf <PowerSystemResource> ;
rdfs:label "ConnectivityNodeContainer"@en ;
rdfs:comment "A base class for all objects that may contain connectivity nodes or topological nodes."^^rdf:XMLLiteral .
<ConnectivityNodeContainer.ConnectivityNodes> rdf:type rdfs:Property ;
rdfs:label "ConnectivityNodes"@en ;
rdfs:domain <ConnectivityNodeContainer> ;
rdfs:range <ConnectivityNode> ;
rdfs:comment "Connectivity nodes which belong to this connectivity node container."^^rdf:XMLLiteral .
<Connector> rdf:type rdfs:Class ;
rdfs:subClassOf <ConductingEquipment> ;
rdfs:label "Connector"@en ;
rdfs:comment "A conductor, or group of conductors, with negligible impedance, that serve to connect other conducting equipment within a single substation and are modelled with a single logical terminal."^^rdf:XMLLiteral .
<EnergySchedulingType> rdf:type rdfs:Class ;
rdfs:subClassOf <IdentifiedObject> ;
rdfs:label "EnergySchedulingType"@en ;
rdfs:comment "Used to define the type of generation for scheduling purposes."^^rdf:XMLLiteral .
<Equipment> rdf:type rdfs:Class ;
rdfs:subClassOf <PowerSystemResource> ;
rdfs:label "Equipment"@en ;
rdfs:comment "The parts of a power system that are physical devices, electronic or mechanical."^^rdf:XMLLiteral .
<Equipment.EquipmentContainer> rdf:type rdfs:Property ;
rdfs:label "EquipmentContainer"@en ;
rdfs:domain <Equipment> ;
rdfs:range <EquipmentContainer> ;
rdfs:comment "Container of this equipment."^^rdf:XMLLiteral .
<EquipmentContainer> rdf:type rdfs:Class ;
rdfs:subClassOf <ConnectivityNodeContainer> ;
rdfs:label "EquipmentContainer"@en ;
rdfs:comment "A modelling construct to provide a root class for containing equipment. "^^rdf:XMLLiteral .
<EquipmentContainer.Equipments> rdf:type rdfs:Property ;
rdfs:label "Equipments"@en ;
rdfs:domain <EquipmentContainer> ;
rdfs:range <Equipment> ;
rdfs:comment "Contained equipment."^^rdf:XMLLiteral .
<GeographicalRegion> rdf:type rdfs:Class ;
rdfs:subClassOf <IdentifiedObject> ;
rdfs:label "GeographicalRegion"@en ;
rdfs:comment "A geographical region of a power system network model."^^rdf:XMLLiteral .
<GeographicalRegion.Regions> rdf:type rdfs:Property ;
rdfs:label "Regions"@en ;
rdfs:domain <GeographicalRegion> ;
rdfs:range <SubGeographicalRegion> ;
rdfs:comment "All sub-geographical regions within this geographical region."^^rdf:XMLLiteral .
<IdentifiedObject> rdf:type rdfs:Class ;
rdfs:label "IdentifiedObject"@en ;
rdfs:comment "This is a root class to provide common identification for all classes needing identification and naming attributes."^^rdf:XMLLiteral .
<IdentifiedObject.description> rdf:type rdfs:Property ;
rdfs:label "description"@en ;
rdfs:domain <IdentifiedObject> ;
rdfs:range xsd:string ;
rdfs:comment "The description is a free human readable text describing or naming the object. It may be non unique and may not correlate to a naming hierarchy."^^rdf:XMLLiteral .
<IdentifiedObject.energyIdentCodeEic> rdf:type rdfs:Property ;
rdfs:label "energyIdentCodeEic"@en ;
rdfs:domain <IdentifiedObject> ;
rdfs:range xsd:string ;
rdfs:comment "The attribute is used for an exchange of the EIC code (Energy identification Code). The length of the string is 16 characters as defined by the EIC code. For details on EIC scheme please refer to ENTSO-E web site."^^rdf:XMLLiteral .
<IdentifiedObject.mRID> rdf:type rdfs:Property ;
rdfs:label "mRID"@en ;
rdfs:domain <IdentifiedObject> ;
rdfs:range xsd:string ;
rdfs:comment "Master resource identifier issued by a model authority. The mRID is unique within an exchange context. Global uniqueness is easily achieved by using a UUID, as specified in RFC 4122, for the mRID. The use of UUID is strongly recommended.\nFor CIMXML data files in RDF syntax conforming to IEC 61970-552, the mRID is mapped to rdf:ID or rdf:about attributes that identify CIM object elements."^^rdf:XMLLiteral .
<IdentifiedObject.name> rdf:type rdfs:Property ;
rdfs:label "name"@en ;
rdfs:domain <IdentifiedObject> ;
rdfs:range xsd:string ;
rdfs:comment "The name is any free human readable and possibly non unique text naming the object."^^rdf:XMLLiteral .
<IdentifiedObject.shortName> rdf:type rdfs:Property ;
rdfs:label "shortName"@en ;
rdfs:domain <IdentifiedObject> ;
rdfs:range xsd:string ;
rdfs:comment "The attribute is used for an exchange of a human readable short name with length of the string 12 characters maximum."^^rdf:XMLLiteral .
<Junction> rdf:type rdfs:Class ;
rdfs:subClassOf <Connector> ;
rdfs:label "Junction"@en ;
rdfs:comment "A point where one or more conducting equipments are connected with zero resistance."^^rdf:XMLLiteral .
<Line> rdf:type rdfs:Class ;
rdfs:subClassOf <EquipmentContainer> ;
rdfs:label "Line"@en ;
rdfs:comment "Contains equipment beyond a substation belonging to a power transmission line. "^^rdf:XMLLiteral .
<Line.Region> rdf:type rdfs:Property ;
rdfs:label "Region"@en ;
rdfs:domain <Line> ;
rdfs:range <SubGeographicalRegion> ;
rdfs:comment "The sub-geographical region of the line."^^rdf:XMLLiteral .
<PowerSystemResource> rdf:type rdfs:Class ;
rdfs:subClassOf <IdentifiedObject> ;
rdfs:label "PowerSystemResource"@en ;
rdfs:comment "A power system resource (PSR) can be an item of equipment such as a switch, an equipment container containing many individual items of equipment such as a substation, or an organisational entity such as sub-control area. Power system resources can have measurements associated."^^rdf:XMLLiteral .
<SubGeographicalRegion> rdf:type rdfs:Class ;
rdfs:subClassOf <IdentifiedObject> ;
rdfs:label "SubGeographicalRegion"@en ;
rdfs:comment "A subset of a geographical region of a power system network model."^^rdf:XMLLiteral .
<SubGeographicalRegion.Region> rdf:type rdfs:Property ;
rdfs:label "Region"@en ;
rdfs:domain <SubGeographicalRegion> ;
rdfs:range <GeographicalRegion> ;
rdfs:comment "The geographical region which this sub-geographical region is within."^^rdf:XMLLiteral .
<SubGeographicalRegion.Lines> rdf:type rdfs:Property ;
rdfs:label "Lines"@en ;
rdfs:domain <SubGeographicalRegion> ;
rdfs:range <Line> ;
rdfs:comment "The lines within the sub-geographical region."^^rdf:XMLLiteral .
<SubGeographicalRegion.Substations> rdf:type rdfs:Property ;
rdfs:label "Substations"@en ;
rdfs:domain <SubGeographicalRegion> ;
rdfs:range <Substation> ;
rdfs:comment "The substations in this sub-geographical region."^^rdf:XMLLiteral .
<Substation> rdf:type rdfs:Class ;
rdfs:subClassOf <EquipmentContainer> ;
rdfs:label "Substation"@en ;
rdfs:comment "A collection of equipment for purposes other than generation or utilization, through which electric energy in bulk is passed for the purposes of switching or modifying its characteristics. "^^rdf:XMLLiteral .
<Substation.VoltageLevels> rdf:type rdfs:Property ;
rdfs:label "VoltageLevels"@en ;
rdfs:domain <Substation> ;
rdfs:range <VoltageLevel> ;
rdfs:comment "The voltage levels within this substation."^^rdf:XMLLiteral .
<Substation.Region> rdf:type rdfs:Property ;
rdfs:label "Region"@en ;
rdfs:domain <Substation> ;
rdfs:range <SubGeographicalRegion> ;
rdfs:comment "The SubGeographicalRegion containing the substation."^^rdf:XMLLiteral .
<Terminal> rdf:type rdfs:Class ;
rdfs:subClassOf <ACDCTerminal> ;
rdfs:label "Terminal"@en ;
rdfs:comment "An AC electrical connection point to a piece of conducting equipment. Terminals are connected at physical connection points called connectivity nodes."^^rdf:XMLLiteral .
<Terminal.ConductingEquipment> rdf:type rdfs:Property ;
rdfs:label "ConductingEquipment"@en ;
rdfs:domain <Terminal> ;
rdfs:range <ConductingEquipment> ;
rdfs:comment "The conducting equipment of the terminal. Conducting equipment have terminals that may be connected to other conducting equipment terminals via connectivity nodes or topological nodes."^^rdf:XMLLiteral .
<Terminal.ConnectivityNode> rdf:type rdfs:Property ;
rdfs:label "ConnectivityNode"@en ;
rdfs:domain <Terminal> ;
rdfs:range <ConnectivityNode> ;
rdfs:comment "The connectivity node to which this terminal connects with zero impedance."^^rdf:XMLLiteral .
<VoltageLevel> rdf:type rdfs:Class ;
rdfs:subClassOf <EquipmentContainer> ;
rdfs:label "VoltageLevel"@en ;
rdfs:comment "A collection of equipment at one common system voltage forming a switchgear. The equipment typically consists of breakers, busbars, instrumentation, control, regulation and protection devices as well as assemblies of all these."^^rdf:XMLLiteral .
<VoltageLevel.highVoltageLimit> rdf:type rdfs:Property ;
rdfs:label "highVoltageLimit"@en ;
rdfs:domain <VoltageLevel> ;
rdfs:range xsd:double ;
rdfs:comment "The bus bar's high voltage limit.\nThe limit applies to all equipment and nodes contained in a given VoltageLevel. It is not required that it is exchanged in pair with lowVoltageLimit. It is preferable to use operational VoltageLimit, which prevails, if present."^^rdf:XMLLiteral .
<VoltageLevel.lowVoltageLimit> rdf:type rdfs:Property ;
rdfs:label "lowVoltageLimit"@en ;
rdfs:domain <VoltageLevel> ;
rdfs:range xsd:double ;
rdfs:comment "The bus bar's low voltage limit.\nThe limit applies to all equipment and nodes contained in a given VoltageLevel. It is not required that it is exchanged in pair with highVoltageLimit. It is preferable to use operational VoltageLimit, which prevails, if present."^^rdf:XMLLiteral .
<VoltageLevel.BaseVoltage> rdf:type rdfs:Property ;
rdfs:label "BaseVoltage"@en ;
rdfs:domain <VoltageLevel> ;
rdfs:range <BaseVoltage> ;
rdfs:comment "The base voltage used for all equipment within the voltage level."^^rdf:XMLLiteral .
<VoltageLevel.Substation> rdf:type rdfs:Property ;
rdfs:label "Substation"@en ;
rdfs:domain <VoltageLevel> ;
rdfs:range <Substation> ;
rdfs:comment "The substation of the voltage level."^^rdf:XMLLiteral .
<VoltageLevel.Bays> rdf:type rdfs:Property ;
rdfs:label "Bays"@en ;
rdfs:domain <VoltageLevel> ;
rdfs:range <Bay> ;
rdfs:comment "The bays within this voltage level."^^rdf:XMLLiteral .