forked from materialdigital/core-ontology
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpmd_core.ttl
3232 lines (2589 loc) · 220 KB
/
pmd_core.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
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
@prefix : <https://w3id.org/pmd/co/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@base <https://w3id.org/pmd/co/> .
<https://w3id.org/pmd/co> rdf:type owl:Ontology ;
owl:versionIRI <https://w3id.org/pmd/co/2.0.7> ;
owl:imports <http://www.w3.org/ns/prov-o-inverses-20130430> ;
<http://purl.org/dc/elements/1.1/creator> <https://orcid.org/0000-0001-7192-7143> ,
<https://orcid.org/0000-0002-3717-7104> ,
<https://orcid.org/0000-0002-7094-5371> ,
<https://orcid.org/0000-0002-9014-2920> ,
<https://orcid.org/0000-0003-1649-6832> ,
<https://orcid.org/0000-0003-4971-3645> ,
<https://orcid.org/0009-0000-6469-744X> ,
"Jannis Grundmann" ;
<http://purl.org/dc/terms/bibliographicCitation> "Bernd Bayerlein, Henk Birkholz, Sascha Fliegener, Jannis Grundmann, Thomas Hanke, Philipp von Hartrott, Markus Schilling, Jörg Waitelonis. (December 8th, 2023) PMDco: platform material digital ontology. Version 2.0.7, https://w3id.org/pmd/co/" ;
<http://purl.org/dc/terms/created> "2023-12-08" ;
<http://purl.org/dc/terms/license> <http://creativecommons.org/licenses/by/4.0/> ;
<http://purl.org/dc/terms/title> "Platform Material Digital Core Ontology (PMDco)"@en ;
rdfs:comment "The PMD Core Ontology (PMDco) is a comprehensive framework for representing knowledge that encompasses fundamental concepts from the domains of materials science and engineering (MSE). The PMDco has been designed as a mid-level ontology to establish a connection between specific MSE application ontologies and the domain neutral concepts found in established top-level ontologies. The primary goal of the PMDco is to promote interoperability between diverse domains. PMDco's class structure is both understandable and extensible, making it an efficient tool for organizing MSE knowledge. It serves as a semantic intermediate layer that unifies MSE knowledge representations, enabling data and metadata to be systematically integrated on key terms within the MSE domain. With PMDco, it is possible to seamlessly trace data generation. The design of PMDco is based on the W3C Provenance Ontology (PROV-O), which provides a standard framework for capturing the generation, derivation, and attribution of resources. By building on this foundation, PMDco facilitates the integration of data from various sources and the creation of complex workflows. In summary, PMDco is a valuable tool for researchers and practitioners in the MSE domains. It provides a common language for representing and sharing knowledge, allowing for efficient collaboration and promoting interoperability between diverse domains. Its design allows for the systematic integration of data and metadata, enabling seamless traceability of data generation. Overall, PMDco is a crucial step towards a unified and comprehensive understanding of the MSE domain. PMDco at GitHub: https://github.com/materialdigital/core-ontology"@en ;
owl:versionInfo "2.0.7" .
#################################################################
# Annotation properties
#################################################################
### http://purl.obolibrary.org/obo/IAO_0000111
<http://purl.obolibrary.org/obo/IAO_0000111> rdf:type owl:AnnotationProperty ;
<http://purl.obolibrary.org/obo/IAO_0000114> <http://purl.obolibrary.org/obo/IAO_0000122> ;
<http://purl.obolibrary.org/obo/IAO_0000115> "The concise, meaningful, and human-friendly name for a class or property preferred by the ontology developers. (US-English)"@en ;
rdfs:isDefinedBy <http://purl.obolibrary.org/obo/iao.owl> ;
rdfs:label "editor preferred term"@en .
### http://purl.obolibrary.org/obo/IAO_0000114
<http://purl.obolibrary.org/obo/IAO_0000114> rdf:type owl:AnnotationProperty ;
<http://purl.obolibrary.org/obo/IAO_0000111> "has curation status"@en ;
rdfs:label "has curation status"@en .
### http://purl.obolibrary.org/obo/IAO_0000115
<http://purl.obolibrary.org/obo/IAO_0000115> rdf:type owl:AnnotationProperty ;
<http://purl.obolibrary.org/obo/IAO_0000114> <http://purl.obolibrary.org/obo/IAO_0000122> ;
<http://purl.obolibrary.org/obo/IAO_0000115> "The official definition, explaining the meaning of a class or property. Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions."@en ;
rdfs:isDefinedBy <http://purl.obolibrary.org/obo/iao.owl> ;
rdfs:label "definition"@en .
### http://purl.obolibrary.org/obo/IAO_0000116
<http://purl.obolibrary.org/obo/IAO_0000116> rdf:type owl:AnnotationProperty ;
<http://purl.obolibrary.org/obo/IAO_0000114> <http://purl.obolibrary.org/obo/IAO_0000122> ;
<http://purl.obolibrary.org/obo/IAO_0000115> "An administrative note intended for its editor. It may not be included in the publication version of the ontology, so it should contain nothing necessary for end users to understand the ontology."@en ;
rdfs:isDefinedBy <http://purl.obolibrary.org/obo/iao.owl> ;
rdfs:label "editor note"@en .
### http://purl.obolibrary.org/obo/IAO_0000117
<http://purl.obolibrary.org/obo/IAO_0000117> rdf:type owl:AnnotationProperty ;
<http://purl.obolibrary.org/obo/IAO_0000114> <http://purl.obolibrary.org/obo/IAO_0000122> ;
<http://purl.obolibrary.org/obo/IAO_0000115> "Name of editor entering the term in the file. The term editor is a point of contact for information regarding the term. The term editor may be, but is not always, the author of the definition, which may have been worked upon by several people"@en ;
rdfs:isDefinedBy <http://purl.obolibrary.org/obo/iao.owl> ;
rdfs:label "term editor"@en .
### http://purl.obolibrary.org/obo/IAO_0000119
<http://purl.obolibrary.org/obo/IAO_0000119> rdf:type owl:AnnotationProperty ;
<http://purl.obolibrary.org/obo/IAO_0000114> <http://purl.obolibrary.org/obo/IAO_0000122> ;
<http://purl.obolibrary.org/obo/IAO_0000115> "Formal citation, e.g. identifier in external database to indicate / attribute source(s) for the definition. Free text indicate / attribute source(s) for the definition. EXAMPLE: Author Name, URI, MeSH Term C04, PUBMED ID, Wiki uri on 31.01.2007"@en ;
rdfs:isDefinedBy <http://purl.obolibrary.org/obo/iao.owl> ;
rdfs:label "definition source"@en .
### http://purl.org/dc/elements/1.1/creator
<http://purl.org/dc/elements/1.1/creator> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/license
<http://purl.org/dc/elements/1.1/license> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/title
<http://purl.org/dc/elements/1.1/title> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/bibliographicCitation
<http://purl.org/dc/terms/bibliographicCitation> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/created
<http://purl.org/dc/terms/created> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/license
<http://purl.org/dc/terms/license> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/title
<http://purl.org/dc/terms/title> rdf:type owl:AnnotationProperty .
### http://swrl.stanford.edu/ontologies/3.3/swrla.owl#isRuleEnabled
<http://swrl.stanford.edu/ontologies/3.3/swrla.owl#isRuleEnabled> rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#altLabel
<http://www.w3.org/2004/02/skos/core#altLabel> rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#definition
<http://www.w3.org/2004/02/skos/core#definition> rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#example
<http://www.w3.org/2004/02/skos/core#example> rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#prefLabel
<http://www.w3.org/2004/02/skos/core#prefLabel> rdf:type owl:AnnotationProperty .
### http://www.w3.org/ns/prov#constraints
<http://www.w3.org/ns/prov#constraints> rdf:type owl:AnnotationProperty .
### http://www.w3.org/ns/prov#editorialNote
<http://www.w3.org/ns/prov#editorialNote> rdf:type owl:AnnotationProperty .
### https://w3id.org/pmd/co/abbreviation
:abbreviation rdf:type owl:AnnotationProperty ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:subPropertyOf <http://www.w3.org/2004/02/skos/core#altLabel> .
### https://w3id.org/pmd/co/definitionSource
:definitionSource rdf:type owl:AnnotationProperty ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
<http://www.w3.org/2004/02/skos/core#definition> "Indicates the source of the definition."@en .
### https://w3id.org/pmd/co/symbol
:symbol rdf:type owl:AnnotationProperty ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:subPropertyOf <http://www.w3.org/2004/02/skos/core#altLabel> .
#################################################################
# Object Properties
#################################################################
### http://purl.obolibrary.org/obo/RO_0000087
<http://purl.obolibrary.org/obo/RO_0000087> rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.w3.org/ns/prov#Agent> ;
rdfs:range <http://www.w3.org/ns/prov#Role> ;
rdfs:label "has role"@en .
### http://purl.org/dc/terms/isPartOf
<http://purl.org/dc/terms/isPartOf> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty .
### http://purl.org/spar/datacite/hasIdentifier
<http://purl.org/spar/datacite/hasIdentifier> rdf:type owl:ObjectProperty ;
rdfs:range <http://purl.org/spar/datacite/Identifier> .
### http://www.w3.org/ns/oa#hasSelector
<http://www.w3.org/ns/oa#hasSelector> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:isDefinedBy <http://www.w3.org/ns/oa#> .
### http://www.w3.org/ns/oa#hasSource
<http://www.w3.org/ns/oa#hasSource> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:isDefinedBy <http://www.w3.org/ns/oa#> .
### http://www.w3.org/ns/prov#generated
<http://www.w3.org/ns/prov#generated> rdf:type owl:ObjectProperty .
### http://www.w3.org/ns/prov#used
<http://www.w3.org/ns/prov#used> rdf:type owl:ObjectProperty .
### http://www.w3.org/ns/prov#wasAssociatedWith
<http://www.w3.org/ns/prov#wasAssociatedWith> rdf:type owl:ObjectProperty .
### http://www.w3.org/ns/prov#wasDerivedFrom
<http://www.w3.org/ns/prov#wasDerivedFrom> rdf:type owl:ObjectProperty .
### http://www.w3.org/ns/prov#wasInformedBy
<http://www.w3.org/ns/prov#wasInformedBy> rdf:type owl:ObjectProperty .
### http://www.w3.org/ns/prov#wasUsedBy
<http://www.w3.org/ns/prov#wasUsedBy> rdf:type owl:ObjectProperty .
### https://w3id.org/pmd/co/belongsToProject
:belongsToProject rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://www.w3.org/ns/prov#wasInformedBy> ;
owl:inverseOf :process ;
rdfs:domain :Process ;
rdfs:range :Project ;
<http://www.w3.org/2004/02/skos/core#definition> "Association between a process and a project."@en ,
"belongs to process"@en .
### https://w3id.org/pmd/co/characteristic
:characteristic rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
owl:inverseOf :characteristicOf ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( :DigitalEntity
:Object
:Process
:ProcessingNode
:Project
:ValueObject
)
] ;
rdfs:range :ValueObject ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "characteristic"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "has characteristic"@en ;
<http://www.w3.org/2004/02/skos/core#definition> "Die Objekteigenschaft characterisitc, wird in Verbindung mit ProzessKnoten, Prozess und Objekt verwendet und dient zur Herstellung einer Verbindung mit dem WerteObjekt. Diese Eigenschaft ermöglicht die Abbildung von Beziehungen zwischen ProzessKnoten, Prozessen und Objekten und den dazugehörigen Werten oder Attributen (Metadaten), die in WerteObjekt ausgedrückt sind."@de ,
"The object property characteristic, in conjunction with ProcessingNode, Process and Object, is used to establish a connection with ValueObjects. This property enables the representation of relationships between ProcessingNodes, Processes and Objects and the associated values or attributes (metadata) that are stored in ValueObjects."@en .
### https://w3id.org/pmd/co/characteristicOf
:characteristicOf rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "characteristic of"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "is characteristic of" .
### https://w3id.org/pmd/co/component
:component rdf:type owl:ObjectProperty ;
rdfs:domain :ProcessingNode ;
rdfs:range [ rdf:type owl:Class ;
owl:unionOf ( :Component
:ProcessingNode
)
] ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "component"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "has component"@en ;
<http://www.w3.org/2004/02/skos/core#definition> "Die Objekt-Eigenschaft Komponente, die in Verbindung mit ProzessKnoten und seinen (modularen) Elementen verwendet wird. Sie ermöglicht die Darstellung der einzelnen, unterschiedlichen Teile von ProzessKnoten. Im Wesentlichen ist die \"Komponenten-Eigenschaft\" eine Möglichkeit, ein komplexes System in überschaubare und eindeutige Teile zu zerlegen, um die Rolle der einzelnen Teile innerhalb des Gesamtsystems zu verstehen und zu verwalten."@de ,
"The object property component, which is used in connection with ProcessingNode and its (modular) elements. It enables the representation of the individual, different parts of processing nodes. Essentially, the 'component property' is a way of breaking down a complex system into manageable and distinct parts in order to understand and manage the role of each part within the overall system."@en .
### https://w3id.org/pmd/co/composedOf
:composedOf rdf:type owl:ObjectProperty ;
owl:inverseOf :composes ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "composed of"@en ;
<http://www.w3.org/2004/02/skos/core#definition> """This property is used to describe the fact that and which objects are composed of other objects, i.e. it is used to describe the specific constituents or ingredients that form a particular entity or object.
As a prepositional phrase, it indicates the elements, parts, or components that make up a whole."""@en ,
"This property is used to describe which voxels and materials an object is composed of."@en .
### https://w3id.org/pmd/co/composes
:composes rdf:type owl:ObjectProperty ;
rdfs:domain :Object ;
rdfs:range :Object ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "composes"@en ;
<http://www.w3.org/2004/02/skos/core#definition> """Diese Eigenschaft wird verwendet, um die Tatsache zu beschreiben, dass und welche Objekte andere Objekte zusammensetzen, d. h. sie wird verwendet, um die spezifischen Bestandteile oder Zutaten zu beschreiben, aus denen ein bestimmtes Gebilde oder Objekt besteht.
Als Präpositionalphrase bezeichnet sie die Elemente, Teile oder Komponenten, aus denen sich ein anderes Objekt zusammensetzt."""@de ,
"""This property is used to describe the fact that and which objects compose other objects, i.e. it is used to describe the specific constituents or ingredients forming a particular entity or object.
As a prepositional phrase, it indicates the elements, parts, or components that make up a whole of another object."""@en ,
"This property is used to describe which objects a voxel or a material contributes to compose."@en .
### https://w3id.org/pmd/co/executedBy
:executedBy rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://www.w3.org/ns/prov#wasAssociatedWith> ;
owl:inverseOf :executes ;
rdfs:domain :Process ;
rdfs:range :ProcessingNode ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "executed by"@en ;
<http://www.w3.org/2004/02/skos/core#definition> "This property represents which process is executed by which process node."@en .
### https://w3id.org/pmd/co/executes
:executes rdf:type owl:ObjectProperty ;
rdfs:domain :ProcessingNode ;
rdfs:range :Process ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "executes"@en ;
<http://www.w3.org/2004/02/skos/core#definition> "This property represents which ProcessingNode executes a Process."@en .
### https://w3id.org/pmd/co/hasFunction
:hasFunction rdf:type owl:ObjectProperty .
### https://w3id.org/pmd/co/input
:input rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://www.w3.org/ns/prov#used> ,
:participant ;
owl:inverseOf :inputOf ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "input"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "has input" ;
<http://www.w3.org/2004/02/skos/core#definition> "This property is used to link the processes to their input objects."@en .
### https://w3id.org/pmd/co/inputOf
:inputOf rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://www.w3.org/ns/prov#wasUsedBy> ,
:participantOf ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "input of"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "is input of" .
### https://w3id.org/pmd/co/isResourceOf
:isResourceOf rdf:type owl:ObjectProperty ;
owl:inverseOf :resource ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "is resource of" .
### https://w3id.org/pmd/co/nextProcess
:nextProcess rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://www.w3.org/ns/prov#wasInformedBy> ;
owl:inverseOf :previousProcess ;
rdfs:domain :Process ;
rdfs:range :Process ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "next process"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "has next process"@en ;
<http://www.w3.org/2004/02/skos/core#definition> "This property is used to indicate the process that was run after the current process."@en .
### https://w3id.org/pmd/co/output
:output rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://www.w3.org/ns/prov#generated> ,
:participant ;
owl:inverseOf :outputOf ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "output"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "has output" ;
<http://www.w3.org/2004/02/skos/core#definition> "This property is used to link the processes to their output objects"@en .
### https://w3id.org/pmd/co/outputOf
:outputOf rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :participantOf ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "output of"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "is output of"@en .
### https://w3id.org/pmd/co/participant
:participant rdf:type owl:ObjectProperty ;
owl:inverseOf :participantOf ;
rdfs:domain :Process ;
rdfs:range [ rdf:type owl:Class ;
owl:unionOf ( :DigitalEntity
:Object
:ValueObject
)
] ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "participant"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "has participant" ;
<http://www.w3.org/2004/02/skos/core#definition> "A relation between a process and an object, in which the objects is somehow involved in the process."@en .
### https://w3id.org/pmd/co/participantOf
:participantOf rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "participant of"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "is participant of"@en .
### https://w3id.org/pmd/co/previousProcess
:previousProcess rdf:type owl:ObjectProperty ;
rdfs:domain :Process ;
rdfs:range :Process ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "previous process"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "has previous process" ;
<http://www.w3.org/2004/02/skos/core#definition> "This property is used to indicate that which process was previously run."@en .
### https://w3id.org/pmd/co/process
:process rdf:type owl:ObjectProperty ;
rdfs:domain :Project ;
rdfs:range :Process ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "process"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "has process"@en ;
<http://www.w3.org/2004/02/skos/core#definition> "Describes that a process is associated with a project."@en .
### https://w3id.org/pmd/co/relatesTo
:relatesTo rdf:type owl:ObjectProperty ;
rdfs:domain :ValueObject ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "relates to"@en ;
<http://www.w3.org/2004/02/skos/core#definition> "Describes a general relationship between domain objects."@en .
### https://w3id.org/pmd/co/relatesToElement
:relatesToElement rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :relatesTo ;
rdfs:domain :ChemicalObject ;
rdfs:range <http://purl.obolibrary.org/obo/CHEBI_24431> ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "relates to element"@en .
### https://w3id.org/pmd/co/resource
:resource rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :ValueObject ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "resource"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "has resource"@en .
### https://w3id.org/pmd/co/state
:state rdf:type owl:ObjectProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( :Specimen
:TestPiece
)
] ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "state"@en .
### https://w3id.org/pmd/co/subordinateProcess
:subordinateProcess rdf:type owl:ObjectProperty ;
owl:inverseOf :superordinateProcess ;
rdfs:domain :Process ;
rdfs:range :Process ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "subordinate process"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "has subordinate process" ;
<http://www.w3.org/2004/02/skos/core#definition> "This property is used to link a process to its subordinate processes."@en .
### https://w3id.org/pmd/co/superordinateProcess
:superordinateProcess rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "superordinate process"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "has superordinate process"@en ;
<http://www.w3.org/2004/02/skos/core#definition> "This property is used to link a process to its super ordinated processes."@en .
### https://w3id.org/pmd/co/unit
:unit rdf:type owl:ObjectProperty ;
rdfs:domain :ValueObject ;
rdfs:comment "Examples for rdsf:range are units from qudt or wikidata or own defindes units." ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "unit"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "has unit"@en ;
<http://www.w3.org/2004/02/skos/core#definition> "Unit of measurement."@en .
#################################################################
# Data properties
#################################################################
### https://w3id.org/pmd/co/fragmentPath
:fragmentPath rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf owl:topDataProperty ;
rdfs:label "fragment path"@en ;
<http://www.w3.org/2004/02/skos/core#definition> "A path expression that addresses a specific element in a document."@en .
### https://w3id.org/pmd/co/fromValue
:fromValue rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :value ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "from value"@en ;
<http://www.w3.org/2004/02/skos/core#definition> "refers to the begin of a value range" .
### https://w3id.org/pmd/co/jsonPath
:jsonPath rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :fragmentPath ;
rdfs:label "json path"@en ;
<http://www.w3.org/2004/02/skos/core#definition> "A path expression that allows the elements of a JSON document to be specifically addressed."@en .
### https://w3id.org/pmd/co/maxValue
:maxValue rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :value ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "max value"@en ;
<http://www.w3.org/2004/02/skos/core#definition> "refers to all values equal or smaller than the given one"@en .
### https://w3id.org/pmd/co/minValue
:minValue rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :value ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "min value"@en ;
<http://www.w3.org/2004/02/skos/core#definition> "refers to all values equal or larger than the given one"@en .
### https://w3id.org/pmd/co/toValue
:toValue rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :value ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "to value"@en ;
<http://www.w3.org/2004/02/skos/core#definition> "refers to the end of a value range" .
### https://w3id.org/pmd/co/value
:value rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf owl:topDataProperty ;
rdfs:domain :ValueObject ;
rdfs:range rdfs:Literal ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "hat Wert"@de ,
"value"@en ;
<http://www.w3.org/2004/02/skos/core#definition> "Provides the actual value a value object is referring to."@en .
### https://w3id.org/pmd/co/xPath
:xPath rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :fragmentPath ;
rdfs:label "x path"@en ;
<http://www.w3.org/2004/02/skos/core#definition> "A non-XML-based path expression that allows the elements of an XML document to be specifically addressed."@en .
#################################################################
# Classes
#################################################################
### http://purl.obolibrary.org/obo/CHEBI_24431
<http://purl.obolibrary.org/obo/CHEBI_24431> rdf:type owl:Class ;
rdfs:label "Chemical Entity"@en ;
:definitionSource "ChEBI ontology https://www.ebi.ac.uk/chebi/searchId.do?chebiId=CHEBI:24431#"@en .
### http://purl.obolibrary.org/obo/IAO_0000078
<http://purl.obolibrary.org/obo/IAO_0000078> rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Class ;
owl:oneOf ( <http://purl.obolibrary.org/obo/IAO_0000002>
<http://purl.obolibrary.org/obo/IAO_0000120>
<http://purl.obolibrary.org/obo/IAO_0000121>
<http://purl.obolibrary.org/obo/IAO_0000122>
<http://purl.obolibrary.org/obo/IAO_0000123>
<http://purl.obolibrary.org/obo/IAO_0000124>
<http://purl.obolibrary.org/obo/IAO_0000125>
<http://purl.obolibrary.org/obo/IAO_0000423>
<http://purl.obolibrary.org/obo/IAO_0000428>
)
] ;
<http://purl.obolibrary.org/obo/IAO_0000111> "curation status specification"@en ;
<http://purl.obolibrary.org/obo/IAO_0000114> <http://purl.obolibrary.org/obo/IAO_0000125> ;
<http://purl.obolibrary.org/obo/IAO_0000115> "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."@en ;
rdfs:label "curation status specification"@en .
### http://purl.org/spar/datacite/Identifier
<http://purl.org/spar/datacite/Identifier> rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( :DataCiteMetadata
:ValueObject
[ rdf:type owl:Restriction ;
owl:onProperty [ owl:inverseOf <http://purl.org/spar/datacite/hasIdentifier>
] ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:unionOf ( :Project
:ValueObject
)
]
]
) ;
rdf:type owl:Class
] ;
rdfs:isDefinedBy <http://purl.org/spar/datacite> ;
rdfs:label "DataCite Identifier"@en .
### http://qudt.org/schema/qudt/Unit
<http://qudt.org/schema/qudt/Unit> rdf:type owl:Class ;
rdfs:isDefinedBy <http://qudt.org/schema/qudt> .
### http://w3id.org/DMI/DigitalMaterialIdentifier
<http://w3id.org/DMI/DigitalMaterialIdentifier> rdf:type owl:Class ;
rdfs:label "Digital Material Identifier"@de ,
"Digital Material Identifier"@en ;
<http://www.w3.org/2004/02/skos/core#definition> "A dmi:DigitalMaterialIdentifier is a resource identifier (IRI) that represents the specification of a material (in the sense of a material class) described in a specification document. The specification document can be, e.g., a standard, a datasheet, or any other citable document. Typically, a specification document requires some qualities that a material (in the sense of a portion of matter) has to comply with. Typical requirements include chemical compositions or physical properties."@en .
### http://www.w3.org/ns/oa#FragmentSelector
<http://www.w3.org/ns/oa#FragmentSelector> rdf:type owl:Class ;
rdfs:label "Fragment Selector"@en ;
<http://www.w3.org/2004/02/skos/core#example> <http://www.w3.org/ns/oa#> .
### http://www.w3.org/ns/prov#Activity
<http://www.w3.org/ns/prov#Activity> rdf:type owl:Class .
### http://www.w3.org/ns/prov#Agent
<http://www.w3.org/ns/prov#Agent> rdf:type owl:Class .
### http://www.w3.org/ns/prov#Entity
<http://www.w3.org/ns/prov#Entity> rdf:type owl:Class .
### http://www.w3.org/ns/prov#Organization
<http://www.w3.org/ns/prov#Organization> rdf:type owl:Class .
### http://www.w3.org/ns/prov#Person
<http://www.w3.org/ns/prov#Person> rdf:type owl:Class .
### http://www.w3.org/ns/prov#Role
<http://www.w3.org/ns/prov#Role> rdf:type owl:Class .
### https://w3id.org/pmd/co/AccreditationDocument
:AccreditationDocument rdf:type owl:Class ;
rdfs:subClassOf :Document ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "Accreditation Document"@en ,
"Akkreditierungsdokument"@de ;
<http://www.w3.org/2004/02/skos/core#definition> "Diese Entität beschreibt ein Dokument, welches aussagt, dass einer Organisation, Person oder Einrichtung eine offizielle Konformität mit einer Norm anerkannt wurde. Dies kann z. B. Prozesse, Ausrüstungen oder ganze Laboratorien umfassen."@de ,
"This entity describes a document used to state that an official authorization or approval to recognize or vouch for a conformation with a standard was granted to an organization, person, or entity. This may include, e.g., processes, (sets of) equipment, or entire laboratories."@en ;
:definitionSource "https://www.merriam-webster.com/dictionary/accreditation"@en .
### https://w3id.org/pmd/co/Acoustical
:Acoustical rdf:type owl:Class ;
rdfs:subClassOf :MaterialProperty ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "Acoustical"@en ,
"Akustisch"@de ;
<http://www.w3.org/2004/02/skos/core#definition> "Acoustical is relating to the sense or organs of hearing, to sound, or to the science of sounds. Here specifically on the acoustic properties of a material."@en ,
"Akustisch bezieht sich auf den Hörsinn oder die Hörorgane, auf Schall oder auf die Wissenschaft vom Schall. Hier spezifisch auf die akustischen Eigenschaften eines Materials."@de ;
:definitionSource "“Acoustic.” Merriam-Webster.com Dictionary, Merriam-Webster, https://www.merriam-webster.com/dictionary/acoustic. Accessed 13 Jan. 2023."@en .
### https://w3id.org/pmd/co/Address
:Address rdf:type owl:Class ;
rdfs:subClassOf :ValueObject ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "Address"@en ,
"Adresse"@de ;
<http://www.w3.org/2004/02/skos/core#definition> "A place where a person or organization may be communicated with."@en ,
"Ein Ort, an dem mit einer Person oder Organisation kommuniziert werden kann."@de ;
:definitionSource "“Address.” Merriam-Webster.com Dictionary, Merriam-Webster, https://www.merriam-webster.com/dictionary/address. Accessed 16 Jan. 2023."@en .
### https://w3id.org/pmd/co/AgingInterval
:AgingInterval rdf:type owl:Class ;
rdfs:subClassOf :AgingTime ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "Aging Interval"@en ,
"Alterungsintervall"@de ;
<http://www.w3.org/2004/02/skos/core#definition> "Timespan a Temperature during an Aging Process is hold."@en .
### https://w3id.org/pmd/co/AgingProcess
:AgingProcess rdf:type owl:Class ;
rdfs:subClassOf :Process ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "Aging Process"@en ,
"Alterungsprozess"@de ;
<http://www.w3.org/2004/02/skos/core#definition> "A process that applies a method that causes a constituent to precipitate from solid solution."@en ,
"Das Aging oder Auslagern ist ein Anlassvorgang, der den Martensit (Härtungsgefüge) wieder duktil und verformbar macht. Dabei wird ein Agingvorgang genutzt, nämlich die Bildung von Ausscheidungen in Form von FeXCY - Carbiden"@de ;
<http://www.w3.org/2004/02/skos/core#example> "The Process of austenitizing and quenching a steel alloy to achieve a martensitic microstructure for hardness increase."@en .
### https://w3id.org/pmd/co/AgingTemperature
:AgingTemperature rdf:type owl:Class ;
rdfs:subClassOf :Temperature ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "Aging Temperature"@en ,
"Alterungstemperatur"@de ;
<http://www.w3.org/2004/02/skos/core#definition> "Variable Temperature during an Aging Process depending on the desired deposition formations."@en .
### https://w3id.org/pmd/co/AgingTime
:AgingTime rdf:type owl:Class ;
rdfs:subClassOf :Time ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "Aging Time"@en ,
"Alterungszeit"@de ;
<http://www.w3.org/2004/02/skos/core#definition> "The timespan that an Aging Process executes to completion."@en .
### https://w3id.org/pmd/co/Algorithm
:Algorithm rdf:type owl:Class ;
rdfs:subClassOf :Method ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "Algorithm"@en ,
"Algorithmus"@de ;
<http://www.w3.org/2004/02/skos/core#definition> "A procedure for solving a mathematical problem (as of finding the greatest common divisor) in a finite number of steps that frequently involves repetition of an operation."@en ;
:definitionSource "“Algorithm.” Merriam-Webster.com Dictionary, Merriam-Webster, https://www.merriam-webster.com/dictionary/algorithm. Accessed 24 Nov. 2022."@en .
### https://w3id.org/pmd/co/AmorphousStructure
:AmorphousStructure rdf:type owl:Class ;
rdfs:subClassOf :MaterialStructure ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "Amorphe Struktur"@de ,
"Amorphous Structure"@en ;
<http://www.w3.org/2004/02/skos/core#definition> "Amorphe Materialien haben eine innere Struktur, die aus miteinander verbundenen Strukturblöcken besteht, die den grundlegenden Struktureinheiten in der entsprechenden kristallinen Phase der gleichen Verbindung ähnlich sein können. Anders als bei kristallinen Materialien besteht jedoch keine langfristige Ordnung. Amorphe Materialien können daher nicht durch eine bestimmte Einheitszelle definiert werden. "@de ,
"Amorphous materials have an internal structure consisting of interconnected structural blocks that can be similar to the basic structural units found in the corresponding crystalline phase of the same compound. Unlike in crystalline materials, however, no long-range order exists. Amorphous materials therefore cannot be defined by a finite unit cell. "@en ;
:definitionSource "“Amorphous solid - Structure.” Wikipedia The Free Encyclopedia, https://en.wikipedia.org/wiki/Amorphous_solid. Accessed 13 Jan. 2023."@en .
### https://w3id.org/pmd/co/AnalysingProcess
:AnalysingProcess rdf:type owl:Class ;
rdfs:subClassOf :Process ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "Analyseprozess"@de ,
"Analysing Process"@en ;
<http://www.w3.org/2004/02/skos/core#definition> "A process that is driven by the primary intent to gain new measurements."@en .
### https://w3id.org/pmd/co/Area
:Area rdf:type owl:Class ;
rdfs:subClassOf :ValueObject ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "Area"@en ,
"Fläche"@de ;
<http://www.w3.org/2004/02/skos/core#definition> "The extent or measurement of a surface."@en .
### https://w3id.org/pmd/co/AssemblingProcess
:AssemblingProcess rdf:type owl:Class ;
rdfs:subClassOf :Process ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "Assemblierungsprozess"@de ,
"Assembling Process"@en ;
<http://www.w3.org/2004/02/skos/core#definition> "A process to mount or demount a component."@en .
### https://w3id.org/pmd/co/BaseFraction
:BaseFraction rdf:type owl:Class ;
rdfs:subClassOf :Fraction ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "Base fraction"@en ,
"Basisanteil"@de ;
<http://www.w3.org/2004/02/skos/core#definition> "The assumed base material of the objects or the remainder of the composition, e.g. for nickel-based alloy, iron-based alloy."@en .
### https://w3id.org/pmd/co/BaseMaterial
:BaseMaterial rdf:type owl:Class ;
rdfs:subClassOf :EngineeredMaterial ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "Ausgangsmaterial"@de ,
"Base Material"@en ;
<http://www.w3.org/2004/02/skos/core#definition> "This entity is used to describe the material that was taken as granted as such and used in the beginning of a process chain under consideration."@en .
### https://w3id.org/pmd/co/Biological
:Biological rdf:type owl:Class ;
rdfs:subClassOf :MaterialProperty ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "Biological"@en ,
"Biologisch"@de ;
<http://www.w3.org/2004/02/skos/core#definition> "Biological is relating to biology or to life and living processes. Here specifically to the biological properties of a material."@en ,
"Biologisch bezieht sich auf die Biologie oder auf das Leben und lebende Prozesse. Hier speziell auf die biologischen Eigenschaften eines Materials."@de ;
:definitionSource "“Biological.” Merriam-Webster.com Dictionary, Merriam-Webster, https://www.merriam-webster.com/dictionary/biological. Accessed 13 Jan. 2023."@en .
### https://w3id.org/pmd/co/Blank
:Blank rdf:type owl:Class ;
rdfs:subClassOf :EngineeredMaterial ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "Blank"@en ,
"Rohling"@de ;
<http://www.w3.org/2004/02/skos/core#definition> "A piece of material prepared to be made into something by a further operation."@en ;
:definitionSource "“Blank.” Merriam-Webster.com Dictionary, Merriam-Webster, https://www.merriam-webster.com/dictionary/blank. Accessed 25 Nov. 2022."@en .
### https://w3id.org/pmd/co/BondingType
:BondingType rdf:type owl:Class ;
rdfs:subClassOf :MaterialRelated ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "Bindungstyp"@de ,
"BondingType"@en ;
<http://www.w3.org/2004/02/skos/core#definition> "Any of several forces, especially the ionic bond, covalent bond, and metallic bond, by which atoms or ions are bound in a molecule or crystal."@en ,
"Eine von mehreren Bindungen, insbesondere die Ionenbindung, die kovalente Bindung und die Metallbindung, durch die Atome oder Ionen in einem Molekül oder Kristall gebunden sind."@de ;
:definitionSource "\"Bond types.” American Heritage® Dictionary of the English Language, Fifth Edition, https://www.thefreedictionary.com/Bond+Types. Accessed 13 Jan. 2023."@en .
### https://w3id.org/pmd/co/CalibrationDocument
:CalibrationDocument rdf:type owl:Class ;
rdfs:subClassOf :Document ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "Calibration Document"@en ,
"Kalibrierschein"@de ,
"Kalibrierungsdokument"@de ;
<http://www.w3.org/2004/02/skos/core#definition> "Diese Entität beschreibt ein Dokument, welches Abweichungen eines Messgerätes oder einer Maßverkörperung gegenüber einem anderen Gerät oder einer anderen Maßverkörperung feststellt und dokumentiert. Typischerweise ist die Person, welche die Kalibrierung durchführte, angegeben."@de ,
"This entity describes a document used to state that a set of graduations to indicate values or positions has been performed. Typically, the calibration operator is included."@en ;
:definitionSource "https://www.merriam-webster.com/dictionary/calibration"@en .
### https://w3id.org/pmd/co/CalibrationRange
:CalibrationRange rdf:type owl:Class ;
rdfs:subClassOf :ValueObject ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "Calibration range"@en ,
"Kalibrierbereich"@de ;
<http://www.w3.org/2004/02/skos/core#definition> "Diese Eigenschaft beschreibt den Bereich zwischen den Grenzen, innerhalb derer eine Größe gemessen, empfangen oder übertragen wird (typischerweise von einem Prozessknoten, z. B. einer Maschine), ausgedrückt durch die Angabe des unteren und oberen Bereichswertes."@de ,
"This property describes the region between the limits within which a quantity is measured, received or transmitted (typically by a process node, e.g. a machine), expressed by stating the lower and upper range values."@en .
### https://w3id.org/pmd/co/Caliper
:Caliper rdf:type owl:Class ;
rdfs:subClassOf :MeasuringDevice ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "Caliper"@en ,
"Messschieber"@de ;
<http://www.w3.org/2004/02/skos/core#definition> "any of various measuring instruments having two usually adjustable arms, legs, or jaws used especially to measure the dimensions of objects, such as diameters or thicknesses"@en ,
"ein Messgerät mit zwei in der Regel verstellbaren Armen, Schenkeln oder Klemmbacken, das vor allem zur Messung der Abmessungen von Gegenständen, wie z. B. des Durchmessers oder der Dicke, verwendet wird"@de ;
:definitionSource "https://www.merriam-webster.com/dictionary/caliper"@en .
### https://w3id.org/pmd/co/Chemical
:Chemical rdf:type owl:Class ;
rdfs:subClassOf :MaterialProperty ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "Chemical"@en ,
"Chemisch"@de ;
<http://www.w3.org/2004/02/skos/core#definition> "Chemical is relating to, used in, or produced by chemistry or the phenomena of chemistry Here specifically to the chemical properties of a material."@en ,
"Chemisch ist ein Begriff, der sich auf die Chemie oder die chemischen Phänomene bezieht, in der Chemie verwendet wird oder durch sie erzeugt wird. Hier geht es speziell um die chemischen Eigenschaften eines Materials."@de ;
:definitionSource "“Chemical.” Merriam-Webster.com Dictionary, Merriam-Webster, https://www.merriam-webster.com/dictionary/chemical. Accessed 13 Jan. 2023."@en .
### https://w3id.org/pmd/co/ChemicalComposition
:ChemicalComposition rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty [ owl:inverseOf <http://purl.org/dc/terms/isPartOf>
] ;
owl:someValuesFrom :ChemicalObject
] ;
rdfs:subClassOf :ValueObject ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "Chemical Composition"@en ,
"Chemische Zusammensetzung"@de ;
<http://www.w3.org/2004/02/skos/core#definition> "Chemical composition refers to the arrangement, type, and ratio of atoms in molecules of chemical substances. Chemical composition varies when chemicals are added or subtracted from a substance, when the ratio of substances changes, or when other chemical changes occur in chemicals."@en ;
<http://www.w3.org/2004/02/skos/core#example> """ex:proc1 a pmd:Process .
ex:proc1 pmd:chacteristic ex:vo1 .
ex:vo1 a ValueObject .
ex:vo1 pmd:resource ex:chemComp1 .
ex:chemComp1 a pmd:ChemicalComposition .
ex:vo2 dcterm:partOf ex:chemComp1 .
ex:vo2 a pmd:ChemicalElement .
ex:vo2 pmd:relatesToElement CHEBI:28984 .
ex:vo2 pmd:relatesTo ex:vo3 .
pmd:MassFraction rdf:subClassOf ValueObject .
ex:vo3 a pmd:MassFraction .
ex:vo3 qudt:upperBound \"0.3\" .
ex:vo3 qudt:lowerBound \"0\" .
ex:vo3 qudt:unit qudt:PERCENT .
ex:vo4 a pmd:MassFraction .
ex:vo4 pmd:resource pmd:NotDetected .""" ;
:definitionSource "https://chem.libretexts.org/Courses/College_of_Marin/CHEM_114%3A_Introductory_Chemistry/06%3A_Chemical_Composition" .
### https://w3id.org/pmd/co/ChemicalObject
:ChemicalObject rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( :ValueObject
[ rdf:type owl:Restriction ;
owl:onProperty :relatesTo ;
owl:someValuesFrom <http://purl.obolibrary.org/obo/CHEBI_24431>
]
) ;
rdf:type owl:Class
] ;
rdfs:subClassOf :ValueObject ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "Chemical Object"@en ,
"Chemisches Objekt"@de ;
<http://www.w3.org/2004/02/skos/core#definition> "Value object that describes the quantity (e.g. mass fraction) of a specific chemical object."@en .
### https://w3id.org/pmd/co/Circular
:Circular rdf:type owl:Class ;
rdfs:subClassOf :Shape ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "Circular"@en ,
"Kreisförmig"@de ;
<http://www.w3.org/2004/02/skos/core#definition> "Geformt wie ein Kreis."@de ,
"Having the form of a circle."@en ;
:definitionSource "“Circular.” Merriam-Webster.com Dictionary, Merriam-Webster, https://www.merriam-webster.com/dictionary/circular. Accessed 13 Jan. 2023."@en .
### https://w3id.org/pmd/co/ClampingPressure
:ClampingPressure rdf:type owl:Class ;
rdfs:subClassOf :Stress ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "Clamping Pressure"@en ,
"Klemmdruck"@de ;
<http://www.w3.org/2004/02/skos/core#definition> "Diese Eigenschaft beschreibt als quantitativer Wert die Kraft pro Fläche (Druck), die beim Einbau einer Probe, eines Prüfkörpers oder eines Prüfstücks aufgebracht wird. Typischerweise ist das Aufbringen eines Klemmdrucks mit einer Art von Klemm- oder Spannzubehör (Grips) oder Ähnlichem verbunden."@de ,
"This property describes the force per area (pressure) that is used during the mounting process of a sample, specimen, or test piece as a quantitative value. Typically, this process involves some sort of grips or the like."@en .
### https://w3id.org/pmd/co/ClassificationDocument
:ClassificationDocument rdf:type owl:Class ;
rdfs:subClassOf :Document ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "Classification Document"@en ,
"Klassifzierungsdokument"@de ;
<http://www.w3.org/2004/02/skos/core#definition> "Diese Entität beschreibt ein Dokument, das dazu dient, den Arbeits- oder Anwendungsbereich eines Prozessknotens in Übereinstimmung mit genormten Abstufungen zu definieren."@de ,
"This entity describes a document used to define the working or application range of a process node in accordance with standardized graduations."@en .
### https://w3id.org/pmd/co/CoatingDesignation
:CoatingDesignation rdf:type owl:Class ;
rdfs:subClassOf :MaterialRelated ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "Beschichtungsbezeichnung"@de ,
"Coating Designation"@en ;
<http://www.w3.org/2004/02/skos/core#definition> "Diese Eigenschaft ist ein Name oder Bezeichner eines Materialtyps, welcher den obersten Teil eines Bauteils (Beschichtung) bedeckt."@de ,
"This property is a name or identifier of a material type which designates the most upper part of a component (coating)."@en .
### https://w3id.org/pmd/co/CollectionInterfaceHint
:CollectionInterfaceHint rdf:type owl:Class ;
rdfs:subClassOf :NodeInfo ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "Collection Interface Hint"@en ,
"Datenschnittstellenhinweis"@de ;
<http://www.w3.org/2004/02/skos/core#definition> "A label in support of identifying a network interface and/or address used by a process node to provide primary data stored in ontologies"@en .
### https://w3id.org/pmd/co/CommissionTime
:CommissionTime rdf:type owl:Class ;
rdfs:subClassOf :Time ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "Commission Time"@en ,
"Kommissionszeit"@de ;
<http://www.w3.org/2004/02/skos/core#definition> "Date and time an order or plan has been dispatched at."@en .
### https://w3id.org/pmd/co/Component
:Component rdf:type owl:Class ;
rdfs:subClassOf :Object ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "Component"@en ,
"Komponente"@de ;
<http://www.w3.org/2004/02/skos/core#definition> "An object that serves a specific technical application. Constituent part of a compound of parts that builds a technical application."@en ,
"Ein Objekt, das einer bestimmten technischen Anwendung dient. Bestandteil einer Zusammensetzung von Teilen, die eine technische Anwendung bilden."@de .
### https://w3id.org/pmd/co/ComputingNode
:ComputingNode rdf:type owl:Class ;
rdfs:subClassOf :ProcessingNode ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "Computerknoten"@de ,
"Computing Node"@en ;
<http://www.w3.org/2004/02/skos/core#definition> """A computing system that provides an execution environment for, e.g., simulation processes or prediction models.
A Computing Node can be virtual (e.g., a container or virtual machine) or physical (e.g., a bare-metal servers), uses digital represenations of objects as inputs and produces digital measurements, such as simulation results or predictions, as outputs."""@en ,
"""Ein Rechnersystem, das eine Ausführungsumgebung bspw. für Simulationsprozesse oder Vorhersagemodelle bereitstellt.
Ein Rechenknoten kann virtuell (bspw. ein Container oder eine virtuelle Maschine) oder physisch (z. B. ein Bare-Metal-Server) ausgestaltet sein und verwendet in der Regel digitale Repräsentationen von Objekten als Eingaben und erzeugt digitale Messungen, wie z.B. Simulationsergebnisse oder Vorhersagen, als Ausgaben."""@de .
### https://w3id.org/pmd/co/ConditioningProcess
:ConditioningProcess rdf:type owl:Class ;
rdfs:subClassOf :Process ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "Conditioning Process"@en ,
"Konditionierungsprozess"@de ;
<http://www.w3.org/2004/02/skos/core#definition> "A process that comprises the procedure and measures by which a material object is adapted to predefined environmental conditions."@en ,
"Diese Aktivität beschreibt den Prozess und die Maßnahmen, die ergriffen werden, um einen materiellen Gegenstand auf vordefinierte Umgebungsbedingungen einzustellen."@de .
### https://w3id.org/pmd/co/Coordinates
:Coordinates rdf:type owl:Class ;
rdfs:subClassOf :ValueObject ;
rdfs:isDefinedBy <https://w3id.org/pmd/co> ;
rdfs:label "Coordinates"@en ,
"Koordinaten"@de ;
<http://www.w3.org/2004/02/skos/core#definition> "Any of a set of numbers used in specifying the location of a point on a line, on a surface, or in space."@en ;