-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimt-base.owl
More file actions
3018 lines (2079 loc) · 162 KB
/
Copy pathimt-base.owl
File metadata and controls
3018 lines (2079 loc) · 162 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/imt/"
xml:base="https://w3id.org/pmd/imt/"
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/imt/">
<owl:versionIRI rdf:resource="https://w3id.org/pmd/imt/2026-02-23"/>
<dce:type rdf:resource="http://purl.obolibrary.org/obo/IAO_8000001"/>
<dcterms:bibliographicCitation>imt: Image Transformation Ontology. Version 2026-02-23, https://w3id.org/pmd/imt/</dcterms:bibliographicCitation>
<dcterms:created>2026-02-23</dcterms:created>
<dcterms:description>None</dcterms:description>
<dcterms:license rdf:resource="https://creativecommons.org/licenses/unspecified"/>
<dcterms:title>ImageTrans: Application-level ontology for image transformation</dcterms:title>
<owl:priorVersion rdf:resource="https://w3id.org/pmd/imt/"/>
<owl:versionInfo>2026-02-23</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.obolibrary.org/obo/IAO_0000116 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000116"/>
<!-- 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/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#altLabel -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#altLabel"/>
<!-- http://www.w3.org/2004/02/skos/core#definition -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#definition"/>
<!-- http://www.w3.org/2004/02/skos/core#example -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#example"/>
<!-- https://w3id.org/pmd/co/PMD_0000060 -->
<owl:AnnotationProperty rdf:about="https://w3id.org/pmd/co/PMD_0000060">
<rdfs:comment xml:lang="en">Indicates whether the ontology element is part of the minimal profile of the ontology. Useful for modularization, simplified views, or lightweight implementations.</rdfs:comment>
<rdfs:label xml:lang="en">isInMinimalProfile</rdfs:label>
<co:PMD_0001032>https://github.com/materialdigital/core-ontology/issues/121</co:PMD_0001032>
</owl:AnnotationProperty>
<!-- https://w3id.org/pmd/co/PMD_0000064 -->
<owl:AnnotationProperty rdf:about="https://w3id.org/pmd/co/PMD_0000064">
<rdfs:comment xml:lang="en">An editor note referring to a pattern which shows the usage of this class or property.</rdfs:comment>
<rdfs:label xml:lang="en">pattern example</rdfs:label>
</owl:AnnotationProperty>
<!-- https://w3id.org/pmd/co/PMD_0001032 -->
<owl:AnnotationProperty rdf:about="https://w3id.org/pmd/co/PMD_0001032">
<obo:IAO_0000115 xml:lang="en">A term tracker annotation is an editor note used to track the history of an entity. For each change, it records the related GitHub issue and pull request.</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">hijacked from http://openenergy-platform.org/ontology/oeo/OEO_00020426</obo:IAO_0000116>
<rdfs:label xml:lang="en">term tracker annotation</rdfs:label>
</owl:AnnotationProperty>
<!-- https://w3id.org/pmd/co/PMD_0050117 -->
<owl:AnnotationProperty rdf:about="https://w3id.org/pmd/co/PMD_0050117">
<rdfs:label xml:lang="en">abbreviation</rdfs:label>
<skos:definition xml:lang="en">A textual annotation used to specify a commonly accepted abbreviation, acronym, or shortened form of a class label. This property is intended to support concise referencing of ontology classes, especially when standard abbreviations are widely used in practice.</skos:definition>
<skos:example xml:lang="en">"DNA" for "Deoxyribonucleic Acid"</skos:example>
</owl:AnnotationProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// 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_0000051 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000051"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000054 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000054"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000055 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000055"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000108 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000108"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000136 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000136"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000417 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000417"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000293 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/OBI_0000293"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000299 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/OBI_0000299"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000312 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/OBI_0000312"/>
<!-- http://purl.obolibrary.org/obo/OBI_0001927 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/OBI_0001927"/>
<!-- http://purl.obolibrary.org/obo/RO_0000052 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000052"/>
<!-- http://purl.obolibrary.org/obo/RO_0000056 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000056"/>
<!-- http://purl.obolibrary.org/obo/RO_0000080 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000080"/>
<!-- http://purl.obolibrary.org/obo/RO_0000086 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000086"/>
<!-- http://purl.obolibrary.org/obo/RO_0002350 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002350"/>
<!-- http://purl.obolibrary.org/obo/RO_0002351 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002351"/>
<!-- http://purl.obolibrary.org/obo/RO_0009006 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0009006"/>
<!-- http://purl.obolibrary.org/obo/STATO_0000102 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/STATO_0000102"/>
<!-- 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>
<skos:definition xml:lang="en">Inverse of 'is about'.</skos:definition>
</owl:ObjectProperty>
<!-- https://w3id.org/pmd/co/PMD_0000009 -->
<owl:ObjectProperty rdf:about="https://w3id.org/pmd/co/PMD_0000009">
<owl:inverseOf rdf:resource="https://w3id.org/pmd/co/PMD_0025006"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/BFO_0000015"/>
<rdfs:range rdf:resource="https://w3id.org/pmd/co/PMD_0000008"/>
<rdfs:label xml:lang="en">has process attribute</rdfs:label>
<rdfs:seeAlso xml:lang="en">has process attribute from OEO https://openenergyplatform.org/ontology/oeo/OEO_00000500</rdfs:seeAlso>
<skos:definition xml:lang="en">A relation between a process and a process attribute that depends on it.</skos:definition>
<skos:example xml:lang="en">Tensile testing process has process attribute tensile rate</skos:example>
</owl:ObjectProperty>
<!-- https://w3id.org/pmd/co/PMD_0000069 -->
<owl:ObjectProperty rdf:about="https://w3id.org/pmd/co/PMD_0000069">
<owl:inverseOf rdf:resource="https://w3id.org/pmd/co/PMD_0000070"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#InverseFunctionalProperty"/>
<rdfs:domain>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000002"/>
<owl:Class>
<owl:complementOf rdf:resource="https://w3id.org/pmd/co/PMD_0000068"/>
</owl:Class>
</owl:intersectionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="https://w3id.org/pmd/co/PMD_0000068"/>
<rdfs:label xml:lang="en">has state</rdfs:label>
<skos:definition xml:lang="en">relates an anchor continuant to a temporally qualified continuant that represents a specific temporal phase of its existence.</skos:definition>
<co:PMD_0001032>https://github.com/materialdigital/core-ontology/issues/185</co:PMD_0001032>
</owl:ObjectProperty>
<!-- https://w3id.org/pmd/co/PMD_0000070 -->
<owl:ObjectProperty rdf:about="https://w3id.org/pmd/co/PMD_0000070">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:label xml:lang="en">is state of</rdfs:label>
<skos:definition xml:lang="en">relates a temporally qualified continuant to the unique anchor continuant that it is a temporal phase of</skos:definition>
</owl:ObjectProperty>
<!-- https://w3id.org/pmd/co/PMD_0000077 -->
<owl:ObjectProperty rdf:about="https://w3id.org/pmd/co/PMD_0000077">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/pmd/co/PMD_0000004"/>
<rdfs:label xml:lang="en">specified by value</rdfs:label>
<skos:definition xml:lang="en">A relation between an entity and a value specification which is about this entity.</skos:definition>
</owl:ObjectProperty>
<!-- https://w3id.org/pmd/co/PMD_0020127 -->
<owl:ObjectProperty rdf:about="https://w3id.org/pmd/co/PMD_0020127">
<rdfs:domain rdf:resource="https://w3id.org/pmd/co/PMD_0000008"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/BFO_0000020"/>
<rdfs:comment xml:lang="en">Despite has characteristic from RO does not have any domain constraints, it is still not possible to directly connect an instance of a process with an instance of a SDC.
First, SDC is dependent on a IC. As RO does not have "bearer of" object property, the "has characteristic" implies that the domain should be an IC.
Second, characteristic of is a functional property. Thus, two triples SDC_1 characteristc of IC_1 and SDC_2 characteristc of Process_1 (where IC_1 participates in Process_1), cannot exist simultaneously.
An example of such case can be "Temperature of during the annealing process was 1000°C". Temperature is an SDC of some participant of the annealing, however it is not clear whether it is an SDC of an oven or of a sample in the oven. If we assert triple Annealing--> has characteristic --> Temperature 1000°C, then the correct triple connecting temperature SDC with either oven or specimen cannot exist.</rdfs:comment>
<rdfs:label xml:lang="en">refers to</rdfs:label>
<skos:definition xml:lang="en">a relation between a process attribute and an SDC of some participant in a process</skos:definition>
<skos:example xml:lang="en">a relation to between a process attribute an a SDC of some participant in a process.</skos:example>
</owl:ObjectProperty>
<!-- https://w3id.org/pmd/co/PMD_0025006 -->
<owl:ObjectProperty rdf:about="https://w3id.org/pmd/co/PMD_0025006">
<rdfs:label xml:lang="en">process attribute of</rdfs:label>
<skos:definition xml:lang="en">A relation between a process attribute and a process, which "bears" the attribute.</skos:definition>
<skos:example xml:lang="en">Tensile rate is a process attribute of tensile test</skos:example>
</owl:ObjectProperty>
<!-- https://w3id.org/pmd/co/PMD_0025998 -->
<owl:ObjectProperty rdf:about="https://w3id.org/pmd/co/PMD_0025998">
<owl:inverseOf rdf:resource="https://w3id.org/pmd/co/PMD_0025999"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/BFO_0000004"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/BFO_0000145"/>
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000051"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0025998"/>
</owl:propertyChainAxiom>
<rdfs:label xml:lang="en">has relational quality</rdfs:label>
<skos:definition xml:lang="en">a relation between an independent continuant (the bearer) and a relational quality, in which the quality specifically depends on the bearer for its existence</skos:definition>
<skos:example xml:lang="en">material has relational quality mass proportion m, and portion of iron has the same relational quality mass proportion m</skos:example>
</owl:ObjectProperty>
<!-- https://w3id.org/pmd/co/PMD_0025999 -->
<owl:ObjectProperty rdf:about="https://w3id.org/pmd/co/PMD_0025999">
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0025999"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000050"/>
</owl:propertyChainAxiom>
<obo:IAO_0000116 xml:lang="en">The 'relational quality of' is more strict that 'quality of' from RO, since domain is 'relational quality'. The motivtion to introduce an object property for relational qualities is the following:
RO's 'quality of' is functional i.e., a->b, a->c => b=c. The functionality is relevant for most of the SDC -> IC triples, expect for relational qualities, which per definiton can be simultaneously inherited in >=2 ICs. Thus, 'relational quality of' has the same intention to connect SDC to IC, however, without cardinality constraints.</obo:IAO_0000116>
<rdfs:label xml:lang="en">relational quality of</rdfs:label>
<skos:definition xml:lang="en">a relation between a relational quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence</skos:definition>
<skos:example xml:lang="en">mass proportion m is relational qualitiy of material, and the same mass proportion m is relational qualitiy of portion of iron</skos:example>
</owl:ObjectProperty>
<!-- https://w3id.org/pmd/imt/IMT_0000001 -->
<owl:ObjectProperty rdf:about="https://w3id.org/pmd/imt/IMT_0000001">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<owl:inverseOf rdf:resource="https://w3id.org/pmd/imt/IMT_0000006"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0000501"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0000502"/>
<rdf:Description rdf:about="https://w3id.org/pmd/co/PMD_0025005"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="https://w3id.org/pmd/imt/IMT_0000000"/>
<rdfs:label xml:lang="en">has coordinate system</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
<skos:definition xml:lang="en">has coordinate system is a realtion between a data item (1D, 2D, or 3D) and a coordinate system of this data item.</skos:definition>
</owl:ObjectProperty>
<!-- https://w3id.org/pmd/imt/IMT_0000006 -->
<owl:ObjectProperty rdf:about="https://w3id.org/pmd/imt/IMT_0000006">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<rdfs:label xml:lang="en">coordinate system of</rdfs:label>
<skos:definition xml:lang="en">Inverse of has coondinate system.</skos:definition>
</owl:ObjectProperty>
<!-- https://w3id.org/pmd/imt/IMT_0000007 -->
<owl:ObjectProperty rdf:about="https://w3id.org/pmd/imt/IMT_0000007">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_0002351"/>
<owl:inverseOf rdf:resource="https://w3id.org/pmd/imt/IMT_0000010"/>
<rdfs:domain rdf:resource="https://w3id.org/pmd/imt/IMT_0000002"/>
<rdfs:range rdf:resource="https://w3id.org/pmd/co/PMD_0000502"/>
<rdfs:label xml:lang="en">has target member</rdfs:label>
<skos:definition xml:lang="en">has target member is a relation between a matching pair an image, which is a member is this pair, which content is going to be matched to a coordinate system of another image.</skos:definition>
</owl:ObjectProperty>
<!-- https://w3id.org/pmd/imt/IMT_0000008 -->
<owl:ObjectProperty rdf:about="https://w3id.org/pmd/imt/IMT_0000008">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_0002351"/>
<owl:inverseOf rdf:resource="https://w3id.org/pmd/imt/IMT_0000009"/>
<rdfs:domain rdf:resource="https://w3id.org/pmd/imt/IMT_0000002"/>
<rdfs:range rdf:resource="https://w3id.org/pmd/co/PMD_0000502"/>
<rdfs:label xml:lang="en">has source member</rdfs:label>
<skos:definition xml:lang="en">has source member is a relation between a matching pair an image, which is a member in this pair, which coordinate system is a going to used as a source coordinate system for a warped image.</skos:definition>
</owl:ObjectProperty>
<!-- https://w3id.org/pmd/imt/IMT_0000009 -->
<owl:ObjectProperty rdf:about="https://w3id.org/pmd/imt/IMT_0000009">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_0002350"/>
<rdfs:label xml:lang="en">source member of</rdfs:label>
<skos:definition xml:lang="en">inverse of has target member</skos:definition>
</owl:ObjectProperty>
<!-- https://w3id.org/pmd/imt/IMT_0000010 -->
<owl:ObjectProperty rdf:about="https://w3id.org/pmd/imt/IMT_0000010">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_0002350"/>
<rdfs:label xml:lang="en">target member of</rdfs:label>
<skos:definition xml:lang="en">inverse of has target member</skos:definition>
</owl:ObjectProperty>
<!-- https://w3id.org/pmd/imt/IMT_0000012 -->
<owl:ObjectProperty rdf:about="https://w3id.org/pmd/imt/IMT_0000012">
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/IAO_0000101"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/IAO_0000101"/>
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/OBI_0000312"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/OBI_0000293"/>
<rdf:Description rdf:about="https://w3id.org/pmd/imt/IMT_0000008"/>
</owl:propertyChainAxiom>
<rdfs:label xml:lang="en">image derived from</rdfs:label>
<skos:definition xml:lang="en">Warped image is an image which is a specified output of an image transofrmation process. It is derived from an image, which is a source member of a matching pair, that is a specified output of a image transformation process.
image derived from is a relation between an warped image and an image, which is a source member if the matching pair that is a specified input to the image transofrmation process.</skos:definition>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Data properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- https://w3id.org/pmd/co/PMD_0000006 -->
<owl:DatatypeProperty rdf:about="https://w3id.org/pmd/co/PMD_0000006">
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
<rdfs:label xml:lang="en">has value</rdfs:label>
<skos:definition xml:lang="en">data property that relates an information content entity to a literal</skos:definition>
</owl:DatatypeProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/BFO_0000002 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000002"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000003 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000003"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000004 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000004"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000008 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000008"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000009 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000009"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000015 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000015"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000016 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000016"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000017 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000017"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000019 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000019"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000020 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000020"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000024 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000024"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000027 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000027"/>
<!-- 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/COB_0000035 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/COB_0000035"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000027 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000027"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000030 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000030"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000033 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000033"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000100 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000100"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000101 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000101"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000104 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000104"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000109 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000109"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000070 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000070"/>
<!-- http://purl.obolibrary.org/obo/OBI_0001930 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0001930"/>
<!-- http://purl.obolibrary.org/obo/OBI_0001931 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0001931"/>
<!-- https://w3id.org/pmd/IMT_0000000 -->
<owl:Class rdf:about="https://w3id.org/pmd/IMT_0000000">
<rdfs:label xml:lang="en">root node</rdfs:label>
</owl:Class>
<!-- https://w3id.org/pmd/co/PMD_0000001 -->
<owl:Class rdf:about="https://w3id.org/pmd/co/PMD_0000001">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000040"/>
<rdfs:comment xml:lang="en">It is also representing a distinct physical or conceptual part of a material or substance.
The open energy ontology OEO defines portion of matter as a subclass of object aggregate, which implies countability. Our portion is not (precisely) countable and thus bearer of intensive properties.</rdfs:comment>
<rdfs:comment xml:lang="en">Lome explanation for portion of matter: "What is a molecule cluster at the cellular level? Contrary to the molecular level, at the cellular level of granularity the boundary of each molecule is outside of the level of granular focus. What forms a discontinuous cluster of countable individual molecules and thus bona fide objects at the molecular level, is a continuous and non-countable molecular substance at coarser levels of
granularity. At these coarser levels, the individual molecules cannot be differentiated and demarcated anymore and the cluster as a whole possesses only fiat inner boundaries."</rdfs:comment>
<rdfs:label xml:lang="en">portion of matter</rdfs:label>
<skos:definition xml:lang="en">A material entity that is not demarcated by any physical discontinuities. At some finer level of granularity it is an object aggregate, at some coarser level of granularity it is a fiat object part,but at this level of granularity it is neither.</skos:definition>
<co:PMD_0000060 rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</co:PMD_0000060>
</owl:Class>
<!-- https://w3id.org/pmd/co/PMD_0000005 -->
<owl:Class rdf:about="https://w3id.org/pmd/co/PMD_0000005">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000017"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000054"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/pmd/co/PMD_0000950"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000052"/>
<owl:someValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000040"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000056"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/BFO_0000015"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">Technical materials are complex object aggregates. The properties that are determined for those object aggregates are intrinsically associated with the methodologies employed in the measurement process. This is in contrast to typical 'physical' properties, which like e.g. mass that can be determined to high accuracy independently of the measurement process.
As a consequence, the behavoiral material properties in the ontology are differeciated according to their measurement method, e.g. Brinell hardness and Vickers hardness are different types of indentation hardness rather than different measures/quantification (GDC) of the materials property 'indentation hardness'.
The 'unit idenifieres' of such properties (e.g. "HV1", "HV10", "HBW") are strictly speaking not units but rather references to the measurement methodology used to determine a numeric value that quantifies the property.</rdfs:comment>
<rdfs:label xml:lang="en">behavioral material property</rdfs:label>
<skos:definition xml:lang="en">A property is a material trait in terms of the kind and magnitude of response to a specific imposed stimulus. Generally, definitions of properties are made independent of material shape and size.
(Callister, W.D., Rethwisch, D.G., Materials Science and Engineering, Wiley, 2014)
We only deal with intensive (system-size independent) material properties. Extensive properties that depend on the testpiece/specimen/probe size should be found in the respective testing method modules.</skos:definition>
<co:PMD_0000060 rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</co:PMD_0000060>
</owl:Class>
<!-- https://w3id.org/pmd/co/PMD_0000008 -->
<owl:Class rdf:about="https://w3id.org/pmd/co/PMD_0000008">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000003"/>
<obo:IAO_0000116>an attribute of a process</obo:IAO_0000116>
<rdfs:comment xml:lang="en">Process attribute for a process has a similar application to specifically dependened continuant (SDC) for an independent continuant (IC). Furthermore, process attribute describes how SDCs of some participants, i.e., ICs, change in a process.
Specific rates, e.g., tensile rate, cooling rate, etc. should be added as subclasses of this class.</rdfs:comment>
<rdfs:label xml:lang="en">process attribute</rdfs:label>
<rdfs:seeAlso xml:lang="en">process attribute from OEO https://openenergyplatform.org/ontology/oeo/OEO_00030019</rdfs:seeAlso>
<owl:versionInfo xml:lang="en">Renamed to avoid confusion with has characteristic object property</owl:versionInfo>
<skos:altLabel xml:lang="en">process characteristic</skos:altLabel>
<skos:definition xml:lang="en">a process attribute is a dependent occurrent that existentially depends on a process.</skos:definition>
<skos:example xml:lang="en">Tensile rate in a tensile testing process. Cooling rate in a quenching process</skos:example>
<co:PMD_0000060 rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</co:PMD_0000060>
</owl:Class>
<!-- https://w3id.org/pmd/co/PMD_0000068 -->
<owl:Class rdf:about="https://w3id.org/pmd/co/PMD_0000068">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000004"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000108"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/BFO_0000008"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/pmd/co/PMD_0000070"/>
<owl:someValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000004"/>
<owl:Class>
<owl:complementOf rdf:resource="https://w3id.org/pmd/co/PMD_0000068"/>
</owl:Class>
</owl:intersectionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000004"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000108"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/BFO_0000008"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/pmd/co/PMD_0000070"/>
<owl:someValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000004"/>
<owl:Class>
<owl:complementOf rdf:resource="https://w3id.org/pmd/co/PMD_0000068"/>
</owl:Class>
</owl:intersectionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000116 xml:lang="en">For any temporally qualified continuant x@t, there exists a continuant y such that x@t has_state y, meaning that y is the anchor continuant of which x@t is a temporal phase existing at temporal regions t. The relation has_state is functional and signifies that all such temporally qualified continuants are uniquely associated with their basic anchor continuant.</obo:IAO_0000116>
<rdfs:label xml:lang="en">temporally qualified continuant</rdfs:label>
<skos:definition xml:lang="en">A temporally qualified continuant is a continuant that, by reference to a determinate temporal region, is such as to possess its properties only for so long as that period obtains, being otherwise in its essentiality unchanged.</skos:definition>
<co:PMD_0001032>https://github.com/materialdigital/core-ontology/issues/185</co:PMD_0001032>
</owl:Class>
<!-- https://w3id.org/pmd/co/PMD_0000501 -->
<owl:Class rdf:about="https://w3id.org/pmd/co/PMD_0000501">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000027"/>
<rdfs:label xml:lang="en">1D</rdfs:label>
<skos:definition xml:lang="en">1-D is an information content entity representing a one-dimensional structure or model representing a single linear dimension, often used in material science simulations or analysis.</skos:definition>
<co:PMD_0000060 rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</co:PMD_0000060>
</owl:Class>
<!-- https://w3id.org/pmd/co/PMD_0000502 -->
<owl:Class rdf:about="https://w3id.org/pmd/co/PMD_0000502">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000027"/>
<rdfs:label xml:lang="en">2D</rdfs:label>
<skos:definition xml:lang="en">A two-dimensional information content entity is a representation or analysis, commonly applied in studying planar material properties or surface phenomena.</skos:definition>
<co:PMD_0000060 rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</co:PMD_0000060>
</owl:Class>
<!-- https://w3id.org/pmd/co/PMD_0000503 -->
<owl:Class rdf:about="https://w3id.org/pmd/co/PMD_0000503">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/co/PMD_0020243"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000417"/>
<owl:someValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000109"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/OBI_0000312"/>
<owl:someValuesFrom>
<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/STATO_0000102"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/IAO_0000104"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000116 xml:lang="en">TODO: axiom needs refinement</obo:IAO_0000116>
<rdfs:label xml:lang="en">ASTM grainsize</rdfs:label>
<skos:definition xml:lang="en">The ASTM grain size is a quality that is measured through a process that follows the ASTM standard.</skos:definition>
<co:PMD_0000060 rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</co:PMD_0000060>
</owl:Class>
<!-- https://w3id.org/pmd/co/PMD_0000512 -->
<owl:Class rdf:about="https://w3id.org/pmd/co/PMD_0000512">
<owl:equivalentClass>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/pmd/co/PMD_0000077"/>
<owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
<owl:onClass rdf:resource="https://w3id.org/pmd/co/PMD_0020116"/>
</owl:Restriction>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/co/PMD_0020131"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/pmd/co/PMD_0000077"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/pmd/co/PMD_0020116"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">aggregate state</rdfs:label>
<skos:definition xml:lang="en">an intensive quality representing the physical state of a material, such as solid, liquid, or gasous</skos:definition>
<co:PMD_0000060 rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</co:PMD_0000060>
</owl:Class>
<!-- https://w3id.org/pmd/co/PMD_0000538 -->
<owl:Class rdf:about="https://w3id.org/pmd/co/PMD_0000538">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000024"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:allValuesFrom>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000027"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000030"/>
</owl:unionOf>
</owl:Class>
</owl:allValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<owl:disjointWith rdf:resource="https://w3id.org/pmd/co/PMD_0000965"/>
<rdfs:label xml:lang="en">bulk</rdfs:label>
<skos:definition xml:lang="en">The bulk is a fiat object part that describes the volume or mass of material considered as a whole, often in contrast to surface or interface phenomena.</skos:definition>
<co:PMD_0000060 rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</co:PMD_0000060>
</owl:Class>
<!-- https://w3id.org/pmd/co/PMD_0000551 -->
<owl:Class rdf:about="https://w3id.org/pmd/co/PMD_0000551">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/co/PMD_0025001"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/pmd/co/PMD_0000004"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/pmd/co/PMD_0025002"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">See the editor note of composition to understand the difference between composition and chemical composition.
See the pattern example of composition to underatand the difference between composition and proportion.</rdfs:comment>
<rdfs:label xml:lang="en">chemical composition</rdfs:label>
<skos:definition xml:lang="en">The chemical composition is an intensive quality of a portion of matter which describes the types and proportions of pure chemical elements in the portion of matter, and it is a subject of some chemical composition data item.</skos:definition>
<co:PMD_0000060 rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</co:PMD_0000060>
<co:PMD_0000064 xml:lang="en">Material has quality chemical composition. Chemical composition is a subject of chemical composition data item. Chemical composition data item has members fraction value specifications (which have a numeral and a unit). Material has part portion of carbon. Material has relational quality mass proportion. Portion of carbon has relational quality mass proportion. Mass propotion is specified by value fraction value specification. Same approach for all chemical elements.</co:PMD_0000064>
</owl:Class>
<!-- https://w3id.org/pmd/co/PMD_0000553 -->
<owl:Class rdf:about="https://w3id.org/pmd/co/PMD_0000553">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/co/PMD_0020148"/>
<rdfs:label xml:lang="en">chemical potential</rdfs:label>
<skos:definition xml:lang="en">The chemical potential is a thermodynamic quality describing the energy change associated with the addition of a small quantity of a substance to a system at constant temperature and pressure.</skos:definition>
<co:PMD_0000060 rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</co:PMD_0000060>
</owl:Class>
<!-- https://w3id.org/pmd/co/PMD_0000583 -->
<owl:Class rdf:about="https://w3id.org/pmd/co/PMD_0000583">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/COB_0000035"/>
<rdfs:subClassOf>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/OBI_0000293"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/OBI_0000299"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</rdfs:subClassOf>
<obo:IAO_0000116 xml:lang="en">The subclass trees of "Computing Process" are currently still proposals and serve as a working basis for the discussion round with the simulation/workflow domain experts.</obo:IAO_0000116>
<rdfs:label xml:lang="de">Datenverarbeitung</rdfs:label>
<rdfs:label xml:lang="de">Rechenprozess</rdfs:label>
<rdfs:label xml:lang="en">computing process</rdfs:label>
<skos:definition xml:lang="en">A process that involves the systematic use of computational methods and tools to perform simulations, analyses, or data transformations to achieve specific scientific or engineering goals.</skos:definition>
<skos:definition xml:lang="de">Ein Prozess, der die systematische Verwendung von rechnerischen Methoden und Werkzeugen umfasst, um Simulationen, Analysen oder Datenumwandlungen durchzuführen, um spezifische wissenschaftliche oder technische Ziele zu erreichen.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/co/PMD_0000591 -->
<owl:Class rdf:about="https://w3id.org/pmd/co/PMD_0000591">
<owl:equivalentClass>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/pmd/co/PMD_0000077"/>