-
Notifications
You must be signed in to change notification settings - Fork 6
/
esmf_i40_core_whitepaper_example.ttl
722 lines (590 loc) · 38 KB
/
esmf_i40_core_whitepaper_example.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
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix qu: <http://purl.oclc.org/NET/ssnx/qu/qu#> .
@prefix core: <https://eclipse-esmf.github.io/ontologies/I4.0/Core/> .
@prefix eqm: <https://eclipse-esmf.github.io/ontologies/I4.0/Equipment/> .
@prefix param: <https://eclipse-esmf.github.io/ontologies/I4.0/Parameter/> .
@prefix phys: <https://eclipse-esmf.github.io/ontologies/I4.0/PhysicalAsset/> .
@prefix prod-seg: <https://eclipse-esmf.github.io/ontologies/I4.0/ProductSegment/> .
@prefix prod: <https://eclipse-esmf.github.io/ontologies/I4.0/Product/> .
@prefix pros-seg: <https://eclipse-esmf.github.io/ontologies/I4.0/ProcessSegment/> .
@base <https://eclipse-esmf.github.io/ontologies/I4.0/Core> .
<https://eclipse-esmf.github.io/ontologies/I4.0/Core> a owl:Ontology ;
dc:title "ESMF I4.0 Core Information Model - Core Ontology - Example"@en ;
rdfs:comment "This ontology integrates the sub-ontologies of the ESMF I4.0 Core Information Model and includes instances as an example."@en ;
rdfs:label "ESMF I4.0 Core Information Model - Core Ontology - Example"@en ;
dc:created "July 13th, 2022"@en ;
dc:modified "July 11th, 2023"@en ;
dc:creator "Piotr Janik (Intel), Denis Molin (Tera Data), Soufiane Ameziane (Tera Data)"@en ,
"https://www.linkedin.com/in/dr-felix-l%C3%B6sch-0083294b/" ,
"https://www.linkedin.com/in/dr-irlan-grangel-gonzalez/" ,
"https://www.linkedin.com/in/fabio-massari-b63892/" ,
"https://www.linkedin.com/in/marcel-keller-5591a174/" ,
"https://www.linkedin.com/in/nico-wilhelm-5b306867/" ;
dc:contributor <https://atextor.de/foaf.ttl#atextor> ;
owl:versionInfo "1.0"@en .
#################################################################
# Annotation properties
#################################################################
### http://purl.org/dc/elements/1.1/created
dc:created a owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/creator
dc:creator a owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/modified
dc:modified a owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/title
dc:title a owl:AnnotationProperty .
#################################################################
# Object Properties
#################################################################
### https://eclipse-esmf.github.io/ontologies/I4.0/Core/hasEquipment
core:hasEquipment a owl:ObjectProperty ;
rdfs:domain prod-seg:EquipmentSpecification ;
rdfs:range eqm:Equipment ;
rdfs:comment "Relationship between \"EquipmentSpecification\" and \"Equipment\""@en ;
rdfs:label "has equipment" .
### https://eclipse-esmf.github.io/ontologies/I4.0/Core/hasMaterial
core:hasMaterial a owl:ObjectProperty ;
rdfs:domain prod-seg:MaterialSpecification ;
rdfs:range prod:Material ;
rdfs:comment "Relationship between \"MaterialSpecification\" and \"Material\""@en ;
rdfs:label "has material" .
### https://eclipse-esmf.github.io/ontologies/I4.0/Core/hasParameterSpecification
core:hasParameterSpecification a owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain pros-seg:ProcessSegment ,
prod-seg:ProductSegment ;
rdfs:range param:ParameterSpecification ;
rdfs:comment "Relationship between \"ProcessSegment\" and \"ProductSegment\""@en ;
rdfs:label "has parameter specification" .
### https://eclipse-esmf.github.io/ontologies/I4.0/Core/hasParameterValue
core:hasParameterValue a owl:ObjectProperty ;
rdfs:domain prod-seg:SegmentResult ;
rdfs:range param:ParameterValue ;
rdfs:comment "Relationship between \"SegmentResult\" and \"ParameterValue\""@en ;
rdfs:label "has parameter value" .
### https://eclipse-esmf.github.io/ontologies/I4.0/Core/implementsProcessSegment
core:implementsProcessSegment a owl:ObjectProperty ;
rdfs:domain prod-seg:ProductSegment ;
rdfs:range pros-seg:ProcessSegment ;
rdfs:comment "Relationship between \"ProductSegment\" and \"ProcessSegment\""@en ;
rdfs:label "implements process segment" .
### https://eclipse-esmf.github.io/ontologies/I4.0/Core/isImplementedByAsset
core:isImplementedByAsset a owl:ObjectProperty ;
rdfs:domain eqm:WorkUnit ;
rdfs:range phys:Asset ;
rdfs:comment "Relationship between \"WorkUnit\" and \"Asset\""@en ;
rdfs:label "is implemented by asset" .
### https://eclipse-esmf.github.io/ontologies/I4.0/Core/requiresProductSegment
core:requiresProductSegment a owl:ObjectProperty ;
rdfs:domain prod:Product ;
rdfs:range prod-seg:ProductSegment ;
rdfs:comment "Relationship between \"Product\" and \"ProductSegment\""@en ;
rdfs:label "requires product segment" .
### https://eclipse-esmf.github.io/ontologies/I4.0/Equipment/belongsToLine
eqm:belongsToLine a owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain eqm:Station ;
rdfs:range eqm:Line ;
rdfs:label "belongs to line"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/Equipment/belongsToPlant
eqm:belongsToPlant a owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain eqm:WorkCenter ;
rdfs:range eqm:Plant ;
rdfs:comment "Relationship between \"WorkCenter\" and \"Plant\""@en ;
rdfs:label "belongs to plant"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/Equipment/belongsToStation
eqm:belongsToStation a owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain eqm:WorkCell ;
rdfs:range eqm:Station ;
rdfs:comment "Relationship between \"WorkCell\" and \"Station\""@en ;
rdfs:label "belongs to station"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/Equipment/belongsToWorkCenter
eqm:belongsToWorkCenter a owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain eqm:WorkUnit ;
rdfs:range eqm:WorkCenter ;
rdfs:comment "Relationship between \"WorkUnit\" and \"WorkCenter\""@en ;
rdfs:label "belongs to work center"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/Equipment/consistsOfStation
eqm:consistsOfStation a owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain eqm:Line ;
rdfs:range eqm:Station ;
rdfs:comment "Relationship between \"Line\" and \"Station\""@en ;
rdfs:label "consists of station"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/Equipment/consistsOfWorkCell
eqm:consistsOfWorkCell a owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain eqm:Station ;
rdfs:range eqm:WorkCell ;
rdfs:comment "Relationship between \"Station\" and \"WorkCell\""@en ;
rdfs:label "consists of work cell"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/Equipment/consistsOfWorkCenter
eqm:consistsOfWorkCenter a owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain eqm:Plant ;
rdfs:range eqm:WorkCenter ;
rdfs:comment "Relationship between \"Plant\" and \"WorkCenter\""@en ;
rdfs:label "consists of work center"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/Equipment/consistsOfWorkUnit
eqm:consistsOfWorkUnit a owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain eqm:WorkCenter ;
rdfs:range eqm:WorkUnit ;
rdfs:comment "Relationship between \"WorkCenter\" and \"WorkUnit\""@en ;
rdfs:label "consists of work unit"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/Equipment/madeUpOfWorkUnit
eqm:madeUpOfWorkUnit a owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain eqm:WorkUnit ;
rdfs:range eqm:WorkUnit ;
rdfs:comment "Transitive Relationship between \"WorkUnit\" with itself"@en ;
rdfs:label "made up of work unit"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/Parameter/hasParameter
param:hasParameter a owl:ObjectProperty ;
rdfs:domain param:ParameterSpecification ;
rdfs:range param:Parameter ;
rdfs:comment "Relationship between \"ParameterSpecification\" and \"Parameter\""@en ;
rdfs:label "has parameter" ,
"has parameter"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/Parameter/hasUnit
param:hasUnit a owl:ObjectProperty ;
rdfs:domain param:Parameter ;
rdfs:range <http://purl.oclc.org/NET/ssnx/qu/qu#Unit> ;
rdfs:comment "Relationship between \"Parameter\" and \"Unit\""@en ;
rdfs:label "has unit" ,
"has unit"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/Parameter/isValueOf
param:isValueOf a owl:ObjectProperty ;
rdfs:domain param:ParameterValue ;
rdfs:range param:Parameter ;
rdfs:comment "Relationship between \"ParameterValue\" and \"Parameter\""@en ;
rdfs:label "is value of" ,
"is value of"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/PhysicalAsset/belongsToBuilding
phys:belongsToBuilding a owl:ObjectProperty ;
rdfs:domain phys:Level ;
rdfs:range phys:Building ;
rdfs:label "belongs to building"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/PhysicalAsset/belongsToLocation
phys:belongsToLocation a owl:ObjectProperty ;
rdfs:domain phys:Building ;
rdfs:range phys:Location ;
rdfs:label "belongs to location"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/PhysicalAsset/belongsToMachine
phys:belongsToMachine a owl:ObjectProperty ;
rdfs:domain phys:MachineComponent ;
rdfs:range phys:Machine ;
rdfs:label "belongs to machine"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/PhysicalAsset/consistsOfBuilding
phys:consistsOfBuilding a owl:ObjectProperty ;
rdfs:domain phys:Location ;
rdfs:range phys:Building ;
rdfs:label "consists of building"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/PhysicalAsset/consistsOfLevel
phys:consistsOfLevel a owl:ObjectProperty ;
rdfs:domain phys:Building ;
rdfs:range phys:Level ;
rdfs:label "consists of level"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/PhysicalAsset/consistsOfMachineComponent
phys:consistsOfMachineComponent a owl:ObjectProperty ;
rdfs:domain phys:Machine ;
rdfs:range phys:MachineComponent ;
rdfs:label "consists of machine component"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/PhysicalAsset/hasPhysicalAsset
phys:hasPhysicalAsset a owl:ObjectProperty ;
rdfs:domain phys:Building ;
rdfs:range phys:Asset ;
rdfs:label "has physical asset"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/PhysicalAsset/isComposedOfMachineComponent
phys:isComposedOfMachineComponent a owl:ObjectProperty ;
rdfs:domain phys:MachineComponent ;
rdfs:range phys:MachineComponent ;
rdfs:label "is composed of machine component"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/PhysicalAsset/isLocatedInBuilding
phys:isLocatedInBuilding a owl:ObjectProperty ;
rdfs:domain phys:Asset ;
rdfs:range phys:Building ;
rdfs:label "is located in building"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/PhysicalAsset/isUsedByMachineComponent
phys:isUsedByMachineComponent a owl:ObjectProperty ;
rdfs:domain phys:MachineTool ;
rdfs:range phys:MachineComponent ;
rdfs:label "is used by machine component"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/PhysicalAsset/usesMachineTool
phys:usesMachineTool a owl:ObjectProperty ;
rdfs:domain phys:MachineComponent ;
rdfs:range phys:MachineTool ;
rdfs:label "uses machine tool"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/ProcessSegment/belongsToProcess
pros-seg:belongsToProcess a owl:ObjectProperty ;
rdfs:domain pros-seg:ProcessSegment ;
rdfs:range pros-seg:Process ;
rdfs:label "belongs to process"@en ,
"belongs to process"^^xsd:string .
### https://eclipse-esmf.github.io/ontologies/I4.0/ProcessSegment/consistsOfProcessSegment
pros-seg:consistsOfProcessSegment a owl:ObjectProperty ;
rdfs:domain pros-seg:Process ;
rdfs:range pros-seg:ProcessSegment ;
rdfs:label "consists of process segment"@en ,
"consists of process segment"^^xsd:string .
### https://eclipse-esmf.github.io/ontologies/I4.0/Product/assembledFromMaterial
prod:assembledFromMaterial a owl:ObjectProperty ;
rdfs:domain prod:Material ;
rdfs:range prod:Material ;
rdfs:label "assembled from material" .
### https://eclipse-esmf.github.io/ontologies/I4.0/Product/assembledFromProcessedPart
prod:assembledFromProcessedPart a owl:ObjectProperty ;
rdfs:domain prod:ProcessedPart ;
rdfs:range prod:ProcessedPart ;
rdfs:label "assembled from processed part" .
### https://eclipse-esmf.github.io/ontologies/I4.0/Product/machinedFromMaterial
prod:machinedFromMaterial a owl:ObjectProperty ;
rdfs:domain prod:Product ;
rdfs:range prod:RawMaterial ;
rdfs:label "machined From Material"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/Product/relatesToMaterial
prod:relatesToMaterial a owl:ObjectProperty ;
rdfs:domain prod:ProcessedPart ;
rdfs:range prod:Material ;
rdfs:label "relates to material" .
### https://eclipse-esmf.github.io/ontologies/I4.0/ProductSegment/hasEquipmentSpecification
prod-seg:hasEquipmentSpecification a owl:ObjectProperty ;
rdfs:domain prod-seg:ProductSegment ;
rdfs:range prod-seg:EquipmentSpecification ;
rdfs:comment "Relationship between \"ProductSegment\" and \"EquipmentSpecification\""@en ;
rdfs:label "has Equipment Specification" ,
"has Equipment Specification"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/ProductSegment/hasMaterialSpecification
prod-seg:hasMaterialSpecification a owl:ObjectProperty ;
rdfs:domain prod-seg:ProductSegment ;
rdfs:range prod-seg:MaterialSpecification ;
rdfs:comment "Relationship between \"ProductSegment\" and \"MaterialSpecification\""@en ;
rdfs:label "has Material Specification" ,
"has Material Specification"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/ProductSegment/hasSegmentResult
prod-seg:hasSegmentResult a owl:ObjectProperty ;
rdfs:domain prod-seg:ProductSegment ;
rdfs:range prod-seg:SegmentResult ;
rdfs:comment "Relationship between \"ProductSegment\" and \"SegmentResult\""@en ;
rdfs:label "has Segment Result" ,
"has Segment Result"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/ProductSegment/isFollowedBy
prod-seg:isFollowedBy a owl:ObjectProperty ;
rdfs:domain prod-seg:ProductSegment ;
rdfs:range prod-seg:ProductSegment ;
rdfs:comment "Relationship between \"ProductSegment\" and \"ProductSegment\""@en ;
rdfs:label "is Followed By" ,
"is Followed By"@en .
#################################################################
# Data properties
#################################################################
### https://eclipse-esmf.github.io/ontologies/I4.0/Parameter/paramDataType
param:paramDataType a owl:DatatypeProperty ;
rdfs:domain param:Parameter ;
rdfs:comment "Defines the data type of a parameter. Valid ranges are all xsd data types"@en ;
rdfs:label "param datatype" ,
"param datatype"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/Parameter/paramMaxTolerance
param:paramMaxTolerance a owl:DatatypeProperty ;
rdfs:domain param:Parameter ;
rdfs:comment "Defines the upper tolerance limit of a parameter."@en ;
rdfs:label "parameter max tolerance" ,
"parameter max tolerance"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/Parameter/paramMinTolerance
param:paramMinTolerance a owl:DatatypeProperty ;
rdfs:domain param:Parameter ;
rdfs:comment "Defines the lower tolerance limit of a parameter."@en ;
rdfs:label "parameter min tolerance" ,
"parameter min tolerance"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/Parameter/paramValue
param:paramValue a owl:DatatypeProperty ;
rdfs:domain param:ParameterValue ;
rdfs:comment "Defines the value of a parameter."@en ;
rdfs:label "parameter value" ,
"parameter value"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/Product/Product/hasProductName
prod:hasProductName a owl:DatatypeProperty ;
rdfs:domain prod:Product ;
rdfs:range xsd:string ;
rdfs:label "has Product Name"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/Product/ProductInstance/hasRawMaterialtName
prod:hasRawMaterialName a owl:DatatypeProperty ;
rdfs:domain prod:RawMaterial ;
rdfs:range xsd:string ;
rdfs:label "has RawMaterial Name"@en .
#################################################################
# Classes
#################################################################
### http://purl.oclc.org/NET/ssnx/qu/qu#Unit
qu:Unit a owl:Class .
### https://eclipse-esmf.github.io/ontologies/I4.0/Equipment/Equipment
eqm:Equipment a owl:Class ;
rdfs:comment """Generalization for all logical elements required to organize or model your manufacturing hierarchy, sequence or flow.
Note 1: The formal UML role-based equipment model object is used to define the role-based equipment hierarchy information that is defined in IEC 62264-1.
Note 2: The model contains the information that may be used to construct the hierarchical models used in manufacturing scenarios.
Reference: IEC 62264-1, IEC 62264-2"""@en ;
rdfs:label "Equipment"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/Equipment/Line
eqm:Line a owl:Class ;
rdfs:subClassOf eqm:WorkCenter ;
rdfs:comment """Collection of one or more sequentially ordered work units that work together to perform a defined sequence of production processes to manufacture or assemble a product that can be a final or a semi-finished product.
A line is a subclass of a work center."""@en ;
rdfs:label "Line"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/Equipment/Plant
eqm:Plant a owl:Class ;
rdfs:subClassOf eqm:Equipment ;
rdfs:comment "Complex and separate organizational structure set up. It is a logical grouping of a manufacturing entity. It contains other equipment such as work centers or work units. Plants may be part of business-oriented entities such as product lines, divisions, sales segments and so on."@en ;
rdfs:label "Plant"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/Equipment/Pool
eqm:Pool a owl:Class ;
rdfs:subClassOf eqm:WorkCenter ;
rdfs:comment """Grouping of several parallel work units running the same process or sharing similar capabilities.
A pool is a subclass of a work center."""@en ;
rdfs:label "Pool"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/Equipment/Station
eqm:Station a owl:Class ;
rdfs:subClassOf eqm:WorkUnit ;
rdfs:comment """A logical grouping of equipment intended to produce a good. Stations are often are linked to a manufacturing process for a semi-finished or finished part. Subclass of a work unit. Stations belong to a line. A line can consist of 1..n stations.
One or more process segments may be linked to a station.
Note 1: Assets or parts within an Asset represent a station well. Station can be linked to assets via the “isImplementedBy” relationship"""@en ;
rdfs:label "Station"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/Equipment/WorkCell
eqm:WorkCell a owl:Class ;
rdfs:subClassOf eqm:WorkUnit ;
rdfs:comment """Logical sub groupings of stations. A station can consist of 1..n work cells. Subclass of a work unit.
Work cells are intended to implement a process segment. Usually, the mapping between process segment and work cell is a 1:1 mapping."""@en ;
rdfs:label "Work Cell"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/Equipment/WorkCenter
eqm:WorkCenter a owl:Class ;
rdfs:subClassOf eqm:Equipment ;
rdfs:comment """Grouping of one or more work units or smaller work centers that are logically or geographically linked. Line and Pool are sub-classes of work centers. A work centers can consist of 1..n work centers (e.g., a pool is part of a line).
This term does not refer to SAP work center. It is possible but not recommended to represent an asset as a work center."""@en ;
rdfs:label "Work Center"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/Equipment/WorkUnit
eqm:WorkUnit a owl:Class ;
rdfs:subClassOf eqm:Equipment ;
rdfs:comment """Logical grouping of equipment at the level below a work center. A work unit can consist of smaller work units. A work unit logically represents the location of executing a manufacturing process and can be linked to a machine or machine component which physically executes the manufacturing process.
It performs production, storage, material movement, or any other Level three or level four scheduled activity according to the manufacturing operations and control systems hierarchy.
Reference: IEC 62264-1 ID:3.1.26"""@en ;
rdfs:label "Work Unit"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/Parameter/Parameter
param:Parameter a owl:Class ;
rdfs:comment "An individually measured item or property of a process segment or product segment. Parameters belong to a Parameter Specification."@en ;
rdfs:label "Parameter" ,
"Parameter"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/Parameter/ParameterSpecification
param:ParameterSpecification a owl:Class ;
rdfs:comment "Specifies the setting parameters and/or result parameters for a process segment or product segment. A parameter specification consists of 1..n parameters."@en ;
rdfs:label "Parameter Specification" ,
"Parameter Specification"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/Parameter/ParameterValue
param:ParameterValue a owl:Class ;
rdfs:comment """Concrete value of a parameter.
Note 1: For example, the parameter value of the parameter “Temperature” might be “18.5”."""@en ;
rdfs:label "Parameter Value" ,
"Parameter Value"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/Parameter/ResultParameter
param:ResultParameter a owl:Class ;
rdfs:subClassOf param:Parameter ;
rdfs:comment "Description of the result parameters of a given process or product segment. Result parameters can also contain tolerance values. Subclass of Parameter"@en ;
rdfs:label "Result Parameter" ,
"Result Parameter"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/Parameter/SettingParameter
param:SettingParameter a owl:Class ;
rdfs:subClassOf param:Parameter ;
rdfs:comment """Description of input / setting parameters of a given process or product segment. Subclass of Parameter.
Note 1: Setting parameters can also contain tolerance values."""@en ;
rdfs:label "Setting Parameter" ,
"Setting Parameter"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/PhysicalAsset/Asset
phys:Asset a owl:Class ;
rdfs:comment """Physical asset that covers primarily machines and tools but excludes buildings.
Note 1: Short form asset used in this document refers to production asset.
Assets represent an extension point.
Note 2: You can further subclass assets (e.g. AGVs, …)
Reference: IEC 62264-1 ID:3.1.36, Industrie 4.0 – Terms, VDI status report Industrie 4.0 (April 2021)"""@en ;
rdfs:label "Asset"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/PhysicalAsset/Building
phys:Building a owl:Class ;
rdfs:comment "Independently usable, roofed structural works in a property. They represent a sheltered area to provide space for manufacturing assets, people and systems to perform value added activities."@en ;
rdfs:label "Building"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/PhysicalAsset/Level
phys:Level a owl:Class ;
rdfs:comment "Sub-structure of a building and is synonym to the word building floor."@en ;
rdfs:label "Level"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/PhysicalAsset/Location
phys:Location a owl:Class ;
rdfs:comment """Collection of open spaces and one or more buildings on defined properties (e.g., geo fenced).
A spatial region or named place.""" ;
rdfs:isDefinedBy "http://purl.org/dc/terms/Location"@en ;
rdfs:label "Location"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/PhysicalAsset/Machine
phys:Machine a owl:Class ;
rdfs:subClassOf phys:Asset ;
rdfs:comment "A specific asset (production) subclass used in manufacturing or assembly to produce tangible goods."@en ;
rdfs:label "Machine"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/PhysicalAsset/MachineComponent
phys:MachineComponent a owl:Class ;
rdfs:comment "A part of a machine which itself may be composed of sub components."@en ;
rdfs:label "Machine Component"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/PhysicalAsset/MachineTool
phys:MachineTool a owl:Class ;
rdfs:comment """A device used in a machine for manufacturing or assembly.
Note 1: For example, a drilling tool is used in a drilling machine to drill holes into the product."""@en ;
rdfs:label "Machine Tool"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/ProcessSegment/Process
pros-seg:Process a owl:Class ;
rdfs:comment """Description of a manufacturing process. A manufacturing process may
consist of 1..n process segments"""^^xsd:string ;
rdfs:label "Process"@en ,
"Process"^^xsd:string .
### https://eclipse-esmf.github.io/ontologies/I4.0/ProcessSegment/ProcessSegment
pros-seg:ProcessSegment a owl:Class ;
rdfs:comment """Smallest elements of manufacturing activities that are visible to
business processes. Multiple process segments together form a process
(manufacturing process). Also called business process segment."""@en ;
rdfs:label "Process Segment"@en ,
"Process Segment"^^xsd:string .
### https://eclipse-esmf.github.io/ontologies/I4.0/Product/Assembly
prod:Assembly a owl:Class ;
rdfs:subClassOf prod:SemiFinishedProduct ;
rdfs:comment """Description of a tangible good that is the outcome of a previous assembly process. Subclass of material. This includes especially the outcomes of other internal suppliers (e.g., plant A delivering an assembly to plant B).
Note 1: It is a perspective of the one who uses it to build a more complex material.""" ;
rdfs:label "Assembly" .
### https://eclipse-esmf.github.io/ontologies/I4.0/Product/Component
prod:Component a owl:Class ;
rdfs:subClassOf prod:SemiFinishedProduct ;
rdfs:comment """Description of a tangible good that is input to an assembly process and is typically purchased from a supplier in a “ready for use” form. Subclass of material.
Note 1: For example, electronic components, bolts and nuts, gear box for a car OEM.
Note 2: It is a perspective of the one who uses it to build a more complex material.""" ;
rdfs:label "Component" .
### https://eclipse-esmf.github.io/ontologies/I4.0/Product/Material
prod:Material a owl:Class ;
rdfs:comment """Abstraction of a tangible result of some manufacturing or assembly process. A product, semi-finished product, sub-assembly, component, or raw material.
Note 1: The term has been purposely selected to create an umbrella for a broad spectrum of possible examples, anAbstraction of a tangible result of some manufacturing or assembly process. A product, semi-finished product, sub-assembly, component, or raw material.
Note 2: Subclasses like product, semi-finished product and raw material allow for more precise and perspective specific classification of materials for the specific context.""" ;
rdfs:label "Material" .
### https://eclipse-esmf.github.io/ontologies/I4.0/Product/ProcessedPart
prod:ProcessedPart a owl:Class ;
rdfs:comment "Description of a unique example/occurrence of a specific material. As such it can be an instantiation of any of the material subclasses. A processed part refers to material it represents via the “relatesToMaterial” relationship." ;
rdfs:label "Processed Part" .
### https://eclipse-esmf.github.io/ontologies/I4.0/Product/Product
prod:Product a owl:Class ;
rdfs:subClassOf prod:Material ;
rdfs:comment """Description of a tangible good that is manufactured or assembled and considered ready for being sold to a customer afterwards. Subclass of material.
Note 1: Product is a perspective of the one who makes it ready for selling.""" ;
rdfs:label "Product" .
### https://eclipse-esmf.github.io/ontologies/I4.0/Product/ProductInstance
prod:ProductInstance a owl:Class ;
rdfs:subClassOf prod:ProcessedPart ;
rdfs:comment "Concrete and unique example/occurrence of a product (definition) which is the outcome of manufacturing or assembly. A Product Instance refers to its product (definition) via the “relatesToMaterial” relationship inherited from ProcessedPart." ;
rdfs:label "Product Instance" .
### https://eclipse-esmf.github.io/ontologies/I4.0/Product/RawMaterial
prod:RawMaterial a owl:Class ;
rdfs:subClassOf prod:Material ;
rdfs:comment """Description of a tangible substrate of a specific manufacturing process that is taken in its basic form as input for subsequent manufacturing. It shall not generally be used in the context of tangible input into assembly process. Subclass of material.
Note 1: It is a perspective on the one who uses it to manufacture other goods – for example a silicon wafer is raw material for production of semi-conductor electronic devices, where by itself it is a result of complex preparation process, hence a product from perspective of its supplier.""" ;
rdfs:label "Raw Material" .
### https://eclipse-esmf.github.io/ontologies/I4.0/Product/SemiFinishedProduct
prod:SemiFinishedProduct a owl:Class ;
rdfs:subClassOf prod:Material ;
rdfs:comment """Description of a tangible good that is not yet finished. Subclass of material.
Note 1: Usually, a semi-finished product is a sub-assembly or a component of another more complex material and is not sold to a customer by itself.""" ;
rdfs:label "Semi-Finished Product" .
### https://eclipse-esmf.github.io/ontologies/I4.0/ProductSegment/EquipmentSpecification
prod-seg:EquipmentSpecification a owl:Class ;
rdfs:comment "Specification of the required equipment (e.g., stations, work cells) that are required to execute the product segment."@en ;
rdfs:label "Equipment Specification" ,
"Equipment Specification"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/ProductSegment/MaterialSpecification
prod-seg:MaterialSpecification a owl:Class ;
rdfs:comment "Specifies the material required for executing the product segment. The material specification can refer to the input material and output material of the product segment."@en ;
rdfs:label "Material Specification" ,
"Material Specification"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/ProductSegment/ProductSegment
prod-seg:ProductSegment a owl:Class ;
rdfs:comment "Implementation of a process segment for a concrete product. Thus, a product segment implements a process segment for a concrete product or product variant. A product segment identifies personnel, equipment, and material resources required of a process segment to complete a production step for a specific product. Product specific routing information between product segments can be expressed via the isFollowedBy relationship between product segments. Reference: IEC 62264-1 ID:3.1.29."@en ;
rdfs:label "Product Segment" ,
"Product Segment"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/ProductSegment/SegmentResult
prod-seg:SegmentResult a owl:Class ;
rdfs:comment "Outcome of the execution of a product segment for a given product instance or processed part (see product model). A segment result refers to the parameter values of result parameters defined by the parameter specification (see Parameter Model for details)."@en ;
rdfs:label "Segment Result" ,
"Segment Result"@en .
#################################################################
# Individuals
#################################################################
### http://purl.oclc.org/NET/ssnx/qu/qu#Unit/1/min
<http://purl.oclc.org/NET/ssnx/qu/qu#Unit/1/min> a owl:NamedIndividual , qu:Unit .
### https://eclipse-esmf.github.io/ontologies/I4.0/Equipment/Line/Aluminium_Cast
<https://eclipse-esmf.github.io/ontologies/I4.0/Equipment/Line/Aluminium_Cast> a owl:NamedIndividual , eqm:Line .
### https://eclipse-esmf.github.io/ontologies/I4.0/Equipment/Plant/Plant_2
<https://eclipse-esmf.github.io/ontologies/I4.0/Equipment/Plant/Plant_2> a owl:NamedIndividual , eqm:Plant .
### https://eclipse-esmf.github.io/ontologies/I4.0/Equipment/Station/Housing_10
<https://eclipse-esmf.github.io/ontologies/I4.0/Equipment/Station/Housing_10> a owl:NamedIndividual , eqm:Station .
### https://eclipse-esmf.github.io/ontologies/I4.0/Equipment/WorkCell/10.1
<https://eclipse-esmf.github.io/ontologies/I4.0/Equipment/WorkCell/10.1> a owl:NamedIndividual , eqm:WorkCell .
### https://eclipse-esmf.github.io/ontologies/I4.0/Equipment/WorkCell/10.2
<https://eclipse-esmf.github.io/ontologies/I4.0/Equipment/WorkCell/10.2> a owl:NamedIndividual , eqm:WorkCell .
### https://eclipse-esmf.github.io/ontologies/I4.0/Parameter/ParameterSpecification/Hole_diameter_8mm
<https://eclipse-esmf.github.io/ontologies/I4.0/Parameter/ParameterSpecification/Hole_diameter_8mm> a owl:NamedIndividual , param:ParameterSpecification .
### https://eclipse-esmf.github.io/ontologies/I4.0/Parameter/ParameterSpecification/Holes_Length_12mm
<https://eclipse-esmf.github.io/ontologies/I4.0/Parameter/ParameterSpecification/Holes_Length_12mm> a owl:NamedIndividual , param:ParameterSpecification .
### https://eclipse-esmf.github.io/ontologies/I4.0/Parameter/ParameterSpecification/ShaftDrillParameter1
<https://eclipse-esmf.github.io/ontologies/I4.0/Parameter/ParameterSpecification/ShaftDrillParameter1> a owl:NamedIndividual , param:ParameterSpecification ;
param:hasParameter <https://eclipse-esmf.github.io/ontologies/I4.0/Parameter/SettingParameter/Rotation_Speed> .
### https://eclipse-esmf.github.io/ontologies/I4.0/Parameter/ParameterSpecification/ShaftMeasureParameter1
<https://eclipse-esmf.github.io/ontologies/I4.0/Parameter/ParameterSpecification/ShaftMeasureParameter1> a owl:NamedIndividual , param:ParameterSpecification .
### https://eclipse-esmf.github.io/ontologies/I4.0/Parameter/ParameterValue/Hole_diameter_7.95mm
<https://eclipse-esmf.github.io/ontologies/I4.0/Parameter/ParameterValue/Hole_diameter_7.95mm> a owl:NamedIndividual , param:ParameterValue .
### https://eclipse-esmf.github.io/ontologies/I4.0/Parameter/ParameterValue/Holes_length_12.05mm
<https://eclipse-esmf.github.io/ontologies/I4.0/Parameter/ParameterValue/Holes_length_12.05mm> a owl:NamedIndividual , param:ParameterValue .
### https://eclipse-esmf.github.io/ontologies/I4.0/Parameter/ParameterValue/600
<https://eclipse-esmf.github.io/ontologies/I4.0/Parameter/ParameterValue/600> a owl:NamedIndividual , param:ParameterValue ;
param:isValueOf <https://eclipse-esmf.github.io/ontologies/I4.0/Parameter/SettingParameter/Rotation_Speed> .
### https://eclipse-esmf.github.io/ontologies/I4.0/Parameter/SettingParameter/Rotation_Speed
<https://eclipse-esmf.github.io/ontologies/I4.0/Parameter/SettingParameter/Rotation_Speed> a owl:NamedIndividual , param:SettingParameter .
### https://eclipse-esmf.github.io/ontologies/I4.0/PhysicalAsset/Building/Building_101
<https://eclipse-esmf.github.io/ontologies/I4.0/PhysicalAsset/Building/Building_101> a owl:NamedIndividual , phys:Building .
### https://eclipse-esmf.github.io/ontologies/I4.0/PhysicalAsset/Level/Floor_2
<https://eclipse-esmf.github.io/ontologies/I4.0/PhysicalAsset/Level/Floor_2> a owl:NamedIndividual , phys:Level .
### https://eclipse-esmf.github.io/ontologies/I4.0/PhysicalAsset/Location/Friedrichshafen
<https://eclipse-esmf.github.io/ontologies/I4.0/PhysicalAsset/Location/Friedrichshafen> a owl:NamedIndividual , phys:Location .
### https://eclipse-esmf.github.io/ontologies/I4.0/PhysicalAsset/Machine/Heller_MC_16-1
<https://eclipse-esmf.github.io/ontologies/I4.0/PhysicalAsset/Machine/Heller_MC_16-1> a owl:NamedIndividual , phys:Machine .
### https://eclipse-esmf.github.io/ontologies/I4.0/PhysicalAsset/Machine/Heller_MC_16-2
<https://eclipse-esmf.github.io/ontologies/I4.0/PhysicalAsset/Machine/Heller_MC_16-2> a owl:NamedIndividual , phys:Machine .
### https://eclipse-esmf.github.io/ontologies/I4.0/PhysicalAsset/MachineComponent/Z-Spindle
<https://eclipse-esmf.github.io/ontologies/I4.0/PhysicalAsset/MachineComponent/Z-Spindle> a owl:NamedIndividual , phys:MachineComponent .
### https://eclipse-esmf.github.io/ontologies/I4.0/PhysicalAsset/MachineTool/HSS_Drill
<https://eclipse-esmf.github.io/ontologies/I4.0/PhysicalAsset/MachineTool/HSS_Drill> a owl:NamedIndividual , phys:MachineTool .
### https://eclipse-esmf.github.io/ontologies/I4.0/ProcessSegment/Process/Final_cut_front_side
<https://eclipse-esmf.github.io/ontologies/I4.0/ProcessSegment/Process/Final_cut_front_side> a owl:NamedIndividual , pros-seg:Process .
### https://eclipse-esmf.github.io/ontologies/I4.0/ProcessSegment/ProcessSegment/Drill_shaft_holes
<https://eclipse-esmf.github.io/ontologies/I4.0/ProcessSegment/ProcessSegment/Drill_shaft_holes> a owl:NamedIndividual , pros-seg:ProcessSegment .
### https://eclipse-esmf.github.io/ontologies/I4.0/Product/Product/M8_Insert_nut
<https://eclipse-esmf.github.io/ontologies/I4.0/Product/Product/M8_Insert_nut> a owl:NamedIndividual , prod:Product ;
prod:machinedFromMaterial <https://eclipse-esmf.github.io/ontologies/I4.0/Product/RawMaterial/0505123789> .
### https://eclipse-esmf.github.io/ontologies/I4.0/Product/Product/Machined_Housing
<https://eclipse-esmf.github.io/ontologies/I4.0/Product/Product/Machined_Housing> a owl:NamedIndividual , prod:Product ;
prod:machinedFromMaterial <https://eclipse-esmf.github.io/ontologies/I4.0/Product/RawMaterial/0505123789> .
### https://eclipse-esmf.github.io/ontologies/I4.0/Product/Product/Transmission_Housing1
<https://eclipse-esmf.github.io/ontologies/I4.0/Product/Product/Transmission_Housing1> a owl:NamedIndividual , prod:Product .
### https://eclipse-esmf.github.io/ontologies/I4.0/Product/Product/1111222333
<https://eclipse-esmf.github.io/ontologies/I4.0/Product/Product/1111222333> a owl:NamedIndividual , prod:Product ;
prod:assembledFromMaterial <https://eclipse-esmf.github.io/ontologies/I4.0/Product/Product/M8_Insert_nut> ,
<https://eclipse-esmf.github.io/ontologies/I4.0/Product/Product/Machined_Housing> ;
prod:hasProductName "Transmission Housing"^^xsd:string .
### https://eclipse-esmf.github.io/ontologies/I4.0/Product/ProductInstance/1111222333_4567
<https://eclipse-esmf.github.io/ontologies/I4.0/Product/ProductInstance/1111222333_4567> a owl:NamedIndividual , prod:ProductInstance .
### https://eclipse-esmf.github.io/ontologies/I4.0/Product/RawMaterial/0505123789
<https://eclipse-esmf.github.io/ontologies/I4.0/Product/RawMaterial/0505123789> a owl:NamedIndividual , prod:RawMaterial ;
prod:hasRawMaterialName "Raw Housing"@en .
### https://eclipse-esmf.github.io/ontologies/I4.0/ProductSegment/ProductSegment/Housing_front_side
<https://eclipse-esmf.github.io/ontologies/I4.0/ProductSegment/ProductSegment/Housing_front_side> a owl:NamedIndividual , prod-seg:ProductSegment .