-
Notifications
You must be signed in to change notification settings - Fork 2
/
fso-0.0.1.ttl
442 lines (344 loc) · 20.6 KB
/
fso-0.0.1.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
@prefix : <https://w3id.org/fso#> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix bot: <https://w3id.org/bot#> .
@prefix dbo: <http://dbpedia.org/ontology/> .
@prefix dce: <http://purl.org/dc/elements/1.1/> .
@prefix fso: <https://w3id.org/fso#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix voaf: <http://purl.org/vocommons/voaf#> .
@prefix schema: <http://schema.org/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@base <https://w3id.org/fso#> .
<https://w3id.org/fso#> rdf:type owl:Ontology ;
owl:versionIRI <https://w3id.org/fso/0.0.1> ;
dcterms:creator "Ali Kücükavci" ,
"Mads Holten Rasmussen" ,
"Ville Kukkonen" ;
dcterms:description "Some description in english"@en ;
dcterms:issued "2020-01-01T12:00:00"^^xsd:dateTime ;
dcterms:license <https://creativecommons.org/licenses/by/1.0/> ;
dcterms:modified "2019-11-18T12:00:00"^^xsd:dateTime ;
dcterms:title "The Flow Systems Ontology (FSO)"@en ;
vann:preferredNamespacePrefix "fso" ;
vann:preferredNamespaceUri <https://w3id.org/fso#> ;
owl:priorVersion <https://w3id.org/fso/0.0.1> ;
owl:versionInfo "0.0.1" .
#################################################################
# Annotation properties
#################################################################
### http://purl.org/dc/terms/contributor
dcterms:contributor rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/creator
dcterms:creator rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/description
dcterms:description rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/issued
dcterms:issued rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/license
dcterms:license rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/modified
dcterms:modified rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/title
dcterms:title rdf:type owl:AnnotationProperty .
### http://purl.org/vocab/vann/preferredNamespacePrefix
vann:preferredNamespacePrefix rdf:type owl:AnnotationProperty .
### http://purl.org/vocab/vann/preferredNamespaceUri
vann:preferredNamespaceUri rdf:type owl:AnnotationProperty .
#################################################################
# Object Properties
#################################################################
### https://w3id.org/fso#connectedWith
fso:connectedWith rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdf:type owl:SymmetricProperty ;
owl:propertyChainAxiom ( fso:connectedWith
fso:isComponentOf
) ,
( fso:hasComponent
fso:connectedWith
) ,
( fso:hasComponent
fso:connectedWith
fso:isComponentOf
) ;
rdfs:comment "A generic \"connection\" relation between things."@en ;
rdfs:label "connected with"@en .
### https://w3id.org/fso#exchangesElectricChargeWith
fso:exchangesElectricChargeWith rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf fso:connectedWith ;
owl:propertyChainAxiom ( fso:exchangesElectricChargeWith
fso:isComponentOf
) ,
( fso:hasComponent
fso:exchangesElectricChargeWith
) ,
( fso:hasComponent
fso:exchangesElectricChargeWith
fso:isComponentOf
) ;
rdfs:comment "Relation between things that exchange electric charge, i.e. have electrical current between them."@en ;
rdfs:label "exchanges electric charge with"@en .
### https://w3id.org/fso#exchangesFluidWith
fso:exchangesFluidWith rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf fso:connectedWith ;
rdf:type owl:SymmetricProperty ;
owl:propertyChainAxiom ( fso:exchangesFluidWith
fso:isComponentOf
) ,
( fso:hasComponent
fso:exchangesFluidWith
) ,
( fso:hasComponent
fso:exchangesFluidWith
fso:isComponentOf
) ;
rdfs:comment "Relation between two things which have a fluid exchange connection"@en ;
rdfs:label "exchanges fluid with"@en ,
"udveksler fluid med"@da .
### https://w3id.org/fso#exchangesHeatWith
fso:exchangesHeatWith rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf fso:connectedWith ;
rdf:type owl:SymmetricProperty ;
owl:propertyChainAxiom ( fso:exchangesHeatWith
fso:isComponentOf
) ,
( fso:hasComponent
fso:exchangesHeatWith
) ,
( fso:hasComponent
fso:exchangesHeatWith
fso:isComponentOf
) ;
rdfs:comment "Relation between two things which have a heat exchange connection"@en ;
rdfs:label "exchanges heat with"@en ,
"udveksler varme med"@da .
### https://w3id.org/fso#feedsFluidTo
fso:feedsFluidTo rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf fso:exchangesFluidWith ;
owl:inverseOf fso:hasFluidFedBy ;
rdfs:comment "Relation from a thing feeding fluid to the thing it is feeding fluid to."@en ;
rdfs:label "feeds fluid to"@en ,
"føder"@da .
### https://w3id.org/fso#hasComponent
fso:hasComponent rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
owl:inverseOf fso:isComponentOf ;
rdf:type owl:AsymmetricProperty ;
rdfs:domain fso:System ;
rdfs:range fso:Component ;
owl:propertyChainAxiom ( fso:hasSubSystem
fso:hasComponent
) ;
rdfs:comment "Relates a system to a component it contains"@en ,
"Relates a system to a component it contains. If system A has a subsystem B, which has a component C, then system A is said to have component C as well."@en ;
rdfs:label "har komponent"@da ,
"has component"@en .
### https://w3id.org/fso#hasConsumerSystem
fso:hasConsumerSystem rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf fso:hasSubSystem ;
rdfs:domain fso:System ;
rdfs:range fso:System ;
rdfs:comment """Relation between a supersystem and a consumer system.
A consumer system consumes something supplied to it. For example, a ventilation zone can be seen as a consumer system in that it is supplied fresh air which it consumes."""@en ;
rdfs:label "has consumer system"@en .
### https://w3id.org/fso#hasFluidFedBy
fso:hasFluidFedBy rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf fso:exchangesFluidWith ;
rdfs:comment "Relation from a thing that is fed fluid to the thing feeding the fluid."@en ;
rdfs:label "has fluid fed by"@en .
### https://w3id.org/fso#hasFluidReturnedBy
fso:hasFluidReturnedBy rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf fso:hasFluidFedBy ;
owl:inverseOf fso:returnsFluidTo ;
rdfs:comment "Relation between a thing that has fluid returned to it and the thing returning the fluid."@en ;
rdfs:label "has fluid returned by"@en .
### https://w3id.org/fso#hasFluidSuppliedBy
fso:hasFluidSuppliedBy rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf fso:hasFluidFedBy ;
owl:inverseOf fso:suppliesFluidTo ;
rdfs:comment "Relation between a thing that has fluid supplied to it and the thing supplying the fluid."@en ;
rdfs:label "has fluid supplied by"@en .
### https://w3id.org/fso#hasReturnSystem
fso:hasReturnSystem rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf fso:hasSubSystem ;
rdf:type owl:AsymmetricProperty ;
rdfs:domain fso:System ;
rdfs:range fso:ReturnSystem ;
rdfs:comment "Relation between a system and its return system"@en ;
rdfs:label "har retursystem"@da ,
"has return system"@en .
### https://w3id.org/fso#hasSourceSystem
fso:hasSourceSystem rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf fso:hasSubSystem ;
rdfs:domain fso:System ;
rdfs:range fso:System ;
rdfs:comment """Relation between a supersystem and a source system.
A source system is the source of a thing (energy, mass) from some perspective. Typically, a system is not only a source by itself, but rather this is dependent on the perspective. A system can, for example, consume electricity to produce heat, being a consumer on the electrical network but a source in the heating network."""@en ;
rdfs:label "has source system"@en .
### https://w3id.org/fso#hasSubSystem
fso:hasSubSystem rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
owl:inverseOf fso:isSubSystemOf ;
rdf:type owl:AsymmetricProperty ;
rdfs:domain fso:System ;
rdfs:range fso:System ;
rdfs:comment "Relation between a system and its subsystem"@en ;
rdfs:label "har delsystem"@da ,
"has subsystem"@en .
### https://w3id.org/fso#hasSupplySystem
fso:hasSupplySystem rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf fso:hasSubSystem ;
rdf:type owl:AsymmetricProperty ;
rdfs:domain fso:System ;
rdfs:range fso:SupplySystem ;
rdfs:comment "Relation between a system and its supply system"@en ;
rdfs:label "har fremløbssystem"@da ,
"has supply system"@en .
### https://w3id.org/fso#isComponentOf
fso:isComponentOf rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdf:type owl:AsymmetricProperty ;
rdfs:domain fso:Component ;
rdfs:range fso:System ;
owl:propertyChainAxiom ( fso:isComponentOf
fso:isSubSystemOf
) .
### https://w3id.org/fso#isSubSystemOf
fso:isSubSystemOf rdf:type owl:ObjectProperty ;
rdfs:domain fso:System ;
rdfs:range fso:System .
### https://w3id.org/fso#returnsFluidTo
fso:returnsFluidTo rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf fso:feedsFluidTo ;
owl:propertyChainAxiom ( fso:hasComponent
fso:returnsFluidTo
) ,
( fso:returnsFluidTo
fso:isComponentOf
) ;
rdfs:comment "Relation implying logical return flow from a thing to another."@en ;
rdfs:label "returnerer fluid til"@da ,
"returns fluid to"@en .
### https://w3id.org/fso#suppliesFluidTo
fso:suppliesFluidTo rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf fso:feedsFluidTo ;
owl:propertyChainAxiom ( fso:hasComponent
fso:suppliesFluidTo
) ,
( fso:suppliesFluidTo
fso:isComponentOf
) ;
rdfs:comment "Relation implying logical supply flow from a thing to another."@en ;
rdfs:label "forsyner fluid til"@da ,
"supplies fluid to"@en .
### https://w3id.org/fso#transfersHeatFrom
fso:transfersHeatFrom rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf fso:exchangesHeatWith ;
owl:inverseOf fso:transfersHeatTo ;
rdfs:comment "Relation signifying heat exchange with intended or actual direction of heat transfer from the second entity to the first. For example, a cooling coil is intended to absorb the heat from air."@en ;
rdfs:label "transfers heat from"@en .
### https://w3id.org/fso#transfersHeatTo
fso:transfersHeatTo rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf fso:exchangesHeatWith ;
rdfs:comment "Relation signifying heat exchange with intended or actual direction of heat transfer from the first entity to the second. For example, a radiator is intended to transfer heat to the surroundings."@en ;
rdfs:label "transfers heat to"@en .
#################################################################
# Classes
#################################################################
### http://purl.org/vocommons/voaf#Vocabulary
voaf:Vocabulary rdf:type owl:Class .
### https://w3id.org/fso#Component
fso:Component rdf:type owl:Class ;
rdfs:comment "A component contained by a fso:System"@en ;
rdfs:label "Component"@en ,
"Komponent"@da .
### https://w3id.org/fso#DistributionSystem
fso:DistributionSystem rdf:type owl:Class ;
rdfs:subClassOf fso:System ;
rdfs:comment "A system that distributes energy and/or mass"@en ;
rdfs:label "Distribution system"@en ,
"Fordelingssystem"@da .
### https://w3id.org/fso#EnergyConversionDevice
fso:EnergyConversionDevice rdf:type owl:Class ;
rdfs:subClassOf fso:Component ;
rdfs:comment "A device that is used to convert energy from one form to another, or move it from one system to another. Potential examples include motors and heat exhangers."@en ;
rdfs:label "Energikonverteringsenhed"@da ,
"Energy conversion device"@en .
### https://w3id.org/fso#Fitting
fso:Fitting rdf:type owl:Class ;
rdfs:subClassOf fso:Component ;
rdfs:comment "A component used to connect segments to each other, or to other components. For example, a junction in a pipe system."@en ;
rdfs:label "Fitting"@da ,
"Fitting"@en .
### https://w3id.org/fso#FlowController
fso:FlowController rdf:type owl:Class ;
rdfs:subClassOf fso:Component ;
rdfs:comment "A device that has the potential to control the flow in a network. For example, valves and dampers."@en ;
rdfs:label "Flow controller"@en ,
"Flow regulator"@da .
### https://w3id.org/fso#FlowMovingDevice
fso:FlowMovingDevice rdf:type owl:Class ;
rdfs:subClassOf fso:Component ;
rdfs:comment "A device used to induce movement in a network. For example, pumps and fans."@en ;
rdfs:label "Flow bevægende enhed"@da ,
"Flow moving device"@en .
### https://w3id.org/fso#MonitoringDevice
fso:MonitoringDevice rdf:type owl:Class ;
rdfs:subClassOf fso:Component ;
rdfs:comment "A device used to monitor some property or properties of the distributed thing. For example, a fluid flow meter."@en ;
rdfs:label "Monitoring device"@en ,
"Målene enhed"@da .
### https://w3id.org/fso#ReturnSystem
fso:ReturnSystem rdf:type owl:Class ;
rdfs:subClassOf fso:DistributionSystem ;
rdfs:comment "A system that returns energy and/or mass from consumers"@en ;
rdfs:label "Return system"@en ,
"Retursystem"@da .
### https://w3id.org/fso#Segment
fso:Segment rdf:type owl:Class ;
rdfs:subClassOf fso:Component ;
rdfs:comment "A component used to enable the passage of material or energy. For example, pipes and ducts."@en ;
rdfs:label "Segment"@da ,
"Segment"@en .
### https://w3id.org/fso#StorageDevice
fso:StorageDevice rdf:type owl:Class ;
rdfs:subClassOf fso:Component ;
rdfs:comment "A device used to store mass or energy. For example, a water tank or a battery."@en ;
rdfs:label "Opbevaringsenhed"@da ,
"Storage device"@en .
### https://w3id.org/fso#SupplySystem
fso:SupplySystem rdf:type owl:Class ;
rdfs:subClassOf fso:DistributionSystem ;
rdfs:comment "A system that supplies energy and/or mass to consumers"@en ;
rdfs:label "Forsyningssystem"@da ,
"Supply system"@en .
### https://w3id.org/fso#System
fso:System rdf:type owl:Class ;
rdfs:comment "A system is a placeholder for properties that are valid for the components of the system and hence serves as an aggregation function. Common system properties include fluid properties such as the fluid type, temperature and thermal properties."@en ;
rdfs:label "System"@da ,
"System"@en .
### https://w3id.org/fso#Terminal
fso:Terminal rdf:type owl:Class ;
rdfs:subClassOf fso:Component ;
rdfs:comment "A component used to allow material flow out of a distribution system. For example, faucets and air vents."@en ;
rdfs:label "Terminal"@da ,
"Terminal"@en .
### https://w3id.org/fso#TreatmentDevice
fso:TreatmentDevice rdf:type owl:Class ;
rdfs:subClassOf fso:Component ;
rdfs:comment "A device used to change the properties of material flowing through it. For example, filters."@en ;
rdfs:label "Behandlingsenhed"@da ,
"Treatment device"@en .
#################################################################
# Individuals
#################################################################
### https://w3id.org/fso#
<https://w3id.org/fso#> rdf:type owl:NamedIndividual ,
voaf:Vocabulary .
### Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi