-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdislocation-ontology.owl
1426 lines (1037 loc) · 72.5 KB
/
dislocation-ontology.owl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<rdf:RDF xmlns="https://purls.helmholtz-metadaten.de/diso"
xml:base="https://purls.helmholtz-metadaten.de/diso"
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:qudt="http://qudt.org/schema/qudt/"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:terms="http://purl.org/dc/terms/">
<owl:Ontology rdf:about="https://purls.helmholtz-metadaten.de/diso">
<terms:contributor rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Said Fathalla</terms:contributor>
<terms:contributor rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Stefan Sandfeld</terms:contributor>
<terms:created xml:lang="en">21.03.2022</terms:created>
<terms:creator xml:lang="en">Ahmad Zainul Ihsan</terms:creator>
<terms:license rdf:resource="http://creativecommons.org/licenses/by/3.0/"/>
<terms:title xml:lang="en">Dislocation Ontology</terms:title>
<vann:preferredNamespacePrefix rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DISO</vann:preferredNamespacePrefix>
<rdfs:label xml:lang="en">Dislocation Ontology</rdfs:label>
<rdfs:seeAlso>https://github.com/Materials-Data-Science-and-Informatics/dislocation-ontology</rdfs:seeAlso>
<owl:versionInfo rdf:datatype="http://www.w3.org/2001/XMLSchema#decimal">1.0</owl:versionInfo>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.org/dc/terms/contributor -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/contributor"/>
<!-- http://purl.org/dc/terms/created -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/created"/>
<!-- http://purl.org/dc/terms/creator -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/creator"/>
<!-- http://purl.org/dc/terms/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://purl.org/vocab/vann/preferredNamespacePrefix -->
<owl:AnnotationProperty rdf:about="http://purl.org/vocab/vann/preferredNamespacePrefix"/>
<!-- http://qudt.org/schema/qudt/description -->
<owl:AnnotationProperty rdf:about="http://qudt.org/schema/qudt/description"/>
<!-- http://www.w3.org/2004/02/skos/core#defintion -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#defintion"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Datatypes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://www.w3.org/1999/02/22-rdf-syntax-ns#HTML -->
<rdfs:Datatype rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#HTML"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://qudt.org/schema/qudt/hasQuantityKind -->
<owl:ObjectProperty rdf:about="http://qudt.org/schema/qudt/hasQuantityKind"/>
<!-- http://qudt.org/schema/qudt/quantityValue -->
<owl:ObjectProperty rdf:about="http://qudt.org/schema/qudt/quantityValue"/>
<!-- http://qudt.org/schema/qudt/unit -->
<owl:ObjectProperty rdf:about="http://qudt.org/schema/qudt/unit"/>
<!-- https://purls.helmholtz-metadaten.de/cso#hasBasis -->
<owl:ObjectProperty rdf:about="https://purls.helmholtz-metadaten.de/cso#hasBasis"/>
<!-- https://purls.helmholtz-metadaten.de/cso#hasFirstAxisVector -->
<owl:ObjectProperty rdf:about="https://purls.helmholtz-metadaten.de/cso#hasFirstAxisVector"/>
<!-- https://purls.helmholtz-metadaten.de/cso#hasPositionVector -->
<owl:ObjectProperty rdf:about="https://purls.helmholtz-metadaten.de/cso#hasPositionVector">
<rdfs:domain rdf:resource="https://purls.helmholtz-metadaten.de/cso#Point"/>
<rdfs:range rdf:resource="https://purls.helmholtz-metadaten.de/cso#PositionVector"/>
<rdfs:comment xml:lang="en">hasPositionVector represents the relationship between entity and position vector.</rdfs:comment>
<rdfs:label xml:lang="en">has position vector</rdfs:label>
</owl:ObjectProperty>
<!-- https://purls.helmholtz-metadaten.de/cso#hasSecondAxisVector -->
<owl:ObjectProperty rdf:about="https://purls.helmholtz-metadaten.de/cso#hasSecondAxisVector"/>
<!-- https://purls.helmholtz-metadaten.de/cso#hasThirdAxisVector -->
<owl:ObjectProperty rdf:about="https://purls.helmholtz-metadaten.de/cso#hasThirdAxisVector"/>
<!-- https://purls.helmholtz-metadaten.de/cso#hasVectorComponent -->
<owl:ObjectProperty rdf:about="https://purls.helmholtz-metadaten.de/cso#hasVectorComponent"/>
<!-- https://purls.helmholtz-metadaten.de/diso#hasBurgersVector -->
<owl:ObjectProperty rdf:about="https://purls.helmholtz-metadaten.de/diso#hasBurgersVector">
<rdfs:domain rdf:resource="https://purls.helmholtz-metadaten.de/diso#Dislocation"/>
<rdfs:range rdf:resource="https://purls.helmholtz-metadaten.de/diso#BurgersVector"/>
<rdfs:comment xml:lang="en">hasBurgersVector represents the relationship between dislocation to Burgers vector.</rdfs:comment>
<rdfs:label xml:lang="en">has Burgers vector</rdfs:label>
</owl:ObjectProperty>
<!-- https://purls.helmholtz-metadaten.de/diso#hasEndNode -->
<owl:ObjectProperty rdf:about="https://purls.helmholtz-metadaten.de/diso#hasEndNode">
<rdfs:subPropertyOf rdf:resource="https://purls.helmholtz-metadaten.de/diso#hasNode"/>
<rdfs:domain rdf:resource="https://purls.helmholtz-metadaten.de/diso#Segment"/>
<rdfs:range rdf:resource="https://purls.helmholtz-metadaten.de/diso#Node"/>
<rdfs:comment xml:lang="en">Sub-property of hasNode that relates the segment with the end node.</rdfs:comment>
<rdfs:label xml:lang="en">has end node</rdfs:label>
</owl:ObjectProperty>
<!-- https://purls.helmholtz-metadaten.de/diso#hasFamilyCrystalDirection -->
<owl:ObjectProperty rdf:about="https://purls.helmholtz-metadaten.de/diso#hasFamilyCrystalDirection">
<rdfs:domain rdf:resource="https://purls.helmholtz-metadaten.de/diso#LatticeDirection"/>
<rdfs:range rdf:resource="https://purls.helmholtz-metadaten.de/diso#FamilyOfCrystalDirection"/>
<rdfs:comment xml:lang="en">hasFamilyCrystalDirection represents the relationship between lattice direction and family of crystal direction.</rdfs:comment>
<rdfs:label xml:lang="en">has family crystal direction</rdfs:label>
</owl:ObjectProperty>
<!-- https://purls.helmholtz-metadaten.de/diso#hasFamilyCrystalPlane -->
<owl:ObjectProperty rdf:about="https://purls.helmholtz-metadaten.de/diso#hasFamilyCrystalPlane">
<rdfs:domain rdf:resource="https://purls.helmholtz-metadaten.de/diso#LatticePlane"/>
<rdfs:range rdf:resource="https://purls.helmholtz-metadaten.de/diso#FamilyOfCrystalPlane"/>
<rdfs:comment xml:lang="en">hasFamilyCrystalPlane represents the relationship between the lattice plane and the family of crystal planes.</rdfs:comment>
<rdfs:label xml:lang="en">has family crystal plane</rdfs:label>
</owl:ObjectProperty>
<!-- https://purls.helmholtz-metadaten.de/diso#hasLatticeDirection -->
<owl:ObjectProperty rdf:about="https://purls.helmholtz-metadaten.de/diso#hasLatticeDirection">
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://purls.helmholtz-metadaten.de/cso#Lattice"/>
<rdf:Description rdf:about="https://purls.helmholtz-metadaten.de/diso#LatticePlane"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="https://purls.helmholtz-metadaten.de/diso#LatticeDirection"/>
<rdfs:comment xml:lang="en">hasLatticeDirection represents the relationship between a lattice or a lattice plane with lattice directions.</rdfs:comment>
<rdfs:label xml:lang="en">has lattice direction</rdfs:label>
</owl:ObjectProperty>
<!-- https://purls.helmholtz-metadaten.de/diso#hasLatticePlane -->
<owl:ObjectProperty rdf:about="https://purls.helmholtz-metadaten.de/diso#hasLatticePlane">
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://purls.helmholtz-metadaten.de/cso#CrystalStructure"/>
<rdf:Description rdf:about="https://purls.helmholtz-metadaten.de/cso#Lattice"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="https://purls.helmholtz-metadaten.de/diso#LatticePlane"/>
<rdfs:comment xml:lang="en">hasLatticePlane represents the relationship between a lattice and lattice planes.</rdfs:comment>
<rdfs:label xml:lang="en">has lattice plane</rdfs:label>
</owl:ObjectProperty>
<!-- https://purls.helmholtz-metadaten.de/diso#hasLatticePoint -->
<owl:ObjectProperty rdf:about="https://purls.helmholtz-metadaten.de/diso#hasLatticePoint">
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://purls.helmholtz-metadaten.de/cso#Lattice"/>
<rdf:Description rdf:about="https://purls.helmholtz-metadaten.de/diso#LatticeDirection"/>
<rdf:Description rdf:about="https://purls.helmholtz-metadaten.de/diso#LatticePlane"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="https://purls.helmholtz-metadaten.de/diso#LatticePoint"/>
<rdfs:comment xml:lang="en">hasLatticePoint represents the relationship between a lattice or lattice plane or lattice direction with lattice point.</rdfs:comment>
<rdfs:label xml:lang="en">has lattice point</rdfs:label>
</owl:ObjectProperty>
<!-- https://purls.helmholtz-metadaten.de/diso#hasLineSense -->
<owl:ObjectProperty rdf:about="https://purls.helmholtz-metadaten.de/diso#hasLineSense">
<rdfs:domain rdf:resource="https://purls.helmholtz-metadaten.de/diso#Dislocation"/>
<rdfs:range rdf:resource="https://purls.helmholtz-metadaten.de/diso#LineSense"/>
<rdfs:comment xml:lang="en">hasLineSense represents the relationship between dislocation and line sense.</rdfs:comment>
<rdfs:label xml:lang="en">has line sense</rdfs:label>
</owl:ObjectProperty>
<!-- https://purls.helmholtz-metadaten.de/diso#hasMathematicalRepresentation -->
<owl:ObjectProperty rdf:about="https://purls.helmholtz-metadaten.de/diso#hasMathematicalRepresentation">
<rdfs:subPropertyOf rdf:resource="https://purls.helmholtz-metadaten.de/diso#hasRepresentation"/>
<rdfs:domain rdf:resource="https://purls.helmholtz-metadaten.de/diso#Dislocation"/>
<rdfs:range rdf:resource="https://purls.helmholtz-metadaten.de/diso#Line"/>
<rdfs:comment xml:lang="en">hasMathematicalRepresentation relates the entity with its mathematical representation.</rdfs:comment>
<rdfs:label xml:lang="en">has mathematical representation</rdfs:label>
</owl:ObjectProperty>
<!-- https://purls.helmholtz-metadaten.de/diso#hasNode -->
<owl:ObjectProperty rdf:about="https://purls.helmholtz-metadaten.de/diso#hasNode">
<rdfs:domain rdf:resource="https://purls.helmholtz-metadaten.de/diso#Segment"/>
<rdfs:range rdf:resource="https://purls.helmholtz-metadaten.de/diso#Node"/>
<rdfs:comment xml:lang="en">hasNode represents the relationship between segment and node.</rdfs:comment>
<rdfs:label xml:lang="en">has node</rdfs:label>
</owl:ObjectProperty>
<!-- https://purls.helmholtz-metadaten.de/diso#hasNumericalRepresentation -->
<owl:ObjectProperty rdf:about="https://purls.helmholtz-metadaten.de/diso#hasNumericalRepresentation">
<rdfs:subPropertyOf rdf:resource="https://purls.helmholtz-metadaten.de/diso#hasRepresentation"/>
<rdfs:domain rdf:resource="https://purls.helmholtz-metadaten.de/diso#Line"/>
<rdfs:range rdf:resource="https://purls.helmholtz-metadaten.de/diso#DiscretizedLine"/>
<rdfs:comment xml:lang="en">hasNumericalRepresentation relates the entity with its numerical representation.</rdfs:comment>
<rdfs:label xml:lang="en">has numerical representation</rdfs:label>
</owl:ObjectProperty>
<!-- https://purls.helmholtz-metadaten.de/diso#hasRepresentation -->
<owl:ObjectProperty rdf:about="https://purls.helmholtz-metadaten.de/diso#hasRepresentation">
<rdfs:domain rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://purls.helmholtz-metadaten.de/diso#DiscretizedLine"/>
<rdf:Description rdf:about="https://purls.helmholtz-metadaten.de/diso#Line"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<rdfs:comment xml:lang="en">hasRepresentation relates the entity to another representation of entity.</rdfs:comment>
<rdfs:label xml:lang="en">has representation</rdfs:label>
</owl:ObjectProperty>
<!-- https://purls.helmholtz-metadaten.de/diso#hasSegment -->
<owl:ObjectProperty rdf:about="https://purls.helmholtz-metadaten.de/diso#hasSegment">
<owl:inverseOf rdf:resource="https://purls.helmholtz-metadaten.de/diso#isSegmentOf"/>
<rdfs:domain rdf:resource="https://purls.helmholtz-metadaten.de/diso#DiscretizedLine"/>
<rdfs:range rdf:resource="https://purls.helmholtz-metadaten.de/diso#Segment"/>
<rdfs:comment xml:lang="en">hasSegment represents the relationship between discretized line and segment.</rdfs:comment>
<rdfs:label xml:lang="en">has segment</rdfs:label>
</owl:ObjectProperty>
<!-- https://purls.helmholtz-metadaten.de/diso#hasShapeFunction -->
<owl:ObjectProperty rdf:about="https://purls.helmholtz-metadaten.de/diso#hasShapeFunction">
<rdfs:domain rdf:resource="https://purls.helmholtz-metadaten.de/diso#DiscretizedLine"/>
<rdfs:range rdf:resource="https://purls.helmholtz-metadaten.de/diso#ShapeFunction"/>
<rdfs:comment xml:lang="en">hasShapeFunction represents the relationship between discretized line and shape function.</rdfs:comment>
<rdfs:label xml:lang="en">has shape function</rdfs:label>
</owl:ObjectProperty>
<!-- https://purls.helmholtz-metadaten.de/diso#hasSlipDirection -->
<owl:ObjectProperty rdf:about="https://purls.helmholtz-metadaten.de/diso#hasSlipDirection">
<rdfs:subPropertyOf rdf:resource="https://purls.helmholtz-metadaten.de/diso#hasLatticeDirection"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://purls.helmholtz-metadaten.de/diso#SlipPlane"/>
<rdf:Description rdf:about="https://purls.helmholtz-metadaten.de/diso#SlipSystem"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="https://purls.helmholtz-metadaten.de/diso#SlipDirection"/>
<rdfs:comment xml:lang="en">hasSlipDirection represents the relationship between the slip plane or slip system with the slip direction.</rdfs:comment>
<rdfs:label xml:lang="en">has slip direction</rdfs:label>
</owl:ObjectProperty>
<!-- https://purls.helmholtz-metadaten.de/diso#hasSlipPlane -->
<owl:ObjectProperty rdf:about="https://purls.helmholtz-metadaten.de/diso#hasSlipPlane">
<rdfs:subPropertyOf rdf:resource="https://purls.helmholtz-metadaten.de/diso#hasLatticePlane"/>
<rdfs:domain rdf:resource="https://purls.helmholtz-metadaten.de/cso#CrystalStructure"/>
<rdfs:range rdf:resource="https://purls.helmholtz-metadaten.de/diso#SlipPlane"/>
<rdfs:comment xml:lang="en">hasSlipPlane represents the relationship between crystal structure and slip plane.</rdfs:comment>
<rdfs:label xml:lang="en">has slip plane</rdfs:label>
</owl:ObjectProperty>
<!-- https://purls.helmholtz-metadaten.de/diso#hasSlipPlaneNormal -->
<owl:ObjectProperty rdf:about="https://purls.helmholtz-metadaten.de/diso#hasSlipPlaneNormal">
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://purls.helmholtz-metadaten.de/diso#SlipPlane"/>
<rdf:Description rdf:about="https://purls.helmholtz-metadaten.de/diso#SlipSystem"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="https://purls.helmholtz-metadaten.de/diso#SlipPlaneNormal"/>
<rdfs:comment xml:lang="en">hasSlipPlaneNormal represents the relationship between a slip plane or slip system with slip plane normal.</rdfs:comment>
<rdfs:label xml:lang="en">has slip plane normal</rdfs:label>
</owl:ObjectProperty>
<!-- https://purls.helmholtz-metadaten.de/diso#hasSlipSystem -->
<owl:ObjectProperty rdf:about="https://purls.helmholtz-metadaten.de/diso#hasSlipSystem">
<rdfs:domain rdf:resource="https://purls.helmholtz-metadaten.de/cso#CrystalStructure"/>
<rdfs:range rdf:resource="https://purls.helmholtz-metadaten.de/diso#SlipSystem"/>
<rdfs:comment xml:lang="en">hasSlipSystem represents the relationship between a crystal structure and slip system.</rdfs:comment>
<rdfs:label xml:lang="en">has slip system</rdfs:label>
</owl:ObjectProperty>
<!-- https://purls.helmholtz-metadaten.de/diso#hasStartNode -->
<owl:ObjectProperty rdf:about="https://purls.helmholtz-metadaten.de/diso#hasStartNode">
<rdfs:subPropertyOf rdf:resource="https://purls.helmholtz-metadaten.de/diso#hasNode"/>
<rdfs:domain rdf:resource="https://purls.helmholtz-metadaten.de/diso#Segment"/>
<rdfs:range rdf:resource="https://purls.helmholtz-metadaten.de/diso#Node"/>
<rdfs:comment xml:lang="en">Sub-property of hasNode that relates the segment with the start node.</rdfs:comment>
<rdfs:label xml:lang="en">has start node</rdfs:label>
</owl:ObjectProperty>
<!-- https://purls.helmholtz-metadaten.de/diso#hasVectorOrigin -->
<owl:ObjectProperty rdf:about="https://purls.helmholtz-metadaten.de/diso#hasVectorOrigin">
<rdfs:domain rdf:resource="https://purls.helmholtz-metadaten.de/diso#LatticePlane"/>
<rdfs:range rdf:resource="https://purls.helmholtz-metadaten.de/diso#VectorOrigin"/>
<rdfs:comment xml:lang="en">hasVectorOrigin represents the relationship between lattice plane and origin.</rdfs:comment>
<rdfs:label xml:lang="en">has vector origin</rdfs:label>
</owl:ObjectProperty>
<!-- https://purls.helmholtz-metadaten.de/diso#isSegmentOf -->
<owl:ObjectProperty rdf:about="https://purls.helmholtz-metadaten.de/diso#isSegmentOf">
<rdfs:domain rdf:resource="https://purls.helmholtz-metadaten.de/diso#Segment"/>
<rdfs:range rdf:resource="https://purls.helmholtz-metadaten.de/diso#DiscretizedLine"/>
<rdfs:comment xml:lang="en">Inverse of hasSegment</rdfs:comment>
<rdfs:label xml:lang="en">is segment of</rdfs:label>
</owl:ObjectProperty>
<!-- https://purls.helmholtz-metadaten.de/diso#movesOn -->
<owl:ObjectProperty rdf:about="https://purls.helmholtz-metadaten.de/diso#movesOn">
<rdfs:domain rdf:resource="https://purls.helmholtz-metadaten.de/diso#Dislocation"/>
<rdfs:range rdf:resource="https://purls.helmholtz-metadaten.de/diso#SlipPlane"/>
<rdfs:comment xml:lang="en">movesOn represents the relationship between dislocation and slip plane.</rdfs:comment>
<rdfs:label xml:lang="en">moves on</rdfs:label>
</owl:ObjectProperty>
<!-- https://purls.helmholtz-metadaten.de/diso#observedBy -->
<owl:ObjectProperty rdf:about="https://purls.helmholtz-metadaten.de/diso#observedBy">
<rdfs:domain rdf:resource="https://purls.helmholtz-metadaten.de/diso#Dislocation"/>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://purls.helmholtz-metadaten.de/diso#FieldIonMicroscopy"/>
<rdf:Description rdf:about="https://purls.helmholtz-metadaten.de/diso#TransmissionElectronMicroscopy"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<rdfs:comment xml:lang="en">observedBy represents the relationship between dislocation and microscopy techniques, e.g., TEM, FIM, etc.</rdfs:comment>
<rdfs:label xml:lang="en">observed by</rdfs:label>
</owl:ObjectProperty>
<!-- https://purls.helmholtz-metadaten.de/diso#resultsIn -->
<owl:ObjectProperty rdf:about="https://purls.helmholtz-metadaten.de/diso#resultsIn">
<rdfs:domain rdf:resource="https://purls.helmholtz-metadaten.de/diso#Dislocation"/>
<rdfs:range rdf:resource="https://purls.helmholtz-metadaten.de/diso#LatticeDisplacement"/>
<rdfs:comment xml:lang="en">resultsIn represents the relationship between dislocation and lattice displacement.</rdfs:comment>
<rdfs:label xml:lang="en">results in</rdfs:label>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Data properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- https://purls.helmholtz-metadaten.de/cso#firstAxisComponent -->
<owl:DatatypeProperty rdf:about="https://purls.helmholtz-metadaten.de/cso#firstAxisComponent"/>
<!-- https://purls.helmholtz-metadaten.de/cso#secondAxisComponent -->
<owl:DatatypeProperty rdf:about="https://purls.helmholtz-metadaten.de/cso#secondAxisComponent"/>
<!-- https://purls.helmholtz-metadaten.de/cso#thirdAxisComponent -->
<owl:DatatypeProperty rdf:about="https://purls.helmholtz-metadaten.de/cso#thirdAxisComponent"/>
<!-- https://purls.helmholtz-metadaten.de/cso#vectorMagnitude -->
<owl:DatatypeProperty rdf:about="https://purls.helmholtz-metadaten.de/cso#vectorMagnitude"/>
<!-- https://purls.helmholtz-metadaten.de/diso#directionMillerIndice -->
<owl:DatatypeProperty rdf:about="https://purls.helmholtz-metadaten.de/diso#directionMillerIndice">
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://purls.helmholtz-metadaten.de/diso#LatticeDirection"/>
<rdf:Description rdf:about="https://purls.helmholtz-metadaten.de/diso#SlipPlaneNormal"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="en">directionMillerIndice represents Miller indice of lattice direction in string.</rdfs:comment>
<rdfs:label xml:lang="en">direction miller indice</rdfs:label>
</owl:DatatypeProperty>
<!-- https://purls.helmholtz-metadaten.de/diso#familyDirectionMillerIndice -->
<owl:DatatypeProperty rdf:about="https://purls.helmholtz-metadaten.de/diso#familyDirectionMillerIndice">
<rdfs:domain rdf:resource="https://purls.helmholtz-metadaten.de/diso#FamilyOfCrystalDirection"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="en">familyDirectionMillerIndice represents a set of miller indices of lattice direction in string.</rdfs:comment>
<rdfs:label xml:lang="en">family direction miller indice</rdfs:label>
</owl:DatatypeProperty>
<!-- https://purls.helmholtz-metadaten.de/diso#familyPlaneMillerIndice -->
<owl:DatatypeProperty rdf:about="https://purls.helmholtz-metadaten.de/diso#familyPlaneMillerIndice">
<rdfs:domain rdf:resource="https://purls.helmholtz-metadaten.de/diso#FamilyOfCrystalPlane"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="en">familyPlaneMillerIndice represents a set of Miller indice of lattice plane in string.</rdfs:comment>
<rdfs:label xml:lang="en">family plane miller indice</rdfs:label>
</owl:DatatypeProperty>
<!-- https://purls.helmholtz-metadaten.de/diso#planeMillerIndice -->
<owl:DatatypeProperty rdf:about="https://purls.helmholtz-metadaten.de/diso#planeMillerIndice">
<rdfs:domain rdf:resource="https://purls.helmholtz-metadaten.de/diso#LatticePlane"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="en">planeMillerIndice represents Miller indice of lattice plane in string.</rdfs:comment>
<rdfs:label xml:lang="en">plane miller indice</rdfs:label>
</owl:DatatypeProperty>
<!-- https://purls.helmholtz-metadaten.de/diso#slipArea -->
<owl:DatatypeProperty rdf:about="https://purls.helmholtz-metadaten.de/diso#slipArea">
<rdfs:domain rdf:resource="https://purls.helmholtz-metadaten.de/diso#DiscretizedLine"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#double"/>
<rdfs:comment xml:lang="en">slipArea represents the slip area of discretized line in double.</rdfs:comment>
<rdfs:label xml:lang="en">slipArea</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/mdo/structure/X_axisCoordinate -->
<owl:DatatypeProperty rdf:about="https://w3id.org/mdo/structure/X_axisCoordinate"/>
<!-- https://w3id.org/mdo/structure/Y_axisCoordinate -->
<owl:DatatypeProperty rdf:about="https://w3id.org/mdo/structure/Y_axisCoordinate"/>
<!-- https://w3id.org/mdo/structure/Z_axisCoordinate -->
<owl:DatatypeProperty rdf:about="https://w3id.org/mdo/structure/Z_axisCoordinate"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://qudt.org/schema/qudt/Quantity -->
<owl:Class rdf:about="http://qudt.org/schema/qudt/Quantity">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://qudt.org/schema/qudt/hasQuantityKind"/>
<owl:allValuesFrom rdf:resource="http://qudt.org/schema/qudt/QuantityKind"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://qudt.org/schema/qudt/quantityValue"/>
<owl:allValuesFrom rdf:resource="http://qudt.org/schema/qudt/QuantityValue"/>
</owl:Restriction>
</rdfs:subClassOf>
<qudt:description rdf:datatype="http://www.w3.org/1999/02/22-rdf-syntax-ns#HTML"><p class="lm-para">A quantity is the measurement of an observable property of a particular object, event, or physical system. A quantity is always associated with the context of measurement (i.e. the thing measured, the measured value, the accuracy of measurement, etc.) whereas the underlying quantity kind is independent of any particular measurement. Thus, length is a quantity kind while the height of a rocket is a specific quantity of length; its magnitude that may be expressed in meters, feet, inches, etc. Examples of physical quantities include physical constants, such as the speed of light in a vacuum, Planck's constant, the electric permittivity of free space, and the fine structure constant. </p>
<p class="lm-para">In other words, quantities are quantifiable aspects of the world, such as time, distance, velocity, mass, momentum, energy, and weight, and units are used to describe their measure. Many of which are related to each other by various physical laws, and as a result the units of some of the quantities can be expressed as products (or ratios) of powers of other units (e.g., momentum is mass times velocity and velocity is measured in distance divided by time). These relationships are discussed in dimensional analysis. Those that cannot be so expressed can be regarded as "fundamental" in this sense.</p>
<p class="lm-para">A quantity is distinguished from a "quantity kind" in that the former carries a value and the latter is a type specifier.</p></qudt:description>
<rdfs:isDefinedBy rdf:resource="http://qudt.org/2.0/schema/qudt"/>
<rdfs:isDefinedBy rdf:resource="http://qudt.org/schema/qudt"/>
<rdfs:label>Quantity</rdfs:label>
</owl:Class>
<!-- http://qudt.org/schema/qudt/QuantityKind -->
<owl:Class rdf:about="http://qudt.org/schema/qudt/QuantityKind">
<qudt:description rdf:datatype="http://www.w3.org/1999/02/22-rdf-syntax-ns#HTML">A <b>Quantity Kind</b> is any observable property that can be measured and quantified numerically. Familiar examples include physical properties such as length, mass, time, force, energy, power, electric charge, etc. Less familiar examples include currency, interest rate, price to earning ratio, and information capacity.</qudt:description>
<rdfs:isDefinedBy rdf:resource="http://qudt.org/2.0/schema/qudt"/>
<rdfs:isDefinedBy rdf:resource="http://qudt.org/schema/qudt"/>
<rdfs:label>Quantity Kind</rdfs:label>
</owl:Class>
<!-- http://qudt.org/schema/qudt/QuantityValue -->
<owl:Class rdf:about="http://qudt.org/schema/qudt/QuantityValue">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://qudt.org/schema/qudt/unit"/>
<owl:allValuesFrom rdf:resource="http://qudt.org/schema/qudt/Unit"/>
</owl:Restriction>
</rdfs:subClassOf>
<qudt:description rdf:datatype="http://www.w3.org/1999/02/22-rdf-syntax-ns#HTML">A <i>Quantity Value</i> expresses the magnitude and kind of a quantity and is given by the product of a numerical value <code>n</code> and a unit of measure <code>U</code>. The number multiplying the unit is referred to as the numerical value of the quantity expressed in that unit. Refer to <a href="http://physics.nist.gov/Pubs/SP811/sec07.html">NIST SP 811 section 7</a> for more on quantity values.</qudt:description>
<rdfs:isDefinedBy rdf:resource="http://qudt.org/2.0/schema/qudt"/>
<rdfs:isDefinedBy rdf:resource="http://qudt.org/schema/qudt"/>
<rdfs:label>Quantity value</rdfs:label>
</owl:Class>
<!-- http://qudt.org/schema/qudt/Unit -->
<owl:Class rdf:about="http://qudt.org/schema/qudt/Unit">
<qudt:description rdf:datatype="http://www.w3.org/1999/02/22-rdf-syntax-ns#HTML">A unit of measure, or unit, is a particular quantity value that has been chosen as a scale for measuring other quantities the same kind (more generally of equivalent dimension). For example, the meter is a quantity of length that has been rigorously defined and standardized by the BIPM (International Board of Weights and Measures). Any measurement of the length can be expressed as a number multiplied by the unit meter. More formally, the value of a physical quantity Q with respect to a unit (U) is expressed as the scalar multiple of a real number (n) and U, as \(Q = nU\).</qudt:description>
<rdfs:isDefinedBy rdf:resource="http://qudt.org/2.0/schema/qudt"/>
<rdfs:isDefinedBy rdf:resource="http://qudt.org/schema/qudt"/>
<rdfs:label>Unit</rdfs:label>
</owl:Class>
<!-- https://purls.helmholtz-metadaten.de/cdo#CrystallographicDefect -->
<owl:Class rdf:about="https://purls.helmholtz-metadaten.de/cdo#CrystallographicDefect">
<rdfs:comment xml:lang="en">The crystallographic defect is a lattice irregularity that has one or more dimensions on the order of an atomic diameter.</rdfs:comment>
<rdfs:label xml:lang="en">Crystallographic Defect</rdfs:label>
</owl:Class>
<!-- https://purls.helmholtz-metadaten.de/cso#CrystalStructure -->
<owl:Class rdf:about="https://purls.helmholtz-metadaten.de/cso#CrystalStructure">
<rdfs:subClassOf>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="https://purls.helmholtz-metadaten.de/diso#hasSlipPlane"/>
<owl:someValuesFrom rdf:resource="https://purls.helmholtz-metadaten.de/diso#SlipPlane"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="https://purls.helmholtz-metadaten.de/diso#hasSlipPlane"/>
<owl:allValuesFrom rdf:resource="https://purls.helmholtz-metadaten.de/diso#SlipPlane"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="https://purls.helmholtz-metadaten.de/diso#hasSlipSystem"/>
<owl:someValuesFrom rdf:resource="https://purls.helmholtz-metadaten.de/diso#SlipSystem"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="https://purls.helmholtz-metadaten.de/diso#hasSlipSystem"/>
<owl:allValuesFrom rdf:resource="https://purls.helmholtz-metadaten.de/diso#SlipSystem"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">A crystal structure is described by the lattice geometry and atomic arrangements within the unit cell.</rdfs:comment>
<rdfs:label xml:lang="en">Crystal Structure</rdfs:label>
</owl:Class>
<!-- https://purls.helmholtz-metadaten.de/cso#Lattice -->
<owl:Class rdf:about="https://purls.helmholtz-metadaten.de/cso#Lattice">
<rdfs:subClassOf>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="https://purls.helmholtz-metadaten.de/diso#hasLatticeDirection"/>
<owl:someValuesFrom rdf:resource="https://purls.helmholtz-metadaten.de/diso#LatticeDirection"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="https://purls.helmholtz-metadaten.de/diso#hasLatticeDirection"/>
<owl:allValuesFrom rdf:resource="https://purls.helmholtz-metadaten.de/diso#LatticeDirection"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="https://purls.helmholtz-metadaten.de/diso#hasLatticePlane"/>
<owl:someValuesFrom rdf:resource="https://purls.helmholtz-metadaten.de/diso#LatticePlane"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="https://purls.helmholtz-metadaten.de/diso#hasLatticeDirection"/>
<owl:allValuesFrom rdf:resource="https://purls.helmholtz-metadaten.de/diso#LatticeDirection"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="https://purls.helmholtz-metadaten.de/diso#hasLatticePoint"/>
<owl:someValuesFrom rdf:resource="https://purls.helmholtz-metadaten.de/diso#LatticePoint"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="https://purls.helmholtz-metadaten.de/diso#hasLatticePoint"/>
<owl:allValuesFrom rdf:resource="https://purls.helmholtz-metadaten.de/diso#LatticePoint"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">The mathematical concept to represent the periodicity of a crystal. A lattice defines a periodic arrangement of one or more atoms.</rdfs:comment>
<rdfs:label xml:lang="en">Lattice</rdfs:label>
</owl:Class>
<!-- https://purls.helmholtz-metadaten.de/cso#Point -->
<owl:Class rdf:about="https://purls.helmholtz-metadaten.de/cso#Point">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://purls.helmholtz-metadaten.de/cso#hasPositionVector"/>
<owl:allValuesFrom rdf:resource="https://purls.helmholtz-metadaten.de/cso#PositionVector"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">In classical Euclidean geometry, a point is a primitive notion that models an exact location in the space, and has no length, width, or thickness.</rdfs:comment>
<rdfs:label xml:lang="en">Point</rdfs:label>
</owl:Class>
<!-- https://purls.helmholtz-metadaten.de/cso#PositionVector -->
<owl:Class rdf:about="https://purls.helmholtz-metadaten.de/cso#PositionVector">
<rdfs:subClassOf rdf:resource="https://purls.helmholtz-metadaten.de/cso#Vector"/>
<rdfs:comment xml:lang="en">Euclidean vector that represents the position of a point P in space in relation to an arbitrary reference origin O.</rdfs:comment>
<rdfs:label xml:lang="en">Position Vector</rdfs:label>
</owl:Class>
<!-- https://purls.helmholtz-metadaten.de/cso#Vector -->
<owl:Class rdf:about="https://purls.helmholtz-metadaten.de/cso#Vector">
<rdfs:subClassOf>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="https://purls.helmholtz-metadaten.de/cso#hasVectorComponent"/>
<owl:someValuesFrom rdf:resource="https://purls.helmholtz-metadaten.de/cso#VectorComponentOfBasis"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="https://purls.helmholtz-metadaten.de/cso#hasVectorComponent"/>
<owl:allValuesFrom rdf:resource="https://purls.helmholtz-metadaten.de/cso#VectorComponentOfBasis"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://purls.helmholtz-metadaten.de/cso#vectorMagnitude"/>
<owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
<owl:onDataRange rdf:resource="http://www.w3.org/2001/XMLSchema#double"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">(Euclidean) vector is used to represent quantities that both magnitude and direction.</rdfs:comment>
<rdfs:label xml:lang="en">Vector</rdfs:label>
<skos:defintion xml:lang="en">(Euclidean) vector used to represent quantities that both magnitude and direction.</skos:defintion>
</owl:Class>
<!-- https://purls.helmholtz-metadaten.de/cso#VectorComponentOfBasis -->
<owl:Class rdf:about="https://purls.helmholtz-metadaten.de/cso#VectorComponentOfBasis">
<rdfs:subClassOf rdf:resource="http://qudt.org/schema/qudt/Quantity"/>
<rdfs:subClassOf>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="https://purls.helmholtz-metadaten.de/cso#hasBasis"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/mdo/structure/Basis"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="https://purls.helmholtz-metadaten.de/cso#hasBasis"/>
<owl:allValuesFrom rdf:resource="https://w3id.org/mdo/structure/Basis"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="https://purls.helmholtz-metadaten.de/cso#firstAxisComponent"/>
<owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
<owl:onDataRange rdf:resource="http://www.w3.org/2001/XMLSchema#double"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="https://purls.helmholtz-metadaten.de/cso#secondAxisComponent"/>
<owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
<owl:onDataRange rdf:resource="http://www.w3.org/2001/XMLSchema#double"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="https://purls.helmholtz-metadaten.de/cso#thirdAxisComponent"/>
<owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
<owl:onDataRange rdf:resource="http://www.w3.org/2001/XMLSchema#double"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">Vector components/vector coordinates of particular basis. It has relation to a specific basis.</rdfs:comment>
<rdfs:label xml:lang="en">Vector Component of Basis</rdfs:label>
</owl:Class>
<!-- https://purls.helmholtz-metadaten.de/diso#BurgersVector -->
<owl:Class rdf:about="https://purls.helmholtz-metadaten.de/diso#BurgersVector">
<rdfs:subClassOf rdf:resource="https://purls.helmholtz-metadaten.de/cso#Vector"/>
<rdfs:comment xml:lang="en">An elementary unit (length order of lattice parameter) of lattice translation. The basic notion of the Burgers vector comes from the closure failure of an initially perfect lattice due to the existence of dislocation. The magnitude and direction of closure failure are characterized by the Burgers vector.</rdfs:comment>
<rdfs:label xml:lang="en">Burgers Vector</rdfs:label>
</owl:Class>
<!-- https://purls.helmholtz-metadaten.de/diso#DiscretizedLine -->
<owl:Class rdf:about="https://purls.helmholtz-metadaten.de/diso#DiscretizedLine">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://purls.helmholtz-metadaten.de/diso#hasSegment"/>
<owl:allValuesFrom rdf:resource="https://purls.helmholtz-metadaten.de/diso#Segment"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://purls.helmholtz-metadaten.de/diso#hasShapeFunction"/>
<owl:allValuesFrom rdf:resource="https://purls.helmholtz-metadaten.de/diso#ShapeFunction"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://purls.helmholtz-metadaten.de/diso#slipArea"/>
<owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
<owl:onDataRange rdf:resource="http://www.w3.org/2001/XMLSchema#double"/>
</owl:Restriction>
</rdfs:subClassOf>
<owl:disjointWith rdf:resource="https://purls.helmholtz-metadaten.de/diso#Line"/>
<rdfs:comment xml:lang="en">The numerical representation of the dislocation line that is discretized into the number of segments.</rdfs:comment>
<rdfs:label xml:lang="en">Discretized Line</rdfs:label>
</owl:Class>
<!-- https://purls.helmholtz-metadaten.de/diso#Dislocation -->
<owl:Class rdf:about="https://purls.helmholtz-metadaten.de/diso#Dislocation">
<rdfs:subClassOf rdf:resource="https://purls.helmholtz-metadaten.de/diso#LineDefect"/>
<rdfs:subClassOf>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="https://purls.helmholtz-metadaten.de/diso#hasBurgersVector"/>
<owl:someValuesFrom rdf:resource="https://purls.helmholtz-metadaten.de/diso#BurgersVector"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="https://purls.helmholtz-metadaten.de/diso#hasBurgersVector"/>
<owl:allValuesFrom rdf:resource="https://purls.helmholtz-metadaten.de/diso#BurgersVector"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="https://purls.helmholtz-metadaten.de/diso#hasLineSense"/>
<owl:someValuesFrom rdf:resource="https://purls.helmholtz-metadaten.de/diso#LineSense"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="https://purls.helmholtz-metadaten.de/diso#hasLineSense"/>
<owl:allValuesFrom rdf:resource="https://purls.helmholtz-metadaten.de/diso#LineSense"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://purls.helmholtz-metadaten.de/diso#hasMathematicalRepresentation"/>
<owl:someValuesFrom rdf:resource="https://purls.helmholtz-metadaten.de/diso#Line"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://purls.helmholtz-metadaten.de/diso#movesOn"/>
<owl:someValuesFrom rdf:resource="https://purls.helmholtz-metadaten.de/diso#SlipPlane"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://purls.helmholtz-metadaten.de/diso#observedBy"/>
<owl:someValuesFrom rdf:resource="https://purls.helmholtz-metadaten.de/diso#FieldIonMicroscopy"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://purls.helmholtz-metadaten.de/diso#observedBy"/>
<owl:someValuesFrom rdf:resource="https://purls.helmholtz-metadaten.de/diso#TransmissionElectronMicroscopy"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://purls.helmholtz-metadaten.de/diso#resultsIn"/>
<owl:someValuesFrom rdf:resource="https://purls.helmholtz-metadaten.de/diso#LatticeDisplacement"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">Linear or one-dimensional defect around which some of the atoms are misaligned. In the mesoscale, a dislocation is a line object that is a boundary separating the regions on the slip plane which have undergone slip from those that have not.</rdfs:comment>
<rdfs:comment xml:lang="en">The presence of dislocation introduces local disturbance of the atomic-level geometry.</rdfs:comment>
<rdfs:label xml:lang="en">Dislocation</rdfs:label>
<rdfs:label xml:lang="de">Versetzung</rdfs:label>
</owl:Class>
<!-- https://purls.helmholtz-metadaten.de/diso#EdgeDislocation -->
<owl:Class rdf:about="https://purls.helmholtz-metadaten.de/diso#EdgeDislocation">
<rdfs:subClassOf rdf:resource="https://purls.helmholtz-metadaten.de/diso#Dislocation"/>
<owl:disjointWith rdf:resource="https://purls.helmholtz-metadaten.de/diso#ScrewDislocation"/>
<rdfs:comment xml:lang="en">A dislocation that has a line sense perpendicular to its Burgers vector.</rdfs:comment>
<rdfs:label xml:lang="en">Edge Dislocation</rdfs:label>
</owl:Class>