-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvto-base.owl
More file actions
2473 lines (1813 loc) · 118 KB
/
Copy pathvto-base.owl
File metadata and controls
2473 lines (1813 loc) · 118 KB
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="https://w3id.org/pmd/vto/"
xml:base="https://w3id.org/pmd/vto/"
xmlns:co="https://w3id.org/pmd/co/"
xmlns:dce="http://purl.org/dc/elements/1.1/"
xmlns:obo="http://purl.obolibrary.org/obo/"
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:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:dcterms="http://purl.org/dc/terms/">
<owl:Ontology rdf:about="https://w3id.org/pmd/vto/">
<owl:versionIRI rdf:resource="https://w3id.org/pmd/vto/3.0.0"/>
<dce:type rdf:resource="http://purl.obolibrary.org/obo/IAO_8000001"/>
<dcterms:bibliographicCitation>Hossein Beygi Nasrabadi and Jörg Waitelonis. Vickers Testing Ontology (VTO). Revision: v3.0.0. Retrieved from: https://materialdigital.github.io/vickers-testing-ontology/3.0.0</dcterms:bibliographicCitation>
<dcterms:created>2025-12-09</dcterms:created>
<dcterms:creator rdf:resource="https://orcid.org/0000-0001-7192-7143"/>
<dcterms:creator>https://orcid.org/0000-0002-3092-0532</dcterms:creator>
<dcterms:description>Vickers Test Ontology (VTO) has developed for representing the Vickers testing process, testing equipment requirements, test pieces charactristics, and related testing parameters and their measurement procedure according to DIN EN ISO 6507-1 standard.</dcterms:description>
<dcterms:license rdf:resource="https://creativecommons.org/publicdomain/zero/1.0/"/>
<dcterms:title>Vickers Test Ontology</dcterms:title>
<rdfs:comment>Reused ontologies: BFO, RO, PMDco V3.0.0-alpha4, NFDIcore V3.0.0, MWO V3.0.0</rdfs:comment>
<owl:versionInfo>3.0.0</owl:versionInfo>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/IAO_0000119 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000119"/>
<!-- http://purl.org/dc/elements/1.1/type -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/type"/>
<!-- http://purl.org/dc/terms/bibliographicCitation -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/bibliographicCitation"/>
<!-- http://purl.org/dc/terms/created -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/created"/>
<!-- http://purl.org/dc/terms/creator -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/creator"/>
<!-- http://purl.org/dc/terms/description -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/description"/>
<!-- http://purl.org/dc/terms/license -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/license"/>
<!-- http://purl.org/dc/terms/title -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/title"/>
<!-- http://www.w3.org/2004/02/skos/core#definition -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#definition"/>
<!-- https://w3id.org/pmd/co/PMD_0050117 -->
<owl:AnnotationProperty rdf:about="https://w3id.org/pmd/co/PMD_0050117"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/BFO_0000050 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000050"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000055 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000055"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000066 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000066"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000136 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000136"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000219 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000219"/>
<!-- http://purl.obolibrary.org/obo/OBI_0001927 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/OBI_0001927"/>
<!-- http://purl.obolibrary.org/obo/RO_0000056 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000056"/>
<!-- http://purl.obolibrary.org/obo/RO_0000058 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000058"/>
<!-- http://purl.obolibrary.org/obo/RO_0000059 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000059"/>
<!-- http://purl.obolibrary.org/obo/RO_0000080 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000080"/>
<!-- http://purl.obolibrary.org/obo/RO_0000081 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000081"/>
<!-- http://purl.obolibrary.org/obo/RO_0000086 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000086"/>
<!-- http://purl.obolibrary.org/obo/RO_0000087 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000087"/>
<!-- http://purl.obolibrary.org/obo/RO_0002352 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002352"/>
<!-- http://purl.obolibrary.org/obo/RO_0002353 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002353"/>
<!-- https://w3id.org/pmd/co/PMD_0025999 -->
<owl:ObjectProperty rdf:about="https://w3id.org/pmd/co/PMD_0025999"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/BFO_0000015 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000015"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000023 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000023"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000029 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000029"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000030 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000030"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000040 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000040"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000145 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000145"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000003 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000003"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000007 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000007"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000030 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000030"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000104 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000104"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000300 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000300"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000590 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000590"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000011 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000011"/>
<!-- http://purl.obolibrary.org/obo/OBI_0001931 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0001931"/>
<!-- http://purl.obolibrary.org/obo/OBI_0001933 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0001933"/>
<!-- http://purls.helmholtz-metadaten.de/mwo/MWO_0001099 -->
<owl:Class rdf:about="http://purls.helmholtz-metadaten.de/mwo/MWO_0001099"/>
<!-- https://nfdi.fiz-karlsruhe.de/ontology/NFDI_0000015 -->
<owl:Class rdf:about="https://nfdi.fiz-karlsruhe.de/ontology/NFDI_0000015"/>
<!-- https://w3id.org/pmd/co/PMD_0000000 -->
<owl:Class rdf:about="https://w3id.org/pmd/co/PMD_0000000"/>
<!-- https://w3id.org/pmd/co/PMD_0000551 -->
<owl:Class rdf:about="https://w3id.org/pmd/co/PMD_0000551"/>
<!-- https://w3id.org/pmd/co/PMD_0000583 -->
<owl:Class rdf:about="https://w3id.org/pmd/co/PMD_0000583"/>
<!-- https://w3id.org/pmd/co/PMD_0000602 -->
<owl:Class rdf:about="https://w3id.org/pmd/co/PMD_0000602"/>
<!-- https://w3id.org/pmd/co/PMD_0000603 -->
<owl:Class rdf:about="https://w3id.org/pmd/co/PMD_0000603"/>
<!-- https://w3id.org/pmd/co/PMD_0000774 -->
<owl:Class rdf:about="https://w3id.org/pmd/co/PMD_0000774"/>
<!-- https://w3id.org/pmd/co/PMD_0000776 -->
<owl:Class rdf:about="https://w3id.org/pmd/co/PMD_0000776"/>
<!-- https://w3id.org/pmd/co/PMD_0000789 -->
<owl:Class rdf:about="https://w3id.org/pmd/co/PMD_0000789"/>
<!-- https://w3id.org/pmd/co/PMD_0000967 -->
<owl:Class rdf:about="https://w3id.org/pmd/co/PMD_0000967"/>
<!-- https://w3id.org/pmd/co/PMD_0000975 -->
<owl:Class rdf:about="https://w3id.org/pmd/co/PMD_0000975"/>
<!-- https://w3id.org/pmd/co/PMD_0020004 -->
<owl:Class rdf:about="https://w3id.org/pmd/co/PMD_0020004"/>
<!-- https://w3id.org/pmd/co/PMD_0020132 -->
<owl:Class rdf:about="https://w3id.org/pmd/co/PMD_0020132"/>
<!-- https://w3id.org/pmd/co/PMD_0020200 -->
<owl:Class rdf:about="https://w3id.org/pmd/co/PMD_0020200"/>
<!-- https://w3id.org/pmd/co/PMD_0025002 -->
<owl:Class rdf:about="https://w3id.org/pmd/co/PMD_0025002"/>
<!-- https://w3id.org/pmd/co/PMD_0040001 -->
<owl:Class rdf:about="https://w3id.org/pmd/co/PMD_0040001"/>
<!-- https://w3id.org/pmd/vto/VTO_0000001 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000001">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/co/PMD_0000789"/>
<obo:IAO_0000119>https://www.iso.org/obp/ui#iso:std:iso:14705:ed-3:v1:en:term:3.1</obo:IAO_0000119>
<rdfs:label xml:lang="en">vickers hardness</rdfs:label>
<skos:definition>value obtained by dividing the applied force by the surface area of the indentation computed from the mean of the measured diagonals of the indentations, assuming that the indentation is an imprint of the undeformed indenter</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000002 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000002">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/vto/VTO_0000001"/>
<obo:IAO_0000119>https://www.iso.org/obp/ui#iso:std:iso:14705:ed-3:v1:en:term:3.1</obo:IAO_0000119>
<rdfs:label xml:lang="en">Vickers HV 5 ISO 6507</rdfs:label>
<skos:definition>Vickers hardness test when test force is more than 49.03 N</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000003 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000003">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0000774"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000087"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/pmd/vto/VTO_0000011"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/co/PMD_0000774"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000087"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/pmd/vto/VTO_0000011"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">Vickers hardness testing machine</rdfs:label>
<skos:definition>An instrument used to measure the hardness of materials by pressing a diamond-shaped indenter into the surface and evaluating the resulting indentation.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000004 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000004">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/co/PMD_0020132"/>
<rdfs:label xml:lang="en">diagonal</rdfs:label>
<skos:definition>A straight line connecting two non-adjacent corners or vertices of a polygon.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000005 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000005">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000011"/>
<rdfs:label xml:lang="en">verification process</rdfs:label>
<skos:definition>A process of evaluating whether a system, component, or result meets specified requirements or standards.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000006 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000006">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/co/PMD_0040001"/>
<obo:IAO_0000119>https://www.beuth.de/de/norm/din-en-iso-6506-1/204131134</obo:IAO_0000119>
<rdfs:label xml:lang="en">inter indentations distance</rdfs:label>
<skos:definition>The distance between the centres of two adjacent indentations</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000007 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000007">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/co/PMD_0040001"/>
<obo:IAO_0000119>https://www.beuth.de/de/norm/din-en-iso-6506-1/204131134</obo:IAO_0000119>
<rdfs:label xml:lang="en">indentation to edge distance</rdfs:label>
<skos:definition>The distance from the edge of the test piece to the centre of each indentation</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000008 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000008">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000029"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000086"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/pmd/vto/VTO_0001001"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000029"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000086"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/pmd/vto/VTO_0001001"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">indentation</rdfs:label>
<skos:definition>A localized impression or mark on a material’s surface created during a hardness test or mechanical interaction.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000009 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000009">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0000602"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/pmd/co/PMD_0000774"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000087"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/pmd/vto/VTO_0000010"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/co/PMD_0000602"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/pmd/co/PMD_0000774"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000087"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/pmd/vto/VTO_0000010"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000119>https://www.iso.org/obp/ui#iso:std:iso:23718:ed-1:v1:en:term:1.4.12</obo:IAO_0000119>
<rdfs:label xml:lang="en">indenter</rdfs:label>
<skos:definition>body with a hard tip, typically of diamond, hardmetal (tungsten carbide alloy), or, in special cases, steel, of specified geometry through which the test force is applied in the course of an indentation test</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000010 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000010">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/co/PMD_0000603"/>
<rdfs:label xml:lang="en">indenter role</rdfs:label>
<skos:definition>A role played by a tool or component that creates an indentation in a material to facilitate hardness testing or surface characterization.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000011 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000011">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/co/PMD_0000603"/>
<rdfs:label xml:lang="en">hardness testing machine role</rdfs:label>
<skos:definition>A role played by a machine that performs hardness measurements to determine the resistance of materials to deformation.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000012 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000012">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0000602"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000087"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/pmd/vto/VTO_0000027"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/co/PMD_0000602"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000087"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/pmd/vto/VTO_0000027"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">optical measuring system</rdfs:label>
<skos:definition>A system that uses light-based techniques, such as lasers or cameras, to measure physical properties, dimensions, or geometries of objects.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000013 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000013">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/vto/VTO_0000012"/>
<rdfs:label xml:lang="en">vickers machine optical measuring system</rdfs:label>
<skos:definition>An optical system integrated with a Vickers hardness testing machine to accurately measure the indentation and determine material hardness.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000014 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000014">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000030"/>
<rdfs:label xml:lang="en">certified reference material</rdfs:label>
<skos:definition>A material with one or more well-characterized properties, certified by an authoritative body, used to ensure accuracy and traceability in measurements.</skos:definition>
<co:PMD_0050117>CRM</co:PMD_0050117>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000015 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000015">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/vto/VTO_0000014"/>
<obo:IAO_0000119>https://www.beuth.de/de/norm/din-en-iso-6506-1/204131134</obo:IAO_0000119>
<rdfs:label>vickers reference material</rdfs:label>
<skos:definition>The vickers certified reference material is equivalent to the hardness reference block, i.e. a piece of material with a certified value and associated uncertainty.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000016 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000016">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/co/PMD_0000776"/>
<obo:IAO_0000119>https://www.iso.org/obp/ui#iso:std:iso:6507:-1:dis:ed-5:v1:en</obo:IAO_0000119>
<rdfs:label xml:lang="en">Vickers hardness testing process</rdfs:label>
<skos:definition>A hardness testing process where hardness value of a material measured normally using a diamond indenter. A diamond indenter, in the form of a right pyramid with a square base and with a specified angle between opposite faces at the vertex, is forced into the surface of a test piece followed by measurement of the diagonal length of the indentation left in the surface after removal of the test force.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000017 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000017">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000145"/>
<rdfs:label xml:lang="en">uncertainty</rdfs:label>
<skos:definition>A quantitative indication of the doubt about a measurement result, expressing the range within which the true value is expected to lie.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000018 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000018">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000011"/>
<rdfs:label xml:lang="en">measuring process</rdfs:label>
<skos:definition>A planned process of determining the value of a physical quantity by comparing it with a defined unit or standard.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000019 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000019">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/vto/VTO_0000018"/>
<rdfs:label xml:lang="en">temperature measuring process</rdfs:label>
<skos:definition>A planned process of determining the thermal state of a system or material by comparing it against a defined temperature scale using appropriate instruments.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000020 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000020">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000011"/>
<rdfs:label xml:lang="en">expriment designing process</rdfs:label>
<skos:definition>A planned process of planning and structuring experimental methods, conditions, and variables to reliably test hypotheses or obtain data.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000022 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000022">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/co/PMD_0000583"/>
<rdfs:label xml:lang="en">calculating process</rdfs:label>
<skos:definition>A process in which numerical or symbolic operations are performed to derive a result from given data or parameters.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000023 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000023">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000015"/>
<rdfs:label xml:lang="en">reporting process</rdfs:label>
<skos:definition>A process of collecting, organizing, and presenting information or results in a structured form for communication or documentation.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000025 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000025">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000145"/>
<rdfs:label xml:lang="en">angle</rdfs:label>
<skos:definition>A property that represents the measure of rotation or inclination between two intersecting lines or planes, independent of the size of the object.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000026 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000026">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000023"/>
<rdfs:label xml:lang="en">certified reference material role</rdfs:label>
<skos:definition>A role played by a material that provides certified property values to support calibration, validation, or quality assurance activities.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000027 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000027">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/co/PMD_0000603"/>
<rdfs:label xml:lang="en">optical measuring system role</rdfs:label>
<skos:definition>A role played by a system that uses optical techniques to measure, observe, or evaluate physical properties or geometries of a material or object.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000030 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000030">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000300"/>
<rdfs:label xml:lang="en">equation textual entity</rdfs:label>
<skos:definition>A textual entity that represents mathematical or logical relationships using symbolic notation in text form.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000032 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000032">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0001933"/>
<rdfs:label xml:lang="en">date value specification</rdfs:label>
<skos:definition>A datum that represents a date or time interval associated with another specification.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000033 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000033">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000011"/>
<obo:IAO_0000119>https://www.britannica.com/science/sample-preparation</obo:IAO_0000119>
<rdfs:label xml:lang="en">test piece preparation process</rdfs:label>
<skos:definition>A planned processes in which a representative piece of material is extracted from a larger amount and readied for analysis. </skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000034 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000034">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/co/PMD_0020132"/>
<rdfs:label xml:lang="en">depth</rdfs:label>
<skos:definition>The distance from a reference surface or point to a specific point or feature along a perpendicular or defined direction.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000035 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000035">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/vto/VTO_0000034"/>
<obo:IAO_0000119>https://mrmsmtbs-iitk.vlabs.ac.in/indent%20depth.html#:~:text=Indent%20depth%20is%20the%20depth,the%20plastic%20and%20elastic%20deformation.</obo:IAO_0000119>
<rdfs:label xml:lang="en">indentation depth</rdfs:label>
<skos:definition>Indent depth is the depth from the surface of the sample to the indenter tip or indentation depth of the indenter.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000036 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000036">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/vto/VTO_0000017"/>
<rdfs:label xml:lang="en">vickers hardness uncertainty</rdfs:label>
<skos:definition>Vickers hardness measurement uncertainty is the expression of the statistical dispersion of the values attributed to a measured quantity.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000037 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000037">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000011"/>
<rdfs:label xml:lang="en">calibration process</rdfs:label>
<skos:definition>A process of comparing measurement values delivered by an instrument or system with known reference standards to ensure accuracy and traceability.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000038 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000038">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/vto/VTO_0000037"/>
<obo:IAO_0000119>https://www.beuth.de/de/norm/din-en-iso-6506-1/204131134</obo:IAO_0000119>
<rdfs:label xml:lang="en">vickers testing machine callibration process</rdfs:label>
<skos:definition>The process of calibration of Vickers testing machines and verification of Vickers hardness values.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000039 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000039">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/vto/VTO_0000036"/>
<obo:IAO_0000119>https://www.beuth.de/de/norm/din-en-iso-6506-1/204131134</obo:IAO_0000119>
<rdfs:label xml:lang="en">vickers hardness testing machine uncertainty</rdfs:label>
<skos:definition>Standard uncertainty of hardness testing machine when measuring CRM</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000040 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000040">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/vto/VTO_0000036"/>
<obo:IAO_0000119>https://www.beuth.de/de/norm/din-en-iso-6506-1/204131134</obo:IAO_0000119>
<rdfs:label xml:lang="en">vickers hardness measurement resolution uncertainty</rdfs:label>
<skos:definition>The uncertainty derived from maximum permissible error</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000041 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000041">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/vto/VTO_0000036"/>
<obo:IAO_0000119>https://www.beuth.de/de/norm/din-en-iso-6506-1/204131134</obo:IAO_0000119>
<rdfs:label xml:lang="en">vickers hardness bias uncertainty</rdfs:label>
<skos:definition>Standard uncertainty due to resolution of the indentation diognal measuring system</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000042 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000042">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/vto/VTO_0000001"/>
<obo:IAO_0000119>https://www.iso.org/obp/ui#iso:std:iso:14705:ed-3:v1:en:term:3.1</obo:IAO_0000119>
<rdfs:label xml:lang="en">Vickers HV 0.2 ISO 6507</rdfs:label>
<skos:definition>Low-force Vickers hardness test when ranges of test force is between 1.961 and 49.03 N</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000043 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000043">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/vto/VTO_0000001"/>
<obo:IAO_0000119>https://www.iso.org/obp/ui#iso:std:iso:14705:ed-3:v1:en:term:3.1</obo:IAO_0000119>
<rdfs:label xml:lang="en">Vickers HV 0.001 ISO 6507</rdfs:label>
<skos:definition>Vickers microhardness test when ranges of test force is between 0,009 807 and 1,961 N</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000045 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000045">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/vto/VTO_0000033"/>
<rdfs:label xml:lang="en">polishing process</rdfs:label>
<skos:definition>surface finishing process that smooths or shines a material by mechanical, chemical, or electrochemical means to improve its appearance or properties.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0000046 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0000046">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/vto/VTO_0000045"/>
<rdfs:label xml:lang="en">electropolishing process</rdfs:label>
<skos:definition>An electrochemical process that smooths and brightens a metal surface by selectively removing material through anodic dissolution.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0001001 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0001001">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://w3id.org/pmd/vto/VTO_0000004"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000080"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/pmd/vto/VTO_0000008"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/vto/VTO_0000004"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000080"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/pmd/vto/VTO_0000008"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">indentation diagonal</rdfs:label>
<skos:definition>The straight-line distance between two opposite corners of an indentation made during a hardness test.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0001002 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0001002">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/vto/VTO_0000022"/>
<rdfs:label xml:lang="en">averaging process</rdfs:label>
<skos:definition>A process in which multiple measurements or data points are combined to produce a single representative value, typically to reduce noise or variability.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0001003 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0001003">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/vto/VTO_0000022"/>
<rdfs:label xml:lang="en">Vickers hardness calculating</rdfs:label>
<skos:definition>a process in which the hardness of a material is determined by measuring the size of an indentation made by a diamond pyramid under a known load and calculating the Vickers hardness value from it.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0001004 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0001004">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/vto/VTO_0000022"/>
<rdfs:label xml:lang="en">uncertainty calculating</rdfs:label>
<skos:definition>A process in which the possible errors or variations in measurement results are quantified to estimate the reliability or confidence level of the measured value.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0001005 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0001005">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000040"/>
<rdfs:label xml:lang="en">process environment</rdfs:label>
<skos:definition>A material entity that surrounds or interacts with a process, influencing its conditions or outcomes, such as temperature, pressure, or atmosphere.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0001006 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0001006">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/vto/VTO_0001005"/>
<rdfs:label xml:lang="en">atmosphere</rdfs:label>
<skos:definition>An environment consisting of gases that surround a material or process, affecting its physical or chemical behavior.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0001007 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0001007">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/co/PMD_0000975"/>
<rdfs:label xml:lang="en">Vickers test piece role</rdfs:label>
<skos:definition>role of an object that serves as the prepared portion of a specimen specifically intended for performing a Vickers hardness test — having defined dimensions, surface conditions, and preparation suitable for indentation and measurement according to the Vickers testing procedure.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/vto/VTO_0001008 -->
<owl:Class rdf:about="https://w3id.org/pmd/vto/VTO_0001008">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000104"/>
<rdfs:label xml:lang="en">Vickers test standard</rdfs:label>
<skos:definition>a standard that defines the procedures, conditions, and requirements for performing and evaluating the Vickers hardness test.</skos:definition>
</owl:Class>