-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhto.owl
More file actions
1017 lines (653 loc) · 40.5 KB
/
Copy pathhto.owl
File metadata and controls
1017 lines (653 loc) · 40.5 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/hto.owl#"
xml:base="https://w3id.org/pmd/hto.owl"
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:dcterms="http://purl.org/dc/terms/">
<owl:Ontology rdf:about="https://w3id.org/pmd/hto.owl">
<owl:versionIRI rdf:resource="https://w3id.org/pmd/hto/releases/2025-06-24/hto.owl"/>
<dcterms:description>None</dcterms:description>
<dcterms:license rdf:resource="https://creativecommons.org/licenses/unspecified"/>
<dcterms:title>Heat Treatment Ontology</dcterms:title>
<owl:versionInfo>2025-06-24</owl:versionInfo>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/IAO_0000115 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115"/>
<!-- http://purl.org/dc/elements/1.1/source -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/source"/>
<!-- http://purl.org/dc/terms/description -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/description">
<rdfs:label>description</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/license -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/license">
<rdfs:label>license</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/title -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/title">
<rdfs:label>title</rdfs:label>
</owl:AnnotationProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/BFO_0000054 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000054">
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000055"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/BFO_0000017"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/BFO_0000015"/>
<rdfs:label xml:lang="en">has realization</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000055 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000055">
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/BFO_0000015"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/BFO_0000017"/>
<rdfs:label xml:lang="en">realizes</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000056 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000056">
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000057"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000020"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000031"/>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000004"/>
<owl:Class>
<owl:complementOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000006"/>
</owl:Class>
</owl:intersectionOf>
</owl:Class>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/BFO_0000015"/>
<rdfs:label xml:lang="en">participates in</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000057 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000057">
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/BFO_0000015"/>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000020"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000031"/>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000004"/>
<owl:Class>
<owl:complementOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000006"/>
</owl:Class>
</owl:intersectionOf>
</owl:Class>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<rdfs:label xml:lang="en">has participant</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/IAO_0000136 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000136">
<owl:inverseOf rdf:resource="https://w3id.org/pmd/co/PMD_0000004"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
<obo:IAO_0000115 xml:lang="en">A (currently) primitive relation that relates an information artifact to an entity.</obo:IAO_0000115>
<rdfs:label xml:lang="en">is about</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/pmd/co/PMD_0000004 -->
<owl:ObjectProperty rdf:about="https://w3id.org/pmd/co/PMD_0000004">
<rdfs:label xml:lang="en">is subject of</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/pmd/co/PMD_0000015 -->
<owl:ObjectProperty rdf:about="https://w3id.org/pmd/co/PMD_0000015">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000057"/>
<rdfs:label xml:lang="de">has input</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/pmd/co/PMD_0000016 -->
<owl:ObjectProperty rdf:about="https://w3id.org/pmd/co/PMD_0000016">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000057"/>
<rdfs:label xml:lang="de">has output</rdfs:label>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/BFO_0000001 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000001">
<rdfs:label xml:lang="en">entity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/BFO_0000002 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000002">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000001"/>
<owl:disjointWith rdf:resource="http://purl.obolibrary.org/obo/BFO_0000003"/>
<obo:IAO_0000115 xml:lang="en">An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts.</obo:IAO_0000115>
<rdfs:label xml:lang="en">continuant</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/BFO_0000003 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000003">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000001"/>
<rdfs:label xml:lang="en">occurrent</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/BFO_0000004 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000004">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000002"/>
<owl:disjointWith rdf:resource="http://purl.obolibrary.org/obo/BFO_0000020"/>
<owl:disjointWith rdf:resource="http://purl.obolibrary.org/obo/BFO_0000031"/>
<rdfs:label xml:lang="en">independent continuant</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/BFO_0000006 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000006">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000141"/>
<rdfs:label xml:lang="en">spatial region</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/BFO_0000015 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000015">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000003"/>
<rdfs:label xml:lang="en">process</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/BFO_0000017 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000017">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000020"/>
<obo:IAO_0000115 xml:lang="en">A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances.</obo:IAO_0000115>
<rdfs:label xml:lang="en">realizable entity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/BFO_0000020 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000020">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000002"/>
<owl:disjointWith rdf:resource="http://purl.obolibrary.org/obo/BFO_0000031"/>
<rdfs:label xml:lang="en">specifically dependent continuant</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/BFO_0000031 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000031">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000002"/>
<rdfs:label xml:lang="en">generically dependent continuant</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/BFO_0000040 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000040">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000004"/>
<owl:disjointWith rdf:resource="http://purl.obolibrary.org/obo/BFO_0000141"/>
<rdfs:label xml:lang="en">material entity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/BFO_0000141 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000141">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000004"/>
<rdfs:label xml:lang="en">immaterial entity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/IAO_0000027 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000027">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
<obo:IAO_0000115 xml:lang="en">An information content entity that is intended to be a truthful statement about something (modulo, e.g., measurement precision or other systematic errors) and is constructed/acquired by a method which reliably tends to produce (approximately) truthful statements.</obo:IAO_0000115>
<rdfs:label xml:lang="en">data item</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/IAO_0000030 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000030">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000031"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000136"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/BFO_0000001"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">A generically dependent continuant that is about some thing.</obo:IAO_0000115>
<rdfs:label xml:lang="en">information content entity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/IAO_0000078 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000078">
<owl:equivalentClass>
<owl:Class>
<owl:oneOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000002"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000120"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000121"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000122"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000123"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000124"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000125"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000423"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000428"/>
</owl:oneOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000102"/>
<obo:IAO_0000115 xml:lang="en">The curation status of the term. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.</obo:IAO_0000115>
<rdfs:label xml:lang="en">curation status specification</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/IAO_0000102 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000102">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000027"/>
<obo:IAO_0000115 xml:lang="en">Data about an ontology part is a data item about a part of an ontology, for example a term</obo:IAO_0000115>
<rdfs:label xml:lang="en">data about an ontology part</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/IAO_0000225 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000225">
<owl:equivalentClass>
<owl:Class>
<owl:oneOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000103"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000226"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000227"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000228"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000229"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/OMO_0001000"/>
</owl:oneOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000102"/>
<obo:IAO_0000115 xml:lang="en">The reason for which a term has been deprecated. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.</obo:IAO_0000115>
<rdfs:label xml:lang="en">obsolescence reason specification</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/IAO_0000409 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000409">
<owl:equivalentClass>
<owl:Class>
<owl:oneOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000410"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000420"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000421"/>
</owl:oneOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000102"/>
<obo:IAO_0000115 xml:lang="en">A denotator type indicates how a term should be interpreted from an ontological perspective.</obo:IAO_0000115>
<rdfs:label xml:lang="en">denotator type</rdfs:label>
</owl:Class>
<!-- https://w3id.org/pmd/hto/HTO_0000000 -->
<owl:Class rdf:about="https://w3id.org/pmd/hto/HTO_0000000">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/co/PMD_0000833"/>
<rdfs:label xml:lang="en">heat treatment process</rdfs:label>
</owl:Class>
<!-- https://w3id.org/pmd/co/PMD_0000014 -->
<owl:Class rdf:about="https://w3id.org/pmd/co/PMD_0000014">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000017"/>
<rdfs:label xml:lang="en">plan</rdfs:label>
</owl:Class>
<!-- https://w3id.org/pmd/co/PMD_0000833 -->
<owl:Class rdf:about="https://w3id.org/pmd/co/PMD_0000833">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000015"/>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/pmd/co/PMD_0000015"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/BFO_0000040"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/pmd/co/PMD_0000016"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/BFO_0000040"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:subClassOf>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000015"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000055"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/pmd/co/PMD_0000014"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/pmd/co/PMD_0000015"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/BFO_0000040"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/pmd/co/PMD_0000016"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/BFO_0000040"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="de">Herstellungsprozess</rdfs:label>
<rdfs:label xml:lang="en">Manufacturing Process</rdfs:label>
</owl:Class>
<!-- https://w3id.org/pmd/co/PMD_0020023 -->
<owl:Class rdf:about="https://w3id.org/pmd/co/PMD_0020023">
<owl:equivalentClass>
<owl:Class>
<owl:oneOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020027"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020097"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020100"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020107"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020109"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020110"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020111"/>
</owl:oneOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/co/PMD_0020098"/>
<rdfs:label xml:lang="en">Metallic Grain Structures</rdfs:label>
</owl:Class>
<!-- https://w3id.org/pmd/co/PMD_0020098 -->
<owl:Class rdf:about="https://w3id.org/pmd/co/PMD_0020098">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000031"/>
<rdfs:label xml:lang="en">Nature constant</rdfs:label>
</owl:Class>
<!-- https://w3id.org/pmd/co/PMD_0020099 -->
<owl:Class rdf:about="https://w3id.org/pmd/co/PMD_0020099">
<owl:equivalentClass>
<owl:Class>
<owl:oneOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020006"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020007"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020008"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020009"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020010"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020011"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020012"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020013"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020014"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020015"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020016"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020017"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020018"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020019"/>
</owl:oneOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/co/PMD_0020098"/>
<rdfs:label xml:lang="en">Bravais Lattice (3D)</rdfs:label>
</owl:Class>
<!-- https://w3id.org/pmd/co/PMD_0020116 -->
<owl:Class rdf:about="https://w3id.org/pmd/co/PMD_0020116">
<owl:equivalentClass>
<owl:Class>
<owl:oneOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020117"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020118"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020119"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020120"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020121"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020122"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020123"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020124"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020125"/>
</owl:oneOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/co/PMD_0020098"/>
<rdfs:label xml:lang="en">Aggregate state value</rdfs:label>
</owl:Class>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Individuals
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/IAO_0000002 -->
<owl:NamedIndividual rdf:about="http://purl.obolibrary.org/obo/IAO_0000002">
<rdfs:label xml:lang="en">example to be eventually removed</rdfs:label>
</owl:NamedIndividual>
<!-- http://purl.obolibrary.org/obo/IAO_0000103 -->
<owl:NamedIndividual rdf:about="http://purl.obolibrary.org/obo/IAO_0000103">
<obo:IAO_0000115 xml:lang="en">The term was used in an attempt to structure part of the ontology but in retrospect failed to do a good job</obo:IAO_0000115>
<rdfs:label xml:lang="en">failed exploratory term</rdfs:label>
</owl:NamedIndividual>
<!-- http://purl.obolibrary.org/obo/IAO_0000120 -->
<owl:NamedIndividual rdf:about="http://purl.obolibrary.org/obo/IAO_0000120">
<obo:IAO_0000115 xml:lang="en">Class has all its metadata, but is either not guaranteed to be in its final location in the asserted IS_A hierarchy or refers to another class that is not complete.</obo:IAO_0000115>
<rdfs:label xml:lang="en">metadata complete</rdfs:label>
</owl:NamedIndividual>
<!-- http://purl.obolibrary.org/obo/IAO_0000121 -->
<owl:NamedIndividual rdf:about="http://purl.obolibrary.org/obo/IAO_0000121">
<obo:IAO_0000115 xml:lang="en">Term created to ease viewing/sort terms for development purpose, and will not be included in a release</obo:IAO_0000115>
<rdfs:label xml:lang="en">organizational term</rdfs:label>
</owl:NamedIndividual>
<!-- http://purl.obolibrary.org/obo/IAO_0000122 -->
<owl:NamedIndividual rdf:about="http://purl.obolibrary.org/obo/IAO_0000122">
<obo:IAO_0000115 xml:lang="en">Class has undergone final review, is ready for use, and will be included in the next release. Any class lacking "ready_for_release" should be considered likely to change place in hierarchy, have its definition refined, or be obsoleted in the next release. Those classes deemed "ready_for_release" will also derived from a chain of ancestor classes that are also "ready_for_release."</obo:IAO_0000115>
<rdfs:label xml:lang="en">ready for release</rdfs:label>
</owl:NamedIndividual>
<!-- http://purl.obolibrary.org/obo/IAO_0000123 -->
<owl:NamedIndividual rdf:about="http://purl.obolibrary.org/obo/IAO_0000123">
<obo:IAO_0000115 xml:lang="en">Class is being worked on; however, the metadata (including definition) are not complete or sufficiently clear to the branch editors.</obo:IAO_0000115>
<rdfs:label xml:lang="en">metadata incomplete</rdfs:label>
</owl:NamedIndividual>
<!-- http://purl.obolibrary.org/obo/IAO_0000124 -->
<owl:NamedIndividual rdf:about="http://purl.obolibrary.org/obo/IAO_0000124">
<obo:IAO_0000115 xml:lang="en">Nothing done yet beyond assigning a unique class ID and proposing a preferred term.</obo:IAO_0000115>
<rdfs:label xml:lang="en">uncurated</rdfs:label>
</owl:NamedIndividual>
<!-- http://purl.obolibrary.org/obo/IAO_0000125 -->
<owl:NamedIndividual rdf:about="http://purl.obolibrary.org/obo/IAO_0000125">
<obo:IAO_0000115 xml:lang="en">All definitions, placement in the asserted IS_A hierarchy and required minimal metadata are complete. The class is awaiting a final review by someone other than the term editor.</obo:IAO_0000115>
<rdfs:label xml:lang="en">pending final vetting</rdfs:label>
</owl:NamedIndividual>
<!-- http://purl.obolibrary.org/obo/IAO_0000226 -->
<owl:NamedIndividual rdf:about="http://purl.obolibrary.org/obo/IAO_0000226">
<rdfs:label xml:lang="en">placeholder removed</rdfs:label>
</owl:NamedIndividual>
<!-- http://purl.obolibrary.org/obo/IAO_0000227 -->
<owl:NamedIndividual rdf:about="http://purl.obolibrary.org/obo/IAO_0000227">
<rdfs:label xml:lang="en">terms merged</rdfs:label>
</owl:NamedIndividual>
<!-- http://purl.obolibrary.org/obo/IAO_0000228 -->
<owl:NamedIndividual rdf:about="http://purl.obolibrary.org/obo/IAO_0000228">
<rdfs:label xml:lang="en">term imported</rdfs:label>
</owl:NamedIndividual>
<!-- http://purl.obolibrary.org/obo/IAO_0000229 -->
<owl:NamedIndividual rdf:about="http://purl.obolibrary.org/obo/IAO_0000229">
<rdfs:label xml:lang="en">term split</rdfs:label>
</owl:NamedIndividual>
<!-- http://purl.obolibrary.org/obo/IAO_0000410 -->
<owl:NamedIndividual rdf:about="http://purl.obolibrary.org/obo/IAO_0000410">
<rdfs:label xml:lang="en">universal</rdfs:label>
</owl:NamedIndividual>
<!-- http://purl.obolibrary.org/obo/IAO_0000420 -->
<owl:NamedIndividual rdf:about="http://purl.obolibrary.org/obo/IAO_0000420">
<obo:IAO_0000115 xml:lang="en">A defined class is a class that is defined by a set of logically necessary and sufficient conditions but is not a universal</obo:IAO_0000115>
<rdfs:label xml:lang="en">defined class</rdfs:label>
</owl:NamedIndividual>
<!-- http://purl.obolibrary.org/obo/IAO_0000421 -->
<owl:NamedIndividual rdf:about="http://purl.obolibrary.org/obo/IAO_0000421">
<obo:IAO_0000115 xml:lang="en">A named class expression is a logical expression that is given a name. The name can be used in place of the expression.</obo:IAO_0000115>
<rdfs:label xml:lang="en">named class expression</rdfs:label>
</owl:NamedIndividual>
<!-- http://purl.obolibrary.org/obo/IAO_0000423 -->
<owl:NamedIndividual rdf:about="http://purl.obolibrary.org/obo/IAO_0000423">
<obo:IAO_0000115 xml:lang="en">Terms with this status should eventually replaced with a term from another ontology.</obo:IAO_0000115>
<rdfs:label xml:lang="en">to be replaced with external ontology term</rdfs:label>
</owl:NamedIndividual>
<!-- http://purl.obolibrary.org/obo/IAO_0000428 -->
<owl:NamedIndividual rdf:about="http://purl.obolibrary.org/obo/IAO_0000428">
<obo:IAO_0000115 xml:lang="en">A term that is metadata complete, has been reviewed, and problems have been identified that require discussion before release. Such a term requires editor note(s) to identify the outstanding issues.</obo:IAO_0000115>
<rdfs:label xml:lang="en">requires discussion</rdfs:label>
</owl:NamedIndividual>
<!-- http://purl.obolibrary.org/obo/OMO_0001000 -->
<owl:NamedIndividual rdf:about="http://purl.obolibrary.org/obo/OMO_0001000">
<obo:IAO_0000115 xml:lang="en">The term was added to the ontology on the assumption it was in scope, but it turned out later that it was not.</obo:IAO_0000115>
<rdfs:label>out of scope</rdfs:label>
</owl:NamedIndividual>
<!-- https://w3id.org/pmd/co/PMD_0020006 -->
<owl:NamedIndividual rdf:about="https://w3id.org/pmd/co/PMD_0020006">
<rdfs:label xml:lang="en">Bravais Lattice Triclinic Primitve</rdfs:label>
</owl:NamedIndividual>
<!-- https://w3id.org/pmd/co/PMD_0020007 -->
<owl:NamedIndividual rdf:about="https://w3id.org/pmd/co/PMD_0020007">
<rdfs:label xml:lang="en">Bravais Lattice Monoclinic Primitive</rdfs:label>
</owl:NamedIndividual>
<!-- https://w3id.org/pmd/co/PMD_0020008 -->
<owl:NamedIndividual rdf:about="https://w3id.org/pmd/co/PMD_0020008">
<rdfs:label xml:lang="en">Bravais Lattice Monoclinic Base-centered</rdfs:label>
</owl:NamedIndividual>
<!-- https://w3id.org/pmd/co/PMD_0020009 -->
<owl:NamedIndividual rdf:about="https://w3id.org/pmd/co/PMD_0020009">
<rdfs:label xml:lang="en">Bravais Lattice Orthorombic Primitive</rdfs:label>
</owl:NamedIndividual>
<!-- https://w3id.org/pmd/co/PMD_0020010 -->
<owl:NamedIndividual rdf:about="https://w3id.org/pmd/co/PMD_0020010">
<rdfs:label xml:lang="en">Bravais Lattice Orthorhombic Base-centered</rdfs:label>
</owl:NamedIndividual>
<!-- https://w3id.org/pmd/co/PMD_0020011 -->
<owl:NamedIndividual rdf:about="https://w3id.org/pmd/co/PMD_0020011">
<rdfs:label xml:lang="en">Bravais Lattice Orthorhombic Body-centered</rdfs:label>
</owl:NamedIndividual>
<!-- https://w3id.org/pmd/co/PMD_0020012 -->
<owl:NamedIndividual rdf:about="https://w3id.org/pmd/co/PMD_0020012">
<rdfs:label xml:lang="en">Bravais Lattice Orthorhombic Face-centered</rdfs:label>
</owl:NamedIndividual>
<!-- https://w3id.org/pmd/co/PMD_0020013 -->
<owl:NamedIndividual rdf:about="https://w3id.org/pmd/co/PMD_0020013">
<rdfs:label xml:lang="en">Bravais Lattice Tetragonal Primitive</rdfs:label>
</owl:NamedIndividual>
<!-- https://w3id.org/pmd/co/PMD_0020014 -->
<owl:NamedIndividual rdf:about="https://w3id.org/pmd/co/PMD_0020014">
<rdfs:label xml:lang="en">Bravais Lattice Tetragonal Body-centered</rdfs:label>
</owl:NamedIndividual>
<!-- https://w3id.org/pmd/co/PMD_0020015 -->
<owl:NamedIndividual rdf:about="https://w3id.org/pmd/co/PMD_0020015">
<rdfs:label xml:lang="en">Bravais Lattice Hexagonal Rhombohedral Primitive</rdfs:label>
</owl:NamedIndividual>
<!-- https://w3id.org/pmd/co/PMD_0020016 -->
<owl:NamedIndividual rdf:about="https://w3id.org/pmd/co/PMD_0020016">
<rdfs:label xml:lang="en">Bravais Lattice Hexagonal Hexagonal Primitive</rdfs:label>
</owl:NamedIndividual>
<!-- https://w3id.org/pmd/co/PMD_0020017 -->
<owl:NamedIndividual rdf:about="https://w3id.org/pmd/co/PMD_0020017">
<rdfs:label xml:lang="en">Bravais Lattice Cubic Primitive</rdfs:label>
</owl:NamedIndividual>
<!-- https://w3id.org/pmd/co/PMD_0020018 -->
<owl:NamedIndividual rdf:about="https://w3id.org/pmd/co/PMD_0020018">
<rdfs:label xml:lang="en">Bravais Lattice Cubic Body-centered</rdfs:label>
</owl:NamedIndividual>
<!-- https://w3id.org/pmd/co/PMD_0020019 -->
<owl:NamedIndividual rdf:about="https://w3id.org/pmd/co/PMD_0020019">
<rdfs:label xml:lang="en">Bravais Lattice Cubic Face-centered</rdfs:label>
</owl:NamedIndividual>
<!-- https://w3id.org/pmd/co/PMD_0020027 -->
<owl:NamedIndividual rdf:about="https://w3id.org/pmd/co/PMD_0020027">
<rdfs:label xml:lang="en">Bainite</rdfs:label>
</owl:NamedIndividual>
<!-- https://w3id.org/pmd/co/PMD_0020097 -->
<owl:NamedIndividual rdf:about="https://w3id.org/pmd/co/PMD_0020097">
<rdfs:label xml:lang="en">Austenite</rdfs:label>
</owl:NamedIndividual>
<!-- https://w3id.org/pmd/co/PMD_0020100 -->
<owl:NamedIndividual rdf:about="https://w3id.org/pmd/co/PMD_0020100">
<rdfs:label xml:lang="en">Ferrite</rdfs:label>
</owl:NamedIndividual>
<!-- https://w3id.org/pmd/co/PMD_0020107 -->
<owl:NamedIndividual rdf:about="https://w3id.org/pmd/co/PMD_0020107">
<rdfs:label xml:lang="en">Ledeburite</rdfs:label>
</owl:NamedIndividual>
<!-- https://w3id.org/pmd/co/PMD_0020109 -->
<owl:NamedIndividual rdf:about="https://w3id.org/pmd/co/PMD_0020109">
<rdfs:label xml:lang="en">Pearlite</rdfs:label>
</owl:NamedIndividual>
<!-- https://w3id.org/pmd/co/PMD_0020110 -->
<owl:NamedIndividual rdf:about="https://w3id.org/pmd/co/PMD_0020110">
<rdfs:label xml:lang="en">Widmanstatten structure</rdfs:label>
</owl:NamedIndividual>
<!-- https://w3id.org/pmd/co/PMD_0020111 -->
<owl:NamedIndividual rdf:about="https://w3id.org/pmd/co/PMD_0020111">
<rdfs:label xml:lang="en">Martensite</rdfs:label>
</owl:NamedIndividual>
<!-- https://w3id.org/pmd/co/PMD_0020117 -->
<owl:NamedIndividual rdf:about="https://w3id.org/pmd/co/PMD_0020117">
<rdfs:label xml:lang="en">Aggregate state solid</rdfs:label>
</owl:NamedIndividual>
<!-- https://w3id.org/pmd/co/PMD_0020118 -->
<owl:NamedIndividual rdf:about="https://w3id.org/pmd/co/PMD_0020118">
<rdfs:label xml:lang="en">Aggregate state liquid</rdfs:label>
</owl:NamedIndividual>
<!-- https://w3id.org/pmd/co/PMD_0020119 -->
<owl:NamedIndividual rdf:about="https://w3id.org/pmd/co/PMD_0020119">
<rdfs:label xml:lang="en">Aggregate state gasous</rdfs:label>
</owl:NamedIndividual>
<!-- https://w3id.org/pmd/co/PMD_0020120 -->
<owl:NamedIndividual rdf:about="https://w3id.org/pmd/co/PMD_0020120">
<rdfs:label xml:lang="en">Aggregate state plasma</rdfs:label>
</owl:NamedIndividual>
<!-- https://w3id.org/pmd/co/PMD_0020121 -->
<owl:NamedIndividual rdf:about="https://w3id.org/pmd/co/PMD_0020121">
<rdfs:label xml:lang="en">Aggregate state atom gas</rdfs:label>
</owl:NamedIndividual>
<!-- https://w3id.org/pmd/co/PMD_0020122 -->
<owl:NamedIndividual rdf:about="https://w3id.org/pmd/co/PMD_0020122">
<rdfs:label xml:lang="en">Aggregate state supercritical fluid</rdfs:label>
</owl:NamedIndividual>
<!-- https://w3id.org/pmd/co/PMD_0020123 -->
<owl:NamedIndividual rdf:about="https://w3id.org/pmd/co/PMD_0020123">
<rdfs:label xml:lang="en">Aggregate state mesomorphic</rdfs:label>
</owl:NamedIndividual>
<!-- https://w3id.org/pmd/co/PMD_0020124 -->
<owl:NamedIndividual rdf:about="https://w3id.org/pmd/co/PMD_0020124">
<rdfs:label xml:lang="en">Aggregate state suprafluid</rdfs:label>
</owl:NamedIndividual>
<!-- https://w3id.org/pmd/co/PMD_0020125 -->
<owl:NamedIndividual rdf:about="https://w3id.org/pmd/co/PMD_0020125">
<rdfs:label xml:lang="en">Aggregate state suprasolid</rdfs:label>
</owl:NamedIndividual>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// General axioms
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AllDisjointClasses"/>
<owl:members rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000004"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000020"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000031"/>
</owl:members>
</rdf:Description>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AllDifferent"/>
<owl:distinctMembers rdf:parseType="Collection">
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020006"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020007"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020008"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020009"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020010"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020011"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020012"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020013"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020014"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020015"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020016"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020017"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020018"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0020019"/>
</owl:distinctMembers>
</rdf:Description>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AllDifferent"/>
<owl:distinctMembers rdf:parseType="Collection">