-
Notifications
You must be signed in to change notification settings - Fork 1
/
KB_original.owl
1782 lines (1354 loc) · 116 KB
/
KB_original.owl
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
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<rdf:RDF xmlns="urn:webprotege:ontology:7c439de5-0e3b-4787-80e3-8d7429b1b929#"
xml:base="urn:webprotege:ontology:7c439de5-0e3b-4787-80e3-8d7429b1b929"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:webprotege="http://webprotege.stanford.edu/">
<owl:Ontology rdf:about="urn:webprotege:ontology:7c439de5-0e3b-4787-80e3-8d7429b1b929"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.org/dc/elements/1.1/description -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/description"/>
<!-- http://webprotege.stanford.edu/RCAkMXcvWVU8mUBbfA8m1BH -->
<owl:AnnotationProperty rdf:about="http://webprotege.stanford.edu/RCAkMXcvWVU8mUBbfA8m1BH">
<rdfs:label xml:lang="en">unit_of_measure</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/description"/>
</owl:AnnotationProperty>
<!-- http://webprotege.stanford.edu/RCQV99kdEzyvqs86oiS9amD -->
<owl:AnnotationProperty rdf:about="http://webprotege.stanford.edu/RCQV99kdEzyvqs86oiS9amD">
<rdfs:label xml:lang="en">human_readable_formula</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/description"/>
</owl:AnnotationProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://webprotege.stanford.edu/RDVJYii8k7nCVLN7AC5Hy0P -->
<owl:ObjectProperty rdf:about="http://webprotege.stanford.edu/RDVJYii8k7nCVLN7AC5Hy0P">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdfs:domain rdf:resource="http://webprotege.stanford.edu/RSHqvDhfo2MwB6oJI7FXOX"/>
<rdfs:range rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<dc:description xml:lang="en">This object property defines a dependency relationship between a Key Performance Indicator (KPI) and other entities such as machines or operations. It specifies the contextual elements required for calculating or interpreting a KPI. The domain of this property is KPI, and its range includes classes like Machine and Operation. A KPI may have multiple dependsOn relationships, or none, if it is independent of specific contexts.</dc:description>
<rdfs:label xml:lang="en">depends_on</rdfs:label>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Data properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://webprotege.stanford.edu/R87ctbtlhXVqtM6CFXj1Toj -->
<owl:DatatypeProperty rdf:about="http://webprotege.stanford.edu/R87ctbtlhXVqtM6CFXj1Toj">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topDataProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://webprotege.stanford.edu/RSHqvDhfo2MwB6oJI7FXOX"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
<dc:description xml:lang="en">Whether the KPIs is confidential or not</dc:description>
<rdfs:label xml:lang="en">confidential</rdfs:label>
</owl:DatatypeProperty>
<!-- http://webprotege.stanford.edu/R99shEdH0zI2zMvlgXAI4ef -->
<owl:DatatypeProperty rdf:about="http://webprotege.stanford.edu/R99shEdH0zI2zMvlgXAI4ef">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topDataProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://webprotege.stanford.edu/RSHqvDhfo2MwB6oJI7FXOX"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<dc:description xml:lang="en">Professional figure responsible for monitoring the KPI</dc:description>
<rdfs:label xml:lang="en">responsible</rdfs:label>
</owl:DatatypeProperty>
<!-- http://webprotege.stanford.edu/R9sK43sWlav85V42nRNKVA4 -->
<owl:DatatypeProperty rdf:about="http://webprotege.stanford.edu/R9sK43sWlav85V42nRNKVA4">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topDataProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://webprotege.stanford.edu/R9NOqSaVAt7AKU3wXSqEjFr"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<dc:description xml:lang="en">The physical location in which the machine is installed</dc:description>
<rdfs:label xml:lang="en">location</rdfs:label>
</owl:DatatypeProperty>
<!-- http://webprotege.stanford.edu/RCCevxxYkfcvieDwA6eT95M -->
<owl:DatatypeProperty rdf:about="http://webprotege.stanford.edu/RCCevxxYkfcvieDwA6eT95M">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topDataProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://webprotege.stanford.edu/RSHqvDhfo2MwB6oJI7FXOX"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
<dc:description xml:lang="en">Value representing the risk indicator of the KPI when it reaches values distant from its desired ones</dc:description>
<rdfs:label xml:lang="en">risk_indicator</rdfs:label>
</owl:DatatypeProperty>
<!-- http://webprotege.stanford.edu/RCQ3gGEWKQ4H0NmKL6zx1i -->
<owl:DatatypeProperty rdf:about="http://webprotege.stanford.edu/RCQ3gGEWKQ4H0NmKL6zx1i">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topDataProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<dc:description xml:lang="en">A unique identifier used to reference an entity within a database system.</dc:description>
<rdfs:label xml:lang="en">database_id</rdfs:label>
</owl:DatatypeProperty>
<!-- http://webprotege.stanford.edu/RDjGh3pOCOgdkhd7rvWYoek -->
<owl:DatatypeProperty rdf:about="http://webprotege.stanford.edu/RDjGh3pOCOgdkhd7rvWYoek">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topDataProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://webprotege.stanford.edu/RSHqvDhfo2MwB6oJI7FXOX"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<dc:description xml:lang="en">User creator of the KPI definition within the Knowledge Base</dc:description>
<rdfs:label xml:lang="en">creator</rdfs:label>
</owl:DatatypeProperty>
<!-- http://webprotege.stanford.edu/RFpsbX8Z33MIzQczsjG1Hm -->
<owl:DatatypeProperty rdf:about="http://webprotege.stanford.edu/RFpsbX8Z33MIzQczsjG1Hm">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topDataProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://webprotege.stanford.edu/RSHqvDhfo2MwB6oJI7FXOX"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<dc:description xml:lang="en">Computation formula, stored in a format parsable by the KPI Engine</dc:description>
<rdfs:label xml:lang="en">parsable_computation_formula</rdfs:label>
</owl:DatatypeProperty>
<!-- http://webprotege.stanford.edu/RYlIl1fOq7GYttn0vnwmGH -->
<owl:DatatypeProperty rdf:about="http://webprotege.stanford.edu/RYlIl1fOq7GYttn0vnwmGH">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topDataProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://webprotege.stanford.edu/R9NOqSaVAt7AKU3wXSqEjFr"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<dc:description xml:lang="en">Acceptable size of the machined material (Large-Low-Medium)</dc:description>
<rdfs:label xml:lang="en">capacity</rdfs:label>
</owl:DatatypeProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://webprotege.stanford.edu/R2Y3dgWH5vBjfaIZ1TuiHg -->
<owl:Class rdf:about="http://webprotege.stanford.edu/R2Y3dgWH5vBjfaIZ1TuiHg">
<rdfs:subClassOf rdf:resource="http://webprotege.stanford.edu/R9NOqSaVAt7AKU3wXSqEjFr"/>
<dc:description xml:lang="en">Laser welding machines employ focused laser beams to fuse materials together, typically metals or thermoplastics, at high speeds and with precise control. The process results in the formation of robust and precise welds, rendering it particularly advantageous in applications where minimal thermal distortion is desired, including those in the automotive, medical device, and high-tech industries.</dc:description>
<rdfs:label xml:lang="en">laser_welding_machine</rdfs:label>
</owl:Class>
<!-- http://webprotege.stanford.edu/R73ftNNPJFFZLgZm55KyOBV -->
<owl:Class rdf:about="http://webprotege.stanford.edu/R73ftNNPJFFZLgZm55KyOBV">
<rdfs:subClassOf rdf:resource="http://webprotege.stanford.edu/RHHOoqHofCZo0UqUtyngb0"/>
<dc:description xml:lang="en">A subclass of energy_kpi that represents key performance indicators related to energy efficiency. Instances of this class quantify the effectiveness of energy usage, typically measuring the ratio of useful output to energy input, and are used to evaluate how efficiently energy resources are utilized in systems, processes, or entities.</dc:description>
<rdfs:label xml:lang="en">energy_efficiency_kpi</rdfs:label>
</owl:Class>
<!-- http://webprotege.stanford.edu/R7hP6DJxqfOszsHvBBQEi5x -->
<owl:Class rdf:about="http://webprotege.stanford.edu/R7hP6DJxqfOszsHvBBQEi5x">
<rdfs:subClassOf rdf:resource="http://webprotege.stanford.edu/RDCe1cjC9xAUtVtFket8lgX"/>
<dc:description xml:lang="en">A subclass of financial_kpi that represents key performance indicators related to revenue generation. Instances of this class measure the income earned from business activities, such as sales of goods or services, providing insights into the financial health, growth, and market performance of an organization or process.</dc:description>
<rdfs:label xml:lang="en">revenue_kpi</rdfs:label>
</owl:Class>
<!-- http://webprotege.stanford.edu/R8A4IL1FuGKPqXU6ng0C0to -->
<owl:Class rdf:about="http://webprotege.stanford.edu/R8A4IL1FuGKPqXU6ng0C0to">
<rdfs:subClassOf rdf:resource="http://webprotege.stanford.edu/RSHqvDhfo2MwB6oJI7FXOX"/>
<dc:description xml:lang="en">Production KPIs (Key Performance Indicators) are metrics used to monitor, assess, and improve the efficiency, quality, and overall effectiveness of production processes within manufacturing or production facilities. These KPIs enable companies to track performance, identify bottlenecks, and drive productivity improvements.</dc:description>
<rdfs:label xml:lang="en">production_kpi</rdfs:label>
</owl:Class>
<!-- http://webprotege.stanford.edu/R8NZvl9Me04qTm1UirpvEhV -->
<owl:Class rdf:about="http://webprotege.stanford.edu/R8NZvl9Me04qTm1UirpvEhV">
<rdfs:subClassOf rdf:resource="http://webprotege.stanford.edu/R9NOqSaVAt7AKU3wXSqEjFr"/>
<dc:description xml:lang="en">Metal-cutting machines are employed to shape material from metal workpieces through a variety of cutting techniques, including milling, turning, drilling, and grinding. Such machinery frequently employs cutting tools crafted from hard materials, thereby ensuring precision and accuracy. These tools are used to create specific shapes, dimensions, or finishes for manufacturing parts.</dc:description>
<rdfs:label xml:lang="en">metal_cutting_machine</rdfs:label>
</owl:Class>
<!-- http://webprotege.stanford.edu/R8SVsByM1luTxb8zZzzbOfl -->
<owl:Class rdf:about="http://webprotege.stanford.edu/R8SVsByM1luTxb8zZzzbOfl">
<rdfs:subClassOf rdf:resource="http://webprotege.stanford.edu/R9NOqSaVAt7AKU3wXSqEjFr"/>
<dc:description xml:lang="en">Testing machines are employed for the assessment of the quality, durability, and performance of materials or finished products. Such apparatus can be utilised to conduct a plethora of tests, including tensile, fatigue, and pressure testing, with the objective of ensuring that products comply with the requisite industry standards and specifications. Testing machines are indispensable in industrial sectors such as manufacturing, construction and quality assurance.</dc:description>
<rdfs:label xml:lang="en">testing_machine</rdfs:label>
</owl:Class>
<!-- http://webprotege.stanford.edu/R8nZ53uSX4HVDxv430wXTYp -->
<owl:Class rdf:about="http://webprotege.stanford.edu/R8nZ53uSX4HVDxv430wXTYp">
<rdfs:subClassOf rdf:resource="http://webprotege.stanford.edu/RDCe1cjC9xAUtVtFket8lgX"/>
<dc:description xml:lang="en">A subclass of financial_kpi that represents key performance indicators related to costs. Instances of this class quantify and evaluate expenses associated with processes, projects, or operations, providing insights into cost management and financial efficiency. These metrics are critical for budgeting, forecasting, and identifying cost-saving opportunities.</dc:description>
<rdfs:label xml:lang="en">cost_kpi</rdfs:label>
</owl:Class>
<!-- http://webprotege.stanford.edu/R8rHYGDvxCGGMp2ELPe1qTe -->
<owl:Class rdf:about="http://webprotege.stanford.edu/R8rHYGDvxCGGMp2ELPe1qTe">
<rdfs:subClassOf rdf:resource="http://webprotege.stanford.edu/RDCe1cjC9xAUtVtFket8lgX"/>
<dc:description xml:lang="en">A subclass of financial_kpi that represents key performance indicators focused on profitability. Instances of this class measure the financial gains or returns relative to costs or investments, providing insights into the economic performance and sustainability of processes, projects, or organizations. These metrics are essential for assessing financial success and strategic decision-making.</dc:description>
<rdfs:label xml:lang="en">profitability_kpi</rdfs:label>
</owl:Class>
<!-- http://webprotege.stanford.edu/R93lVNrLbHXfDNaTnEeA4F3 -->
<owl:Class rdf:about="http://webprotege.stanford.edu/R93lVNrLbHXfDNaTnEeA4F3">
<rdfs:subClassOf rdf:resource="http://webprotege.stanford.edu/RS2lMylOEW7gnsTvguXXn2"/>
<dc:description xml:lang="en">Generic operations are processes that are common to every type of machine and lack specificity. Instances of this category are in fact the operations Offline, Working and Idle, which can be associated with any existing machine type.</dc:description>
<rdfs:label xml:lang="en">generic_operation</rdfs:label>
</owl:Class>
<!-- http://webprotege.stanford.edu/R9NOqSaVAt7AKU3wXSqEjFr -->
<owl:Class rdf:about="http://webprotege.stanford.edu/R9NOqSaVAt7AKU3wXSqEjFr">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<dc:description xml:lang="en">Represents physical machines used in a factory or production environment. Instances of this class refer to the actual machines or equipment employed in manufacturing processes, encompassing some of their properties.</dc:description>
<rdfs:label xml:lang="en">machine</rdfs:label>
</owl:Class>
<!-- http://webprotege.stanford.edu/RBKCCxxyjXbf0of03RqwoRG -->
<owl:Class rdf:about="http://webprotege.stanford.edu/RBKCCxxyjXbf0of03RqwoRG">
<rdfs:subClassOf rdf:resource="http://webprotege.stanford.edu/R9NOqSaVAt7AKU3wXSqEjFr"/>
<dc:description xml:lang="en">An assembly machine is an automated system designed to combine different components into finished products or sub-assemblies. Such machinery facilitates the streamlining of production processes by performing repetitive tasks, including the insertion, fastening, and joining of components, thereby enhancing consistency and reducing the necessity for manual labour. Such machinery is frequently utilised in the production of electronic devices, automotive components and consumer goods.</dc:description>
<rdfs:label xml:lang="en">assembly_machine</rdfs:label>
</owl:Class>
<!-- http://webprotege.stanford.edu/RBScLJaDijONnVgA4a4dQKT -->
<owl:Class rdf:about="http://webprotege.stanford.edu/RBScLJaDijONnVgA4a4dQKT">
<rdfs:subClassOf rdf:resource="http://webprotege.stanford.edu/R8A4IL1FuGKPqXU6ng0C0to"/>
<dc:description xml:lang="en">A subclass of production_kpi that represents key performance indicators related to the number of production cycles completed within a specific time frame. Instances of this class measure the frequency or volume of production cycles, providing insights into the throughput, and overall productivity of manufacturing or production processes. These metrics are critical for evaluating operational performance and identifying opportunities for process improvements.</dc:description>
<rdfs:label xml:lang="en">cycles_kpi</rdfs:label>
</owl:Class>
<!-- http://webprotege.stanford.edu/RBajXo0UbJtTDPl0vChmVMI -->
<owl:Class rdf:about="http://webprotege.stanford.edu/RBajXo0UbJtTDPl0vChmVMI">
<rdfs:subClassOf rdf:resource="http://webprotege.stanford.edu/R8A4IL1FuGKPqXU6ng0C0to"/>
<dc:description xml:lang="en">A subclass of production_kpi that represents key performance indicators focused on the efficiency of production processes. Instances of this class measure the efficiency and effectiveness of the production. These metrics provide insights into how effectively production resources are utilized, helping to identify areas for optimization and improve overall operational performance.</dc:description>
<rdfs:label xml:lang="en">production_efficiency_kpi</rdfs:label>
</owl:Class>
<!-- http://webprotege.stanford.edu/RC1J86KcMvr6WHE8FgSEqIS -->
<owl:Class rdf:about="http://webprotege.stanford.edu/RC1J86KcMvr6WHE8FgSEqIS">
<rdfs:subClassOf rdf:resource="http://webprotege.stanford.edu/RHHOoqHofCZo0UqUtyngb0"/>
<dc:description xml:lang="en">A subclass of energy_kpi that encompasses key performance indicators focused on sustainability in energy usage. Instances of this class measure and assess the environmental impact, resource efficiency, and long-term viability of energy-related practices, helping to evaluate alignment with sustainability goals and principles.</dc:description>
<rdfs:label xml:lang="en">sustainability_kpi</rdfs:label>
</owl:Class>
<!-- http://webprotege.stanford.edu/RC7nojV8LC5fXU4dIzB7Ybd -->
<owl:Class rdf:about="http://webprotege.stanford.edu/RC7nojV8LC5fXU4dIzB7Ybd">
<rdfs:subClassOf rdf:resource="http://webprotege.stanford.edu/R9NOqSaVAt7AKU3wXSqEjFr"/>
<dc:description xml:lang="en">Riveting machines are designed for the purpose of joining materials, typically metals, through the insertion and deformation of rivets, thereby creating secure and permanent joints. These machines apply a force to the rivets, causing them to expand and thereby hold the components together. They are commonly used in industries such as aerospace, automotive, and metalworking, where strong and stable joints are required.</dc:description>
<rdfs:label xml:lang="en">riveting_machine</rdfs:label>
</owl:Class>
<!-- http://webprotege.stanford.edu/RCXFzxi9Nt1CVhTN4h3LfNo -->
<owl:Class rdf:about="http://webprotege.stanford.edu/RCXFzxi9Nt1CVhTN4h3LfNo">
<rdfs:subClassOf rdf:resource="http://webprotege.stanford.edu/RHHOoqHofCZo0UqUtyngb0"/>
<dc:description xml:lang="en">A subclass of energy_kpi that focuses on metrics specifically related to energy consumption. Instances of this class represent quantifiable indicators used to measure and evaluate the amount of energy consumed by a system, process, or entity over a specified period.</dc:description>
<rdfs:label xml:lang="en">consumption_kpi</rdfs:label>
</owl:Class>
<!-- http://webprotege.stanford.edu/RCYovSO0jwqXW0gRz3rfSu7 -->
<owl:Class rdf:about="http://webprotege.stanford.edu/RCYovSO0jwqXW0gRz3rfSu7">
<rdfs:subClassOf rdf:resource="http://webprotege.stanford.edu/R9NOqSaVAt7AKU3wXSqEjFr"/>
<dc:description xml:lang="en">Laser cutting machines employ high-powered lasers to cut materials, typically metals, by focusing a laser beam that melts, burns, or vaporises the material along a defined path. These machines are renowned for their precision, speed and capacity to cut complex shapes, and are utilised in industries that require intricate cutting, including automotive, aerospace and electronics.</dc:description>
<rdfs:label xml:lang="en">laser_cutting_machine</rdfs:label>
</owl:Class>
<!-- http://webprotege.stanford.edu/RCdAgvbgwoVAfJkY8gwIsFz -->
<owl:Class rdf:about="http://webprotege.stanford.edu/RCdAgvbgwoVAfJkY8gwIsFz">
<rdfs:subClassOf rdf:resource="http://webprotege.stanford.edu/ReJ1fqIv585Oi0Has1a73J"/>
<dc:description xml:lang="en">A subclass of machine_usage_kpi that represents key performance indicators related to the utilization of machinery or equipment. Instances of this class measure the extent to which a machine or system is being used, providing insights into operational efficiency, resource allocation, and potential areas for optimization. These metrics are essential for assessing how effectively assets are being employed in production or operations.</dc:description>
<rdfs:label xml:lang="en">utilization_kpi</rdfs:label>
</owl:Class>
<!-- http://webprotege.stanford.edu/RDCe1cjC9xAUtVtFket8lgX -->
<owl:Class rdf:about="http://webprotege.stanford.edu/RDCe1cjC9xAUtVtFket8lgX">
<rdfs:subClassOf rdf:resource="http://webprotege.stanford.edu/RSHqvDhfo2MwB6oJI7FXOX"/>
<dc:description xml:lang="en">Financial KPIs are metrics used to evaluate an organization’s financial performance, stability, and overall economic health. These KPIs help companies track profitability, manage expenses, optimize cash flow, and assess return on investment.</dc:description>
<rdfs:label xml:lang="en">financial_kpi</rdfs:label>
</owl:Class>
<!-- http://webprotege.stanford.edu/RHHOoqHofCZo0UqUtyngb0 -->
<owl:Class rdf:about="http://webprotege.stanford.edu/RHHOoqHofCZo0UqUtyngb0">
<rdfs:subClassOf rdf:resource="http://webprotege.stanford.edu/RSHqvDhfo2MwB6oJI7FXOX"/>
<dc:description xml:lang="en">Energy KPIs are metrics used to assess and optimize an organization’s energy consumption, efficiency, and sustainability. These indicators help companies monitor their energy usage, identify areas to reduce waste, lower costs, and minimize their environmental impact.</dc:description>
<rdfs:label xml:lang="en">energy_kpi</rdfs:label>
</owl:Class>
<!-- http://webprotege.stanford.edu/RS2lMylOEW7gnsTvguXXn2 -->
<owl:Class rdf:about="http://webprotege.stanford.edu/RS2lMylOEW7gnsTvguXXn2">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<dc:description xml:lang="en">Represents the various states or activities a machine undergoes, including general states like "idle" or "offline," as well as specific operational tasks during production.</dc:description>
<rdfs:label xml:lang="en">operation</rdfs:label>
</owl:Class>
<!-- http://webprotege.stanford.edu/RSHqvDhfo2MwB6oJI7FXOX -->
<owl:Class rdf:about="http://webprotege.stanford.edu/RSHqvDhfo2MwB6oJI7FXOX">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<dc:description xml:lang="en">Represents the superclass in a taxonomy that encompasses key performance indicators (KPIs). Instances of this class are individual KPIs, which are quantifiable metrics used to evaluate the performance or success of an entity, process, or objective.</dc:description>
<rdfs:label xml:lang="en">kpi</rdfs:label>
</owl:Class>
<!-- http://webprotege.stanford.edu/ReJ1fqIv585Oi0Has1a73J -->
<owl:Class rdf:about="http://webprotege.stanford.edu/ReJ1fqIv585Oi0Has1a73J">
<rdfs:subClassOf rdf:resource="http://webprotege.stanford.edu/RSHqvDhfo2MwB6oJI7FXOX"/>
<dc:description xml:lang="en">Machine Usage KPIs are metrics used to monitor and evaluate the effectiveness, efficiency, and productivity of machinery in a production or manufacturing environment. These KPIs help organizations understand how well their machines are performing and identify areas for improvement to reduce downtime, optimize usage, and enhance overall productivity.</dc:description>
<rdfs:label xml:lang="en">machine_usage_kpi</rdfs:label>
</owl:Class>
<!-- http://webprotege.stanford.edu/RfC0vsh9ywZVQhefcJl1HQ -->
<owl:Class rdf:about="http://webprotege.stanford.edu/RfC0vsh9ywZVQhefcJl1HQ">
<rdfs:subClassOf rdf:resource="http://webprotege.stanford.edu/RS2lMylOEW7gnsTvguXXn2"/>
<dc:description xml:lang="en">Although the reference dataset does not contain references to processes or operations, this class is intended to be the main extension point for the application of the software to many and varied business realities. The operations instantiated from this class will be useful for modeling specific and characteristic processes of targeted production pipelines.</dc:description>
<rdfs:label xml:lang="en">specific_operation</rdfs:label>
</owl:Class>
<!-- http://webprotege.stanford.edu/RpyMXvwTMVl8cReeriZFjv -->
<owl:Class rdf:about="http://webprotege.stanford.edu/RpyMXvwTMVl8cReeriZFjv">
<rdfs:subClassOf rdf:resource="http://webprotege.stanford.edu/ReJ1fqIv585Oi0Has1a73J"/>
<dc:description xml:lang="en">A subclass of machine_usage_kpi that represents key performance indicators related to machine downtime. Instances of this class measure the amount of time a machine or system is non-operational or unavailable, providing insights into reliability, maintenance efficiency, and overall productivity. These metrics are essential for identifying bottlenecks and improving operational uptime.</dc:description>
<rdfs:label xml:lang="en">downtime_kpi</rdfs:label>
</owl:Class>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Individuals
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://webprotege.stanford.edu/R0MKtB1FGsxLy4i1gr1sV9 -->
<owl:NamedIndividual rdf:about="http://webprotege.stanford.edu/R0MKtB1FGsxLy4i1gr1sV9">
<rdf:type rdf:resource="http://webprotege.stanford.edu/RCXFzxi9Nt1CVhTN4h3LfNo"/>
<rdf:type>
<owl:Restriction>
<owl:onProperty rdf:resource="http://webprotege.stanford.edu/RDVJYii8k7nCVLN7AC5Hy0P"/>
<owl:someValuesFrom rdf:resource="http://webprotege.stanford.edu/R9NOqSaVAt7AKU3wXSqEjFr"/>
</owl:Restriction>
</rdf:type>
<rdf:type>
<owl:Restriction>
<owl:onProperty rdf:resource="http://webprotege.stanford.edu/RDVJYii8k7nCVLN7AC5Hy0P"/>
<owl:someValuesFrom rdf:resource="http://webprotege.stanford.edu/RS2lMylOEW7gnsTvguXXn2"/>
</owl:Restriction>
</rdf:type>
<webprotege:RCQ3gGEWKQ4H0NmKL6zx1i rdf:datatype="http://www.w3.org/2001/XMLSchema#string">consumption_sum</webprotege:RCQ3gGEWKQ4H0NmKL6zx1i>
<webprotege:RFpsbX8Z33MIzQczsjG1Hm rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A°sum°mo[ A°sum°t[ D°consumption_sum°t°m°o° ] ]</webprotege:RFpsbX8Z33MIzQczsjG1Hm>
<dc:description xml:lang="en">This KPI measure the cumulative energy consumption of all machine-operations pairs</dc:description>
<webprotege:RCAkMXcvWVU8mUBbfA8m1BH xml:lang="en">kWh</webprotege:RCAkMXcvWVU8mUBbfA8m1BH>
<webprotege:RCQV99kdEzyvqs86oiS9amD xml:lang="en">Pure KPI</webprotege:RCQV99kdEzyvqs86oiS9amD>
<rdfs:label xml:lang="en">consumption_sum</rdfs:label>
</owl:NamedIndividual>
<!-- http://webprotege.stanford.edu/R2fHIhTg2zA4LGcAEPSYiy -->
<owl:NamedIndividual rdf:about="http://webprotege.stanford.edu/R2fHIhTg2zA4LGcAEPSYiy">
<rdf:type rdf:resource="http://webprotege.stanford.edu/RBKCCxxyjXbf0of03RqwoRG"/>
<webprotege:R9sK43sWlav85V42nRNKVA4 xml:lang="en">floor_1</webprotege:R9sK43sWlav85V42nRNKVA4>
<webprotege:RCQ3gGEWKQ4H0NmKL6zx1i rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ast-pwpbba0ewprp</webprotege:RCQ3gGEWKQ4H0NmKL6zx1i>
<rdfs:label xml:lang="en">assembly_machine_1</rdfs:label>
</owl:NamedIndividual>
<!-- http://webprotege.stanford.edu/R4r84xwBOFiwnSO3LWja5X -->
<owl:NamedIndividual rdf:about="http://webprotege.stanford.edu/R4r84xwBOFiwnSO3LWja5X">
<rdf:type rdf:resource="http://webprotege.stanford.edu/R8nZ53uSX4HVDxv430wXTYp"/>
<rdf:type>
<owl:Restriction>
<owl:onProperty rdf:resource="http://webprotege.stanford.edu/RDVJYii8k7nCVLN7AC5Hy0P"/>
<owl:someValuesFrom rdf:resource="http://webprotege.stanford.edu/R9NOqSaVAt7AKU3wXSqEjFr"/>
</owl:Restriction>
</rdf:type>
<rdf:type>
<owl:Restriction>
<owl:onProperty rdf:resource="http://webprotege.stanford.edu/RDVJYii8k7nCVLN7AC5Hy0P"/>
<owl:someValuesFrom rdf:resource="http://webprotege.stanford.edu/RS2lMylOEW7gnsTvguXXn2"/>
</owl:Restriction>
</rdf:type>
<webprotege:RCQ3gGEWKQ4H0NmKL6zx1i xml:lang="en">cost_sum</webprotege:RCQ3gGEWKQ4H0NmKL6zx1i>
<webprotege:RFpsbX8Z33MIzQczsjG1Hm rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A°sum°mo[ A°sum°t[ D°cost_sum°t°m°o° ] ]</webprotege:RFpsbX8Z33MIzQczsjG1Hm>
<dc:description xml:lang="en">This KPI measures the cumulative cost of energy used in production, including electricity, gas, fuel, and other energy sources required to run machinery, heating or cooling systems, and auxiliary operations. It is a financial representation of energy efficiency and a vital metric for cost management and sustainability.</dc:description>
<webprotege:RCAkMXcvWVU8mUBbfA8m1BH xml:lang="en">€</webprotege:RCAkMXcvWVU8mUBbfA8m1BH>
<webprotege:RCQV99kdEzyvqs86oiS9amD xml:lang="en">Pure KPI</webprotege:RCQV99kdEzyvqs86oiS9amD>
<rdfs:label xml:lang="en">cost_sum</rdfs:label>
</owl:NamedIndividual>
<!-- http://webprotege.stanford.edu/R5V6RUhYgu8fk1lTd1JfbH -->
<owl:NamedIndividual rdf:about="http://webprotege.stanford.edu/R5V6RUhYgu8fk1lTd1JfbH">
<rdf:type rdf:resource="http://webprotege.stanford.edu/RCXFzxi9Nt1CVhTN4h3LfNo"/>
<rdf:type>
<owl:Restriction>
<owl:onProperty rdf:resource="http://webprotege.stanford.edu/RDVJYii8k7nCVLN7AC5Hy0P"/>
<owl:someValuesFrom rdf:resource="http://webprotege.stanford.edu/R9NOqSaVAt7AKU3wXSqEjFr"/>
</owl:Restriction>
</rdf:type>
<rdf:type>
<owl:Restriction>
<owl:onProperty rdf:resource="http://webprotege.stanford.edu/RDVJYii8k7nCVLN7AC5Hy0P"/>
<owl:someValuesFrom rdf:resource="http://webprotege.stanford.edu/RS2lMylOEW7gnsTvguXXn2"/>
</owl:Restriction>
</rdf:type>
<webprotege:RCQ3gGEWKQ4H0NmKL6zx1i rdf:datatype="http://www.w3.org/2001/XMLSchema#string">consumption_max</webprotege:RCQ3gGEWKQ4H0NmKL6zx1i>
<webprotege:RFpsbX8Z33MIzQczsjG1Hm rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A°max°mo[ A°max°t[ D°consumption_max°t°m°o° ] ]</webprotege:RFpsbX8Z33MIzQczsjG1Hm>
<dc:description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This KPI measure the maximum energy consumption of all machine-operations pairs</dc:description>
<webprotege:RCAkMXcvWVU8mUBbfA8m1BH rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kWh</webprotege:RCAkMXcvWVU8mUBbfA8m1BH>
<webprotege:RCQV99kdEzyvqs86oiS9amD rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pure KPI</webprotege:RCQV99kdEzyvqs86oiS9amD>
<rdfs:label xml:lang="en">consumption_max</rdfs:label>
</owl:NamedIndividual>
<!-- http://webprotege.stanford.edu/R70UGBnMVa9b53kP8sQgodh -->
<owl:NamedIndividual rdf:about="http://webprotege.stanford.edu/R70UGBnMVa9b53kP8sQgodh">
<rdf:type rdf:resource="http://webprotege.stanford.edu/RBajXo0UbJtTDPl0vChmVMI"/>
<rdf:type>
<owl:Restriction>
<owl:onProperty rdf:resource="http://webprotege.stanford.edu/RDVJYii8k7nCVLN7AC5Hy0P"/>
<owl:someValuesFrom rdf:resource="http://webprotege.stanford.edu/R9NOqSaVAt7AKU3wXSqEjFr"/>
</owl:Restriction>
</rdf:type>
<rdf:type>
<owl:Restriction>
<owl:onProperty rdf:resource="http://webprotege.stanford.edu/RDVJYii8k7nCVLN7AC5Hy0P"/>
<owl:someValuesFrom rdf:resource="http://webprotege.stanford.edu/RS2lMylOEW7gnsTvguXXn2"/>
</owl:Restriction>
</rdf:type>
<webprotege:RFpsbX8Z33MIzQczsjG1Hm rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A°sum°mo[ S°*[S°/[ R°bad_cycles_sum°T°m°o° ; R°cycles_sum°T°m°o° ] ; C°100°]]</webprotege:RFpsbX8Z33MIzQczsjG1Hm>
<dc:description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This KPI measures the percentage of failed outputs or processes out of the total number of attempts. It reflects the ineffectiveness and unreliability of production processes, machinery and operating practices in achieving desired results without defects, rework or waste.</dc:description>
<webprotege:RCAkMXcvWVU8mUBbfA8m1BH rdf:datatype="http://www.w3.org/2001/XMLSchema#string">%</webprotege:RCAkMXcvWVU8mUBbfA8m1BH>
<webprotege:RCQV99kdEzyvqs86oiS9amD rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sum_M_O((bad_cycles_sum(T,m,o)/cycles_sum(T,m,o))*100)</webprotege:RCQV99kdEzyvqs86oiS9amD>
<rdfs:label xml:lang="en">failure_rate</rdfs:label>
</owl:NamedIndividual>
<!-- http://webprotege.stanford.edu/R721CMEk3DZ2jbtNWsYf6Qf -->
<owl:NamedIndividual rdf:about="http://webprotege.stanford.edu/R721CMEk3DZ2jbtNWsYf6Qf">
<rdf:type rdf:resource="http://webprotege.stanford.edu/R8SVsByM1luTxb8zZzzbOfl"/>
<webprotege:R9sK43sWlav85V42nRNKVA4 xml:lang="en">floor_2</webprotege:R9sK43sWlav85V42nRNKVA4>
<webprotege:RCQ3gGEWKQ4H0NmKL6zx1i rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ast-pu7dfrxjf2ms</webprotege:RCQ3gGEWKQ4H0NmKL6zx1i>
<rdfs:label xml:lang="en">testing_machine_2</rdfs:label>
</owl:NamedIndividual>
<!-- http://webprotege.stanford.edu/R76MVPucU21vJHihuARXzH1 -->
<owl:NamedIndividual rdf:about="http://webprotege.stanford.edu/R76MVPucU21vJHihuARXzH1">
<rdf:type rdf:resource="http://webprotege.stanford.edu/R8NZvl9Me04qTm1UirpvEhV"/>
<webprotege:R9sK43sWlav85V42nRNKVA4 xml:lang="en">floor_1</webprotege:R9sK43sWlav85V42nRNKVA4>
<webprotege:RCQ3gGEWKQ4H0NmKL6zx1i rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ast-yhccl1zjue2t</webprotege:RCQ3gGEWKQ4H0NmKL6zx1i>
<webprotege:RYlIl1fOq7GYttn0vnwmGH xml:lang="en">large</webprotege:RYlIl1fOq7GYttn0vnwmGH>
<rdfs:label xml:lang="en">large_capacity_cutting_machine_1</rdfs:label>
</owl:NamedIndividual>
<!-- http://webprotege.stanford.edu/R7MgOWHfPwuBRiHOnNrT57l -->
<owl:NamedIndividual rdf:about="http://webprotege.stanford.edu/R7MgOWHfPwuBRiHOnNrT57l">
<rdf:type rdf:resource="http://webprotege.stanford.edu/RBScLJaDijONnVgA4a4dQKT"/>
<rdf:type>
<owl:Restriction>
<owl:onProperty rdf:resource="http://webprotege.stanford.edu/RDVJYii8k7nCVLN7AC5Hy0P"/>
<owl:someValuesFrom rdf:resource="http://webprotege.stanford.edu/R9NOqSaVAt7AKU3wXSqEjFr"/>
</owl:Restriction>
</rdf:type>
<rdf:type>
<owl:Restriction>
<owl:onProperty rdf:resource="http://webprotege.stanford.edu/RDVJYii8k7nCVLN7AC5Hy0P"/>
<owl:someValuesFrom rdf:resource="http://webprotege.stanford.edu/RS2lMylOEW7gnsTvguXXn2"/>
</owl:Restriction>
</rdf:type>
<webprotege:RCQ3gGEWKQ4H0NmKL6zx1i rdf:datatype="http://www.w3.org/2001/XMLSchema#string">average_cycle_time_avg</webprotege:RCQ3gGEWKQ4H0NmKL6zx1i>
<webprotege:RFpsbX8Z33MIzQczsjG1Hm rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A°mean°mo[ A°mean°t[ D°average_cycle_time_avg°t°m°o° ]]</webprotege:RFpsbX8Z33MIzQczsjG1Hm>
<dc:description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This KPI measures the average time it takes to complete a single machine process or task from start to finish</dc:description>
<webprotege:RCAkMXcvWVU8mUBbfA8m1BH rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s</webprotege:RCAkMXcvWVU8mUBbfA8m1BH>
<webprotege:RCQV99kdEzyvqs86oiS9amD rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pure KPI</webprotege:RCQV99kdEzyvqs86oiS9amD>
<rdfs:label xml:lang="en">average_cycle_time_avg</rdfs:label>
</owl:NamedIndividual>
<!-- http://webprotege.stanford.edu/R7QkoGcRJi4vFH0bgeF4gIq -->
<owl:NamedIndividual rdf:about="http://webprotege.stanford.edu/R7QkoGcRJi4vFH0bgeF4gIq">
<rdf:type rdf:resource="http://webprotege.stanford.edu/RC7nojV8LC5fXU4dIzB7Ybd"/>
<webprotege:R9sK43sWlav85V42nRNKVA4 xml:lang="en">floor_1</webprotege:R9sK43sWlav85V42nRNKVA4>
<webprotege:RCQ3gGEWKQ4H0NmKL6zx1i rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ast-o8xtn5xa8y87</webprotege:RCQ3gGEWKQ4H0NmKL6zx1i>
<rdfs:label xml:lang="en">riveting_machine</rdfs:label>
</owl:NamedIndividual>
<!-- http://webprotege.stanford.edu/R7TfPiPG80rCfz98pGtetEk -->
<owl:NamedIndividual rdf:about="http://webprotege.stanford.edu/R7TfPiPG80rCfz98pGtetEk">
<rdf:type rdf:resource="http://webprotege.stanford.edu/RCXFzxi9Nt1CVhTN4h3LfNo"/>
<rdf:type>
<owl:Restriction>
<owl:onProperty rdf:resource="http://webprotege.stanford.edu/RDVJYii8k7nCVLN7AC5Hy0P"/>
<owl:someValuesFrom rdf:resource="http://webprotege.stanford.edu/R9NOqSaVAt7AKU3wXSqEjFr"/>
</owl:Restriction>
</rdf:type>
<rdf:type>
<owl:Restriction>
<owl:onProperty rdf:resource="http://webprotege.stanford.edu/RDVJYii8k7nCVLN7AC5Hy0P"/>
<owl:someValuesFrom rdf:resource="http://webprotege.stanford.edu/RS2lMylOEW7gnsTvguXXn2"/>
</owl:Restriction>
</rdf:type>
<webprotege:RCQ3gGEWKQ4H0NmKL6zx1i rdf:datatype="http://www.w3.org/2001/XMLSchema#string">power_avg</webprotege:RCQ3gGEWKQ4H0NmKL6zx1i>
<webprotege:RFpsbX8Z33MIzQczsjG1Hm rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A°mean°mo[ A°sum°t[ D°power_avg°t°m°o° ] ]</webprotege:RFpsbX8Z33MIzQczsjG1Hm>
<dc:description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This KPI refers to the average power consumption or average power output over a defined period.</dc:description>
<webprotege:RCAkMXcvWVU8mUBbfA8m1BH rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kW</webprotege:RCAkMXcvWVU8mUBbfA8m1BH>
<webprotege:RCQV99kdEzyvqs86oiS9amD rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pure KPI</webprotege:RCQV99kdEzyvqs86oiS9amD>
<rdfs:label xml:lang="en">power_avg</rdfs:label>
</owl:NamedIndividual>
<!-- http://webprotege.stanford.edu/R7bHKGxcOZYLMDpj77yBFOH -->
<owl:NamedIndividual rdf:about="http://webprotege.stanford.edu/R7bHKGxcOZYLMDpj77yBFOH">
<rdf:type rdf:resource="http://webprotege.stanford.edu/R8SVsByM1luTxb8zZzzbOfl"/>
<webprotege:R9sK43sWlav85V42nRNKVA4 xml:lang="en">floor_3</webprotege:R9sK43sWlav85V42nRNKVA4>
<webprotege:RCQ3gGEWKQ4H0NmKL6zx1i rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ast-06kbod797nnp</webprotege:RCQ3gGEWKQ4H0NmKL6zx1i>
<rdfs:label xml:lang="en">testing_machine_3</rdfs:label>
</owl:NamedIndividual>
<!-- http://webprotege.stanford.edu/R7gXnnzOu27yHmv7pTWFF2r -->
<owl:NamedIndividual rdf:about="http://webprotege.stanford.edu/R7gXnnzOu27yHmv7pTWFF2r">
<rdf:type rdf:resource="http://webprotege.stanford.edu/RCXFzxi9Nt1CVhTN4h3LfNo"/>
<rdf:type>
<owl:Restriction>
<owl:onProperty rdf:resource="http://webprotege.stanford.edu/RDVJYii8k7nCVLN7AC5Hy0P"/>
<owl:someValuesFrom rdf:resource="http://webprotege.stanford.edu/R9NOqSaVAt7AKU3wXSqEjFr"/>
</owl:Restriction>
</rdf:type>
<webprotege:RFpsbX8Z33MIzQczsjG1Hm rdf:datatype="http://www.w3.org/2001/XMLSchema#string">S°+[ R°consumption_sum°T°M°idle° ; R°consumption_sum°T°M°working° ]</webprotege:RFpsbX8Z33MIzQczsjG1Hm>
<dc:description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This KPI quantifies the total amount of energy used within operative process, operation, or time period.</dc:description>
<webprotege:RCAkMXcvWVU8mUBbfA8m1BH rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kWh</webprotege:RCAkMXcvWVU8mUBbfA8m1BH>
<webprotege:RCQV99kdEzyvqs86oiS9amD rdf:datatype="http://www.w3.org/2001/XMLSchema#string">consumption_sum(T,M,idle) + consumption_sum(T,M,working)</webprotege:RCQV99kdEzyvqs86oiS9amD>
<rdfs:label xml:lang="en">operative_consumption</rdfs:label>
</owl:NamedIndividual>
<!-- http://webprotege.stanford.edu/R7k0ODuKZlCrbd7gDpPNYrs -->
<owl:NamedIndividual rdf:about="http://webprotege.stanford.edu/R7k0ODuKZlCrbd7gDpPNYrs">
<rdf:type rdf:resource="http://webprotege.stanford.edu/RBKCCxxyjXbf0of03RqwoRG"/>
<webprotege:R9sK43sWlav85V42nRNKVA4 xml:lang="en">floor_3</webprotege:R9sK43sWlav85V42nRNKVA4>
<webprotege:RCQ3gGEWKQ4H0NmKL6zx1i rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ast-sfio4727eub0</webprotege:RCQ3gGEWKQ4H0NmKL6zx1i>
<rdfs:label xml:lang="en">assembly_machine_3</rdfs:label>
</owl:NamedIndividual>
<!-- http://webprotege.stanford.edu/R7nZyqyELJk4eJ3Lbp2PWjR -->
<owl:NamedIndividual rdf:about="http://webprotege.stanford.edu/R7nZyqyELJk4eJ3Lbp2PWjR">
<rdf:type rdf:resource="http://webprotege.stanford.edu/RBajXo0UbJtTDPl0vChmVMI"/>
<rdf:type>
<owl:Restriction>
<owl:onProperty rdf:resource="http://webprotege.stanford.edu/RDVJYii8k7nCVLN7AC5Hy0P"/>
<owl:someValuesFrom rdf:resource="http://webprotege.stanford.edu/R9NOqSaVAt7AKU3wXSqEjFr"/>
</owl:Restriction>
</rdf:type>
<rdf:type>
<owl:Restriction>
<owl:onProperty rdf:resource="http://webprotege.stanford.edu/RDVJYii8k7nCVLN7AC5Hy0P"/>
<owl:someValuesFrom rdf:resource="http://webprotege.stanford.edu/RS2lMylOEW7gnsTvguXXn2"/>
</owl:Restriction>
</rdf:type>
<webprotege:RCQ3gGEWKQ4H0NmKL6zx1i rdf:datatype="http://www.w3.org/2001/XMLSchema#string">bad_cycles_max</webprotege:RCQ3gGEWKQ4H0NmKL6zx1i>
<webprotege:RFpsbX8Z33MIzQczsjG1Hm rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A°max°mo[ A°max°t[ D°bad_cycles_max°t°m°o° ]]</webprotege:RFpsbX8Z33MIzQczsjG1Hm>
<dc:description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This KPI represents the maximum number of cycles where the output does not meet quality standards and specifications.</dc:description>
<webprotege:RCAkMXcvWVU8mUBbfA8m1BH rdf:datatype="http://www.w3.org/2001/XMLSchema#string">#</webprotege:RCAkMXcvWVU8mUBbfA8m1BH>
<webprotege:RCQV99kdEzyvqs86oiS9amD rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pure KPI</webprotege:RCQV99kdEzyvqs86oiS9amD>
<rdfs:label xml:lang="en">bad_cycles_max</rdfs:label>
</owl:NamedIndividual>
<!-- http://webprotege.stanford.edu/R7u1FemtJqdMBwsG7daSEFV -->
<owl:NamedIndividual rdf:about="http://webprotege.stanford.edu/R7u1FemtJqdMBwsG7daSEFV">
<rdf:type rdf:resource="http://webprotege.stanford.edu/RBajXo0UbJtTDPl0vChmVMI"/>
<rdf:type>
<owl:Restriction>
<owl:onProperty rdf:resource="http://webprotege.stanford.edu/RDVJYii8k7nCVLN7AC5Hy0P"/>
<owl:someValuesFrom rdf:resource="http://webprotege.stanford.edu/R9NOqSaVAt7AKU3wXSqEjFr"/>
</owl:Restriction>
</rdf:type>
<rdf:type>
<owl:Restriction>
<owl:onProperty rdf:resource="http://webprotege.stanford.edu/RDVJYii8k7nCVLN7AC5Hy0P"/>
<owl:someValuesFrom rdf:resource="http://webprotege.stanford.edu/RS2lMylOEW7gnsTvguXXn2"/>
</owl:Restriction>
</rdf:type>
<webprotege:RFpsbX8Z33MIzQczsjG1Hm rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A°sum°mo[ S°*[S°/[ R°good_cycles_sum°T°m°o° ; R°cycles_sum°T°m°o° ] ; C°100°]]</webprotege:RFpsbX8Z33MIzQczsjG1Hm>
<dc:description xml:lang="en">This KPI measures the proportion of successful outputs or processes to total attempts. It reflects the effectiveness and reliability of production processes, machinery, and operational practices in achieving desired outcomes without defects, rework, or waste.</dc:description>
<webprotege:RCAkMXcvWVU8mUBbfA8m1BH xml:lang="en">%</webprotege:RCAkMXcvWVU8mUBbfA8m1BH>
<webprotege:RCQV99kdEzyvqs86oiS9amD xml:lang="en">sum_M_O((good_cycles_sum(T,m,o)/cycles_sum(T,m,o))*100)</webprotege:RCQV99kdEzyvqs86oiS9amD>
<rdfs:label xml:lang="en">success_rate</rdfs:label>
</owl:NamedIndividual>
<!-- http://webprotege.stanford.edu/R7y2bVsqk7LSC0ogueSlKTA -->
<owl:NamedIndividual rdf:about="http://webprotege.stanford.edu/R7y2bVsqk7LSC0ogueSlKTA">
<rdf:type rdf:resource="http://webprotege.stanford.edu/RCXFzxi9Nt1CVhTN4h3LfNo"/>
<rdf:type>
<owl:Restriction>
<owl:onProperty rdf:resource="http://webprotege.stanford.edu/RDVJYii8k7nCVLN7AC5Hy0P"/>
<owl:someValuesFrom rdf:resource="http://webprotege.stanford.edu/R9NOqSaVAt7AKU3wXSqEjFr"/>
</owl:Restriction>
</rdf:type>
<rdf:type>
<owl:Restriction>
<owl:onProperty rdf:resource="http://webprotege.stanford.edu/RDVJYii8k7nCVLN7AC5Hy0P"/>
<owl:someValuesFrom rdf:resource="http://webprotege.stanford.edu/RS2lMylOEW7gnsTvguXXn2"/>
</owl:Restriction>
</rdf:type>
<webprotege:RCQ3gGEWKQ4H0NmKL6zx1i rdf:datatype="http://www.w3.org/2001/XMLSchema#string">power_max</webprotege:RCQ3gGEWKQ4H0NmKL6zx1i>
<webprotege:RFpsbX8Z33MIzQczsjG1Hm rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A°max°mo[ A°max°t[ D°power_max°t°m°o° ] ]</webprotege:RFpsbX8Z33MIzQczsjG1Hm>
<dc:description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This KPI refers to the maximum power consumption or maximum power output over a defined period.</dc:description>
<webprotege:RCAkMXcvWVU8mUBbfA8m1BH rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kW</webprotege:RCAkMXcvWVU8mUBbfA8m1BH>
<webprotege:RCQV99kdEzyvqs86oiS9amD rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pure KPI</webprotege:RCQV99kdEzyvqs86oiS9amD>
<rdfs:label xml:lang="en">power_max</rdfs:label>
</owl:NamedIndividual>
<!-- http://webprotege.stanford.edu/R87aEXSKzWrJcU3LQyEdnpc -->
<owl:NamedIndividual rdf:about="http://webprotege.stanford.edu/R87aEXSKzWrJcU3LQyEdnpc">
<rdf:type rdf:resource="http://webprotege.stanford.edu/R8NZvl9Me04qTm1UirpvEhV"/>
<webprotege:R9sK43sWlav85V42nRNKVA4 xml:lang="en">floor_3</webprotege:R9sK43sWlav85V42nRNKVA4>
<webprotege:RCQ3gGEWKQ4H0NmKL6zx1i rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ast-anxkweo01vv2</webprotege:RCQ3gGEWKQ4H0NmKL6zx1i>
<webprotege:RYlIl1fOq7GYttn0vnwmGH xml:lang="en">medium</webprotege:RYlIl1fOq7GYttn0vnwmGH>
<rdfs:label xml:lang="en">medium_capacity_cutting_machine_3</rdfs:label>
</owl:NamedIndividual>
<!-- http://webprotege.stanford.edu/R8LqLgWbE81e95SUOYZ4D4R -->
<owl:NamedIndividual rdf:about="http://webprotege.stanford.edu/R8LqLgWbE81e95SUOYZ4D4R">
<rdf:type rdf:resource="http://webprotege.stanford.edu/RBajXo0UbJtTDPl0vChmVMI"/>
<rdf:type>
<owl:Restriction>
<owl:onProperty rdf:resource="http://webprotege.stanford.edu/RDVJYii8k7nCVLN7AC5Hy0P"/>
<owl:someValuesFrom rdf:resource="http://webprotege.stanford.edu/R9NOqSaVAt7AKU3wXSqEjFr"/>
</owl:Restriction>
</rdf:type>
<rdf:type>
<owl:Restriction>
<owl:onProperty rdf:resource="http://webprotege.stanford.edu/RDVJYii8k7nCVLN7AC5Hy0P"/>
<owl:someValuesFrom rdf:resource="http://webprotege.stanford.edu/RS2lMylOEW7gnsTvguXXn2"/>
</owl:Restriction>
</rdf:type>
<webprotege:RCQ3gGEWKQ4H0NmKL6zx1i xml:lang="en">good_cycles_sum</webprotege:RCQ3gGEWKQ4H0NmKL6zx1i>
<webprotege:RFpsbX8Z33MIzQczsjG1Hm rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A°sum°mo[ A°sum°t[ D°good_cycles_sum°t°m°o° ]]</webprotege:RFpsbX8Z33MIzQczsjG1Hm>
<dc:description xml:lang="en">This KPI represents the count of cycles where the output meets quality standards and specifications. It excludes defective, reworked, or wasted cycles, providing a clear picture of productive and value-adding operations.</dc:description>
<webprotege:RCAkMXcvWVU8mUBbfA8m1BH xml:lang="en">#</webprotege:RCAkMXcvWVU8mUBbfA8m1BH>
<webprotege:RCQV99kdEzyvqs86oiS9amD xml:lang="en">Pure KPI</webprotege:RCQV99kdEzyvqs86oiS9amD>
<rdfs:label xml:lang="en">good_cycles_sum</rdfs:label>
</owl:NamedIndividual>
<!-- http://webprotege.stanford.edu/R8PyQpTqTi4cnLownvT5eQn -->
<owl:NamedIndividual rdf:about="http://webprotege.stanford.edu/R8PyQpTqTi4cnLownvT5eQn">
<rdf:type rdf:resource="http://webprotege.stanford.edu/RDCe1cjC9xAUtVtFket8lgX"/>
<rdf:type>
<owl:Restriction>
<owl:onProperty rdf:resource="http://webprotege.stanford.edu/RDVJYii8k7nCVLN7AC5Hy0P"/>
<owl:someValuesFrom rdf:resource="http://webprotege.stanford.edu/R9NOqSaVAt7AKU3wXSqEjFr"/>
</owl:Restriction>
</rdf:type>
<rdf:type>
<owl:Restriction>
<owl:onProperty rdf:resource="http://webprotege.stanford.edu/RDVJYii8k7nCVLN7AC5Hy0P"/>
<owl:someValuesFrom rdf:resource="http://webprotege.stanford.edu/RS2lMylOEW7gnsTvguXXn2"/>
</owl:Restriction>
</rdf:type>
<webprotege:RCQ3gGEWKQ4H0NmKL6zx1i rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cost_avg</webprotege:RCQ3gGEWKQ4H0NmKL6zx1i>
<webprotege:RFpsbX8Z33MIzQczsjG1Hm rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A°mean°mo[ A°mean°t[ D°cost_avg°t°m°o° ] ]</webprotege:RFpsbX8Z33MIzQczsjG1Hm>
<dc:description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This KPI measures the average cost of energy used in production, including electricity, gas, fuel, and other energy sources required to run machinery, heating or cooling systems, and auxiliary operations. It is a financial representation of energy efficiency and a vital metric for cost management and sustainability.</dc:description>
<webprotege:RCAkMXcvWVU8mUBbfA8m1BH rdf:datatype="http://www.w3.org/2001/XMLSchema#string">€</webprotege:RCAkMXcvWVU8mUBbfA8m1BH>
<webprotege:RCQV99kdEzyvqs86oiS9amD rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pure KPI</webprotege:RCQV99kdEzyvqs86oiS9amD>
<rdfs:label xml:lang="en">cost_avg</rdfs:label>
</owl:NamedIndividual>
<!-- http://webprotege.stanford.edu/R8ScTyWAfxBTPLvxKYZkymU -->
<owl:NamedIndividual rdf:about="http://webprotege.stanford.edu/R8ScTyWAfxBTPLvxKYZkymU">
<rdf:type rdf:resource="http://webprotege.stanford.edu/RBajXo0UbJtTDPl0vChmVMI"/>
<rdf:type>
<owl:Restriction>
<owl:onProperty rdf:resource="http://webprotege.stanford.edu/RDVJYii8k7nCVLN7AC5Hy0P"/>
<owl:someValuesFrom rdf:resource="http://webprotege.stanford.edu/R9NOqSaVAt7AKU3wXSqEjFr"/>
</owl:Restriction>
</rdf:type>
<rdf:type>
<owl:Restriction>
<owl:onProperty rdf:resource="http://webprotege.stanford.edu/RDVJYii8k7nCVLN7AC5Hy0P"/>
<owl:someValuesFrom rdf:resource="http://webprotege.stanford.edu/RS2lMylOEW7gnsTvguXXn2"/>
</owl:Restriction>
</rdf:type>
<webprotege:RCQ3gGEWKQ4H0NmKL6zx1i rdf:datatype="http://www.w3.org/2001/XMLSchema#string">bad_cycles_sum</webprotege:RCQ3gGEWKQ4H0NmKL6zx1i>
<webprotege:RFpsbX8Z33MIzQczsjG1Hm rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A°sum°mo[ A°sum°t[ D°bad_cycles_sum°t°m°o° ]]</webprotege:RFpsbX8Z33MIzQczsjG1Hm>
<dc:description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This KPI represents the count of cycles where the output does not meet quality standards and specifications.</dc:description>
<webprotege:RCAkMXcvWVU8mUBbfA8m1BH rdf:datatype="http://www.w3.org/2001/XMLSchema#string">#</webprotege:RCAkMXcvWVU8mUBbfA8m1BH>
<webprotege:RCQV99kdEzyvqs86oiS9amD rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pure KPI</webprotege:RCQV99kdEzyvqs86oiS9amD>
<rdfs:label xml:lang="en">bad_cycles_sum</rdfs:label>
</owl:NamedIndividual>
<!-- http://webprotege.stanford.edu/R8VHLqifuXU4igLg4MsS0X9 -->
<owl:NamedIndividual rdf:about="http://webprotege.stanford.edu/R8VHLqifuXU4igLg4MsS0X9">
<rdf:type rdf:resource="http://webprotege.stanford.edu/R8nZ53uSX4HVDxv430wXTYp"/>
<rdf:type>
<owl:Restriction>
<owl:onProperty rdf:resource="http://webprotege.stanford.edu/RDVJYii8k7nCVLN7AC5Hy0P"/>
<owl:someValuesFrom rdf:resource="http://webprotege.stanford.edu/R9NOqSaVAt7AKU3wXSqEjFr"/>
</owl:Restriction>
</rdf:type>
<rdf:type>
<owl:Restriction>
<owl:onProperty rdf:resource="http://webprotege.stanford.edu/RDVJYii8k7nCVLN7AC5Hy0P"/>
<owl:someValuesFrom rdf:resource="http://webprotege.stanford.edu/RS2lMylOEW7gnsTvguXXn2"/>
</owl:Restriction>
</rdf:type>
<webprotege:RFpsbX8Z33MIzQczsjG1Hm rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A°sum°mo[ S°*[S°/[ R°consumption_sum°T°m°o° ; R°cycles_sum°T°m°o° ]; R°cost_sum°T°m°o°]]</webprotege:RFpsbX8Z33MIzQczsjG1Hm>
<dc:description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This KPI quantifies the total costs (direct and indirect) associated with a single production cycle.</dc:description>
<webprotege:RCAkMXcvWVU8mUBbfA8m1BH rdf:datatype="http://www.w3.org/2001/XMLSchema#string">€</webprotege:RCAkMXcvWVU8mUBbfA8m1BH>
<webprotege:RCQV99kdEzyvqs86oiS9amD rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sum_M_O((good_cycles_sum(T,m,o)/cycles_sum(T,m,o))*100)</webprotege:RCQV99kdEzyvqs86oiS9amD>
<rdfs:label xml:lang="en">cost_per_cycle</rdfs:label>
</owl:NamedIndividual>
<!-- http://webprotege.stanford.edu/R8bvZxsWmfcsqYeT0ENX2mb -->
<owl:NamedIndividual rdf:about="http://webprotege.stanford.edu/R8bvZxsWmfcsqYeT0ENX2mb">
<rdf:type rdf:resource="http://webprotege.stanford.edu/RpyMXvwTMVl8cReeriZFjv"/>
<rdf:type>
<owl:Restriction>
<owl:onProperty rdf:resource="http://webprotege.stanford.edu/RDVJYii8k7nCVLN7AC5Hy0P"/>
<owl:someValuesFrom rdf:resource="http://webprotege.stanford.edu/R9NOqSaVAt7AKU3wXSqEjFr"/>
</owl:Restriction>
</rdf:type>
<webprotege:RFpsbX8Z33MIzQczsjG1Hm rdf:datatype="http://www.w3.org/2001/XMLSchema#string">S°+[ R°time_sum°T°M°idle° ; R°time_sum°T°M°offline° ]</webprotege:RFpsbX8Z33MIzQczsjG1Hm>
<dc:description xml:lang="en">This KPI measures the total time a machine spends not performing a productive operation.</dc:description>
<webprotege:RCAkMXcvWVU8mUBbfA8m1BH xml:lang="en">s</webprotege:RCAkMXcvWVU8mUBbfA8m1BH>
<webprotege:RCQV99kdEzyvqs86oiS9amD xml:lang="en">time_sum(T,M,idle) + time_sum(T,M,offline)</webprotege:RCQV99kdEzyvqs86oiS9amD>
<rdfs:label xml:lang="en">non_operative_time</rdfs:label>
</owl:NamedIndividual>
<!-- http://webprotege.stanford.edu/R8g6Mhs42roGcsKkzjMfkVM -->
<owl:NamedIndividual rdf:about="http://webprotege.stanford.edu/R8g6Mhs42roGcsKkzjMfkVM">
<rdf:type rdf:resource="http://webprotege.stanford.edu/R8NZvl9Me04qTm1UirpvEhV"/>
<webprotege:R9sK43sWlav85V42nRNKVA4 xml:lang="en">floor_1</webprotege:R9sK43sWlav85V42nRNKVA4>
<webprotege:RCQ3gGEWKQ4H0NmKL6zx1i rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ast-ha448od5d6bd</webprotege:RCQ3gGEWKQ4H0NmKL6zx1i>
<webprotege:RYlIl1fOq7GYttn0vnwmGH xml:lang="en">medium</webprotege:RYlIl1fOq7GYttn0vnwmGH>
<rdfs:label xml:lang="en">medium_capacity_cutting_machine_1</rdfs:label>
</owl:NamedIndividual>
<!-- http://webprotege.stanford.edu/R8kWKiERU3ii0v4c1YKyZyr -->
<owl:NamedIndividual rdf:about="http://webprotege.stanford.edu/R8kWKiERU3ii0v4c1YKyZyr">
<rdf:type rdf:resource="http://webprotege.stanford.edu/RCXFzxi9Nt1CVhTN4h3LfNo"/>
<rdf:type>
<owl:Restriction>
<owl:onProperty rdf:resource="http://webprotege.stanford.edu/RDVJYii8k7nCVLN7AC5Hy0P"/>
<owl:someValuesFrom rdf:resource="http://webprotege.stanford.edu/R9NOqSaVAt7AKU3wXSqEjFr"/>
</owl:Restriction>
</rdf:type>
<rdf:type>
<owl:Restriction>
<owl:onProperty rdf:resource="http://webprotege.stanford.edu/RDVJYii8k7nCVLN7AC5Hy0P"/>
<owl:someValuesFrom rdf:resource="http://webprotege.stanford.edu/RS2lMylOEW7gnsTvguXXn2"/>
</owl:Restriction>
</rdf:type>
<webprotege:RCQ3gGEWKQ4H0NmKL6zx1i rdf:datatype="http://www.w3.org/2001/XMLSchema#string">consumption_avg</webprotege:RCQ3gGEWKQ4H0NmKL6zx1i>
<webprotege:RFpsbX8Z33MIzQczsjG1Hm rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A°mean°mo[ A°mean°t[ D°consumption_avg°t°m°o° ] ]</webprotege:RFpsbX8Z33MIzQczsjG1Hm>
<dc:description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This KPI measure the average energy consumption of all machine-operations pairs</dc:description>
<webprotege:RCAkMXcvWVU8mUBbfA8m1BH rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kWh</webprotege:RCAkMXcvWVU8mUBbfA8m1BH>
<webprotege:RCQV99kdEzyvqs86oiS9amD rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pure KPI</webprotege:RCQV99kdEzyvqs86oiS9amD>
<rdfs:label xml:lang="en">consumption_avg</rdfs:label>
</owl:NamedIndividual>
<!-- http://webprotege.stanford.edu/R8mT8WvQuTNhzof24r75lrf -->
<owl:NamedIndividual rdf:about="http://webprotege.stanford.edu/R8mT8WvQuTNhzof24r75lrf">
<rdf:type rdf:resource="http://webprotege.stanford.edu/RCdAgvbgwoVAfJkY8gwIsFz"/>
<rdf:type>
<owl:Restriction>
<owl:onProperty rdf:resource="http://webprotege.stanford.edu/RDVJYii8k7nCVLN7AC5Hy0P"/>
<owl:someValuesFrom rdf:resource="http://webprotege.stanford.edu/R9NOqSaVAt7AKU3wXSqEjFr"/>
</owl:Restriction>
</rdf:type>
<rdf:type>
<owl:Restriction>
<owl:onProperty rdf:resource="http://webprotege.stanford.edu/RDVJYii8k7nCVLN7AC5Hy0P"/>
<owl:someValuesFrom rdf:resource="http://webprotege.stanford.edu/RS2lMylOEW7gnsTvguXXn2"/>
</owl:Restriction>
</rdf:type>
<webprotege:RCQ3gGEWKQ4H0NmKL6zx1i rdf:datatype="http://www.w3.org/2001/XMLSchema#string">time_sum</webprotege:RCQ3gGEWKQ4H0NmKL6zx1i>
<webprotege:RFpsbX8Z33MIzQczsjG1Hm rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A°sum°mo[ A°sum°t[ D°time_sum°t°m°o° ]]</webprotege:RFpsbX8Z33MIzQczsjG1Hm>
<dc:description xml:lang="en">This KPI measures the cumulative time each machine used to perform the associated operation for every machine-operation pairs.</dc:description>
<webprotege:RCAkMXcvWVU8mUBbfA8m1BH rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s</webprotege:RCAkMXcvWVU8mUBbfA8m1BH>
<webprotege:RCQV99kdEzyvqs86oiS9amD xml:lang="en">Pure KPI</webprotege:RCQV99kdEzyvqs86oiS9amD>
<rdfs:label xml:lang="en">time_sum</rdfs:label>
</owl:NamedIndividual>
<!-- http://webprotege.stanford.edu/R94Az5RYeElC2aocjCcocEQ -->
<owl:NamedIndividual rdf:about="http://webprotege.stanford.edu/R94Az5RYeElC2aocjCcocEQ">
<rdf:type rdf:resource="http://webprotege.stanford.edu/RCXFzxi9Nt1CVhTN4h3LfNo"/>
<rdf:type>
<owl:Restriction>
<owl:onProperty rdf:resource="http://webprotege.stanford.edu/RDVJYii8k7nCVLN7AC5Hy0P"/>
<owl:someValuesFrom rdf:resource="http://webprotege.stanford.edu/R9NOqSaVAt7AKU3wXSqEjFr"/>
</owl:Restriction>
</rdf:type>
<rdf:type>
<owl:Restriction>
<owl:onProperty rdf:resource="http://webprotege.stanford.edu/RDVJYii8k7nCVLN7AC5Hy0P"/>
<owl:someValuesFrom rdf:resource="http://webprotege.stanford.edu/RS2lMylOEW7gnsTvguXXn2"/>
</owl:Restriction>
</rdf:type>
<webprotege:RFpsbX8Z33MIzQczsjG1Hm rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A°sum°mo[ S°/[ R°consumption_sum°T°m°o° ; R°time_sum°T°m°o° ]]</webprotege:RFpsbX8Z33MIzQczsjG1Hm>
<dc:description xml:lang="en">This KPI measure the cumulative power each machine-operation pair needs to operate.</dc:description>
<webprotege:RCAkMXcvWVU8mUBbfA8m1BH xml:lang="en">kW</webprotege:RCAkMXcvWVU8mUBbfA8m1BH>
<webprotege:RCQV99kdEzyvqs86oiS9amD xml:lang="en">sum_M_O(consumption_sum(T,m,o)/time_sum(T,m,o))</webprotege:RCQV99kdEzyvqs86oiS9amD>
<rdfs:label xml:lang="en">power_cumulative</rdfs:label>
</owl:NamedIndividual>