-
Notifications
You must be signed in to change notification settings - Fork 9
/
mdo-structure.owl
992 lines (732 loc) · 47.5 KB
/
mdo-structure.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
<?xml version="1.0"?>
<rdf:RDF xmlns="https://w3id.org/mdo/structure/"
xml:base="https://w3id.org/mdo/structure/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:obo="http://purl.obolibrary.org/obo/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:core="https://w3id.org/mdo/core/"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:structure="https://w3id.org/mdo/structure/">
<owl:Ontology rdf:about="https://w3id.org/mdo/structure/">
<owl:versionIRI rdf:resource="https://w3id.org/mdo/structure/1.1/"/>
<owl:imports rdf:resource="https://w3id.org/mdo/core/1.1/"/>
<dcterms:contributor rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Patrick Lambrix</dcterms:contributor>
<dcterms:contributor rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Rickard Armiento</dcterms:contributor>
<dcterms:created>2019-11-07</dcterms:created>
<dcterms:creator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Huanyu Li</dcterms:creator>
<dcterms:license>https://github.com/LiUSemWeb/Materials-Design-Ontology/blob/master/LICENSE</dcterms:license>
<dcterms:title xml:lang="en">Materials Design Ontology - Structure Module</dcterms:title>
<vann:preferredNamespacePrefix>structure</vann:preferredNamespacePrefix>
<vann:preferredNamespaceUri>https://w3id.org/mdo/structure/1.1/</vann:preferredNamespaceUri>
<rdfs:comment xml:lang="en">This is the structure module in Materials Design Ontology.</rdfs:comment>
<rdfs:seeAlso>https://github.com/LiUSemWeb/Materials-Design-Ontology</rdfs:seeAlso>
<owl:versionInfo rdf:datatype="http://www.w3.org/2001/XMLSchema#decimal">1.1</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://purl.org/vocab/vann/preferredNamespaceUri -->
<owl:AnnotationProperty rdf:about="http://purl.org/vocab/vann/preferredNamespaceUri"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Datatypes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://www.w3.org/1999/02/22-rdf-syntax-ns#List -->
<rdfs:Datatype rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- https://w3id.org/mdo/structure/hasAngleVector -->
<owl:ObjectProperty rdf:about="https://w3id.org/mdo/structure/hasAngleVector">
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://w3id.org/mdo/structure/Basis"/>
<rdf:Description rdf:about="https://w3id.org/mdo/structure/Lattice"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="https://w3id.org/mdo/structure/AngleTriple"/>
<rdfs:comment xml:lang="en">hasAngleVector represents the relationship between a basis or a lattice and an angle triple it has.</rdfs:comment>
<rdfs:label xml:lang="en">has angle vector</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/mdo/structure/hasAxisVectors -->
<owl:ObjectProperty rdf:about="https://w3id.org/mdo/structure/hasAxisVectors">
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://w3id.org/mdo/structure/Basis"/>
<rdf:Description rdf:about="https://w3id.org/mdo/structure/Lattice"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="https://w3id.org/mdo/structure/AxisVectors"/>
<rdfs:comment xml:lang="en">hasAxisVectors represents the relationship between a basis or a lattice and a axis-vectors it has.</rdfs:comment>
<rdfs:label xml:lang="en">has axis vectors</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/mdo/structure/hasBasis -->
<owl:ObjectProperty rdf:about="https://w3id.org/mdo/structure/hasBasis">
<rdfs:domain rdf:resource="https://w3id.org/mdo/core/Structure"/>
<rdfs:range rdf:resource="https://w3id.org/mdo/structure/Basis"/>
<rdfs:comment xml:lang="en">hasBasis represents the relationship between a structure and the bases it has.</rdfs:comment>
<rdfs:label xml:lang="en">has basis</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/mdo/structure/hasCartesianCoordinates -->
<owl:ObjectProperty rdf:about="https://w3id.org/mdo/structure/hasCartesianCoordinates">
<rdfs:domain rdf:resource="https://w3id.org/mdo/structure/Site"/>
<rdfs:range rdf:resource="https://w3id.org/mdo/structure/CoordinateVector"/>
<rdfs:comment xml:lang="en">hasCartesianCoordinates represents the relationship between a site and coordinates in cartesian format it has.</rdfs:comment>
<rdfs:label xml:lang="en">has cartesian coordinates</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/mdo/structure/hasComposition -->
<owl:ObjectProperty rdf:about="https://w3id.org/mdo/structure/hasComposition">
<rdfs:domain rdf:resource="https://w3id.org/mdo/core/Structure"/>
<rdfs:range rdf:resource="https://w3id.org/mdo/structure/Composition"/>
<rdfs:comment xml:lang="en">hasComposition represents the relationship between a structure and a a composition it has.</rdfs:comment>
<rdfs:label xml:lang="en">has composition</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/mdo/structure/hasElement -->
<owl:ObjectProperty rdf:about="https://w3id.org/mdo/structure/hasElement">
<rdfs:domain rdf:resource="https://w3id.org/mdo/structure/Species"/>
<rdfs:range rdf:resource="https://w3id.org/mdo/structure/Atom"/>
<rdfs:comment xml:lang="en">hasElement represents the relationship between a species and atoms it has.</rdfs:comment>
<rdfs:label xml:lang="en">has element</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/mdo/structure/hasFractionalCoordinates -->
<owl:ObjectProperty rdf:about="https://w3id.org/mdo/structure/hasFractionalCoordinates">
<rdfs:domain rdf:resource="https://w3id.org/mdo/structure/Site"/>
<rdfs:range rdf:resource="https://w3id.org/mdo/structure/CoordinateVector"/>
<rdfs:comment xml:lang="en">hasFractionalCoordinates represents the relationship between a site and coordinates in fractional format it has.</rdfs:comment>
<rdfs:label xml:lang="en">has fractional coordinates</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/mdo/structure/hasLattice -->
<owl:ObjectProperty rdf:about="https://w3id.org/mdo/structure/hasLattice">
<rdfs:domain rdf:resource="https://w3id.org/mdo/core/Structure"/>
<rdfs:range rdf:resource="https://w3id.org/mdo/structure/Lattice"/>
<rdfs:comment xml:lang="en">hasLattice represents the relationship between a structure and lattices in it has.</rdfs:comment>
<rdfs:label xml:lang="en">has lattice</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/mdo/structure/hasLengthVector -->
<owl:ObjectProperty rdf:about="https://w3id.org/mdo/structure/hasLengthVector">
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://w3id.org/mdo/structure/Basis"/>
<rdf:Description rdf:about="https://w3id.org/mdo/structure/Lattice"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="https://w3id.org/mdo/structure/LengthTriple"/>
<rdfs:comment xml:lang="en">hasLengthVector represents the relationship between a basis or a lattice and a length triple it has.</rdfs:comment>
<rdfs:label xml:lang="en">has length vector</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/mdo/structure/hasOccupancy -->
<owl:ObjectProperty rdf:about="https://w3id.org/mdo/structure/hasOccupancy">
<rdfs:domain rdf:resource="https://w3id.org/mdo/core/Structure"/>
<rdfs:range rdf:resource="https://w3id.org/mdo/structure/Occupancy"/>
<rdfs:comment xml:lang="en">hasOccupancy represents the relationship between a structure and occupancies it has.</rdfs:comment>
<rdfs:label xml:lang="en">has occupancy</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/mdo/structure/hasPointGroup -->
<owl:ObjectProperty rdf:about="https://w3id.org/mdo/structure/hasPointGroup">
<rdfs:domain rdf:resource="https://w3id.org/mdo/structure/SpaceGroup"/>
<rdfs:range rdf:resource="https://w3id.org/mdo/structure/PointGroup"/>
<rdfs:comment xml:lang="en">hasPointGroup represents the relationship between a space group and point groups it corresponds to.</rdfs:comment>
<rdfs:label xml:lang="en">has point group</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/mdo/structure/hasSite -->
<owl:ObjectProperty rdf:about="https://w3id.org/mdo/structure/hasSite">
<rdfs:domain rdf:resource="https://w3id.org/mdo/structure/Occupancy"/>
<rdfs:range rdf:resource="https://w3id.org/mdo/structure/Site"/>
<rdfs:comment xml:lang="en">hasSite represents the relationship between an occupancy and sites it ties.</rdfs:comment>
<rdfs:label xml:lang="en">has site</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/mdo/structure/hasSpaceGroup -->
<owl:ObjectProperty rdf:about="https://w3id.org/mdo/structure/hasSpaceGroup">
<rdfs:domain rdf:resource="https://w3id.org/mdo/core/Structure"/>
<rdfs:range rdf:resource="https://w3id.org/mdo/structure/SpaceGroup"/>
<rdfs:comment xml:lang="en">hasSpaceGroup represents the relationship between a structure and a space group it corresponds to.</rdfs:comment>
<rdfs:label xml:lang="en">has space group</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/mdo/structure/hasSpecies -->
<owl:ObjectProperty rdf:about="https://w3id.org/mdo/structure/hasSpecies">
<rdfs:domain rdf:resource="https://w3id.org/mdo/structure/Occupancy"/>
<rdfs:range rdf:resource="https://w3id.org/mdo/structure/Species"/>
<rdfs:comment xml:lang="en">hasSpecies represents the relationship between an occupancy and species it ties.</rdfs:comment>
<rdfs:label xml:lang="en">has species</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/mdo/structure/has_a_axisVector -->
<owl:ObjectProperty rdf:about="https://w3id.org/mdo/structure/has_a_axisVector">
<rdfs:domain rdf:resource="https://w3id.org/mdo/structure/AxisVectors"/>
<rdfs:range rdf:resource="https://w3id.org/mdo/structure/CoordinateVector"/>
<rdfs:comment xml:lang="en">has_a_axisVector represents the relationship between an axis-vectors and a coordinate vector to define the coordiantes of the translation vector (a).</rdfs:comment>
<rdfs:label xml:lang="en">has a_axis vector</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/mdo/structure/has_b_axisVector -->
<owl:ObjectProperty rdf:about="https://w3id.org/mdo/structure/has_b_axisVector">
<rdfs:domain rdf:resource="https://w3id.org/mdo/structure/AxisVectors"/>
<rdfs:range rdf:resource="https://w3id.org/mdo/structure/CoordinateVector"/>
<rdfs:comment xml:lang="en">has_b_axisVector represents the relationship between an axis-vectors and a coordinate vector to define the coordiantes of the translation vector (b).</rdfs:comment>
<rdfs:label xml:lang="en">has b_axis vector</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/mdo/structure/has_c_axisVector -->
<owl:ObjectProperty rdf:about="https://w3id.org/mdo/structure/has_c_axisVector">
<rdfs:domain rdf:resource="https://w3id.org/mdo/structure/AxisVectors"/>
<rdfs:range rdf:resource="https://w3id.org/mdo/structure/CoordinateVector"/>
<rdfs:comment xml:lang="en">has_c_axisVector represents the relationship between an axis-vectors and a coordinate vector to define the coordiantes of the translation vector (c).</rdfs:comment>
<rdfs:label xml:lang="en">has c_axis vector</rdfs:label>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Data properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- https://w3id.org/mdo/structure/Angle_alpha -->
<owl:DatatypeProperty rdf:about="https://w3id.org/mdo/structure/Angle_alpha">
<rdfs:domain rdf:resource="https://w3id.org/mdo/structure/AngleTriple"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#double"/>
<rdfs:comment xml:lang="en">Angle_alpha represents that an angle triple has the alpha angle's value in a double.</rdfs:comment>
<rdfs:label xml:lang="en">Angle_alpha</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/mdo/structure/Angle_beta -->
<owl:DatatypeProperty rdf:about="https://w3id.org/mdo/structure/Angle_beta">
<rdfs:domain rdf:resource="https://w3id.org/mdo/structure/AngleTriple"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#double"/>
<rdfs:comment xml:lang="en">Angle_beta represents that an angle triple has the beta angle's value in a double.</rdfs:comment>
<rdfs:label xml:lang="en">Angle_beta</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/mdo/structure/Angle_gamma -->
<owl:DatatypeProperty rdf:about="https://w3id.org/mdo/structure/Angle_gamma">
<rdfs:domain rdf:resource="https://w3id.org/mdo/structure/AngleTriple"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#double"/>
<rdfs:comment xml:lang="en">Angle_gamma represents that an angle triple has the gamma angle's value in a double.</rdfs:comment>
<rdfs:label xml:lang="en">Angle_gamma</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/mdo/structure/AnonymousFormula -->
<owl:DatatypeProperty rdf:about="https://w3id.org/mdo/structure/AnonymousFormula">
<rdfs:domain rdf:resource="https://w3id.org/mdo/structure/Composition"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="en">AnonymousFormula represents that a composition has the anonymous formula in a string.</rdfs:comment>
<rdfs:label xml:lang="en">anonymous formula</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/mdo/structure/DescriptiveFormula -->
<owl:DatatypeProperty rdf:about="https://w3id.org/mdo/structure/DescriptiveFormula">
<rdfs:domain rdf:resource="https://w3id.org/mdo/structure/Composition"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="en">DescriptiveFormula represents that a composition has the descriptive formula in a string.</rdfs:comment>
<rdfs:label xml:lang="en">descriptive formula</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/mdo/structure/ElementRatio -->
<owl:DatatypeProperty rdf:about="https://w3id.org/mdo/structure/ElementRatio">
<rdfs:domain rdf:resource="https://w3id.org/mdo/structure/Species"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#double"/>
<rdfs:comment xml:lang="en">ElementRatio represents that a species has the ratio in a double.</rdfs:comment>
<rdfs:label xml:lang="en">element ratio</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/mdo/structure/HillFormula -->
<owl:DatatypeProperty rdf:about="https://w3id.org/mdo/structure/HillFormula">
<rdfs:domain rdf:resource="https://w3id.org/mdo/structure/Composition"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="en">HillFormula represents that a composition has the hill formula in a string.</rdfs:comment>
<rdfs:label xml:lang="en">hill formula</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/mdo/structure/LatticeType -->
<owl:DatatypeProperty rdf:about="https://w3id.org/mdo/structure/LatticeType">
<rdfs:domain rdf:resource="https://w3id.org/mdo/structure/Lattice"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="en">LatticeType represents that a lattice has the type in a string.</rdfs:comment>
<rdfs:label xml:lang="en">lattice type</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/mdo/structure/LatticeVolume -->
<owl:DatatypeProperty rdf:about="https://w3id.org/mdo/structure/LatticeVolume">
<rdfs:domain rdf:resource="https://w3id.org/mdo/structure/Lattice"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#double"/>
<rdfs:comment xml:lang="en">LatticeVolume represents that a lattice has the volume in a double.</rdfs:comment>
<rdfs:label xml:lang="en">lattice volume</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/mdo/structure/Length_a -->
<owl:DatatypeProperty rdf:about="https://w3id.org/mdo/structure/Length_a">
<rdfs:domain rdf:resource="https://w3id.org/mdo/structure/LengthTriple"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#double"/>
<rdfs:comment xml:lang="en">Length_a represents that a length triple has the 'a' value in a double.</rdfs:comment>
<rdfs:label xml:lang="en">Length_a</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/mdo/structure/Length_b -->
<owl:DatatypeProperty rdf:about="https://w3id.org/mdo/structure/Length_b">
<rdfs:domain rdf:resource="https://w3id.org/mdo/structure/LengthTriple"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#double"/>
<rdfs:comment xml:lang="en">Length_b represents that a length triple has the 'b' value in a double.</rdfs:comment>
<rdfs:label xml:lang="en">Length_b</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/mdo/structure/Length_c -->
<owl:DatatypeProperty rdf:about="https://w3id.org/mdo/structure/Length_c">
<rdfs:domain rdf:resource="https://w3id.org/mdo/structure/LengthTriple"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#double"/>
<rdfs:comment xml:lang="en">Length_c represents that a length triple has the 'c' value in a double.</rdfs:comment>
<rdfs:label xml:lang="en">Length_c</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/mdo/structure/PointGroupHMName -->
<owl:DatatypeProperty rdf:about="https://w3id.org/mdo/structure/PointGroupHMName">
<rdfs:domain rdf:resource="https://w3id.org/mdo/structure/PointGroup"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="en">PointGroupHMName represents that a point group has the Hermann-Mauguin in a string.</rdfs:comment>
<rdfs:label xml:lang="en">point group Hermann-Mauguin name</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/mdo/structure/ReducedFormula -->
<owl:DatatypeProperty rdf:about="https://w3id.org/mdo/structure/ReducedFormula">
<rdfs:domain rdf:resource="https://w3id.org/mdo/structure/Composition"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="en">ReducedFormula represents that a composition has the reduced formula in a string.</rdfs:comment>
<rdfs:label xml:lang="en">reduced formula</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/mdo/structure/SpaceGroupID -->
<owl:DatatypeProperty rdf:about="https://w3id.org/mdo/structure/SpaceGroupID">
<rdfs:domain rdf:resource="https://w3id.org/mdo/structure/SpaceGroup"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#integer"/>
<rdfs:comment xml:lang="en">SpaceGroupID represents that a space group has the unique ID in an integer.</rdfs:comment>
<rdfs:label xml:lang="en">space group ID</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/mdo/structure/SpaceGroupSymbol -->
<owl:DatatypeProperty rdf:about="https://w3id.org/mdo/structure/SpaceGroupSymbol">
<rdfs:domain rdf:resource="https://w3id.org/mdo/structure/SpaceGroup"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="en">SpaceGroupSymbol represents that a space group has the symbol in a string.</rdfs:comment>
<rdfs:label xml:lang="en">space group symbol</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/mdo/structure/X_axisCoordinate -->
<owl:DatatypeProperty rdf:about="https://w3id.org/mdo/structure/X_axisCoordinate">
<rdfs:domain rdf:resource="https://w3id.org/mdo/structure/CoordinateVector"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#double"/>
<rdfs:comment xml:lang="en">X_axisCoordinate represents that a coordinate vector has the value of a coordinate in a double in X axis.</rdfs:comment>
<rdfs:label xml:lang="en">X_axis coordinate</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/mdo/structure/Y_axisCoordinate -->
<owl:DatatypeProperty rdf:about="https://w3id.org/mdo/structure/Y_axisCoordinate">
<rdfs:domain rdf:resource="https://w3id.org/mdo/structure/CoordinateVector"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#double"/>
<rdfs:comment xml:lang="en">Y_axisCoordinate represents that a coordinate vector has the value of a coordinate in a double in Y axis.</rdfs:comment>
<rdfs:label xml:lang="en">Y_axis coordinate</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/mdo/structure/Z_axisCoordinate -->
<owl:DatatypeProperty rdf:about="https://w3id.org/mdo/structure/Z_axisCoordinate">
<rdfs:domain rdf:resource="https://w3id.org/mdo/structure/CoordinateVector"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#double"/>
<rdfs:comment xml:lang="en">Z_axisCoordinate represents that a coordinate vector has the value of a coordinate in a double in Z axis.</rdfs:comment>
<rdfs:label xml:lang="en">Z_axis coordinate</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/mdo/structure/formula -->
<owl:DatatypeProperty rdf:about="https://w3id.org/mdo/structure/formula">
<rdfs:label xml:lang="en">formula</rdfs:label>
</owl:DatatypeProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- https://w3id.org/mdo/core/Structure -->
<owl:Class rdf:about="https://w3id.org/mdo/core/Structure">
<rdfs:subClassOf>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/hasBasis"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/mdo/structure/Basis"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/hasBasis"/>
<owl:allValuesFrom rdf:resource="https://w3id.org/mdo/structure/Basis"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/hasLattice"/>
<owl:allValuesFrom rdf:resource="https://w3id.org/mdo/structure/Lattice"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/hasOccupancy"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/mdo/structure/Occupancy"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/hasOccupancy"/>
<owl:allValuesFrom rdf:resource="https://w3id.org/mdo/structure/Occupancy"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/hasComposition"/>
<owl:allValuesFrom rdf:resource="https://w3id.org/mdo/structure/Composition"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/hasComposition"/>
<owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
<owl:onClass rdf:resource="https://w3id.org/mdo/structure/Composition"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/hasSpaceGroup"/>
<owl:allValuesFrom rdf:resource="https://w3id.org/mdo/structure/SpaceGroup"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/hasSpaceGroup"/>
<owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
<owl:onClass rdf:resource="https://w3id.org/mdo/structure/SpaceGroup"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</rdfs:subClassOf>
</owl:Class>
<!-- https://w3id.org/mdo/structure/AngleTriple -->
<owl:Class rdf:about="https://w3id.org/mdo/structure/AngleTriple">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/Angle_alpha"/>
<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:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/Angle_beta"/>
<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:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/Angle_gamma"/>
<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">A angle triple is a vector of three angles which represent the angles among three bases in a cell.</rdfs:comment>
<rdfs:label xml:lang="en">Angle Triple</rdfs:label>
</owl:Class>
<!-- https://w3id.org/mdo/structure/Atom -->
<owl:Class rdf:about="https://w3id.org/mdo/structure/Atom">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/formula"/>
<owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
<owl:onDataRange rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">Atom</rdfs:label>
</owl:Class>
<!-- https://w3id.org/mdo/structure/AxisVectors -->
<owl:Class rdf:about="https://w3id.org/mdo/structure/AxisVectors">
<rdfs:subClassOf>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/has_a_axisVector"/>
<owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
<owl:onClass rdf:resource="https://w3id.org/mdo/structure/CoordinateVector"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/has_b_axisVector"/>
<owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
<owl:onClass rdf:resource="https://w3id.org/mdo/structure/CoordinateVector"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/has_c_axisVector"/>
<owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
<owl:onClass rdf:resource="https://w3id.org/mdo/structure/CoordinateVector"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">An axis-vectors is the three vectors which represent the bases of cell.</rdfs:comment>
<rdfs:label xml:lang="en">Axis Vectors</rdfs:label>
</owl:Class>
<!-- https://w3id.org/mdo/structure/Basis -->
<owl:Class rdf:about="https://w3id.org/mdo/structure/Basis">
<rdfs:subClassOf>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/hasAngleVector"/>
<owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
<owl:onClass rdf:resource="https://w3id.org/mdo/structure/AngleTriple"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/hasLengthVector"/>
<owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
<owl:onClass rdf:resource="https://w3id.org/mdo/structure/LengthTriple"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/hasAxisVectors"/>
<owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
<owl:onClass rdf:resource="https://w3id.org/mdo/structure/AxisVectors"/>
</owl:Restriction>
</owl:unionOf>
</owl:Class>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">A basis defines a spatial unit used to express fractional coordinates.</rdfs:comment>
<rdfs:label xml:lang="en">Basis</rdfs:label>
</owl:Class>
<!-- https://w3id.org/mdo/structure/Composition -->
<owl:Class rdf:about="https://w3id.org/mdo/structure/Composition">
<rdfs:comment xml:lang="en">A composition is used to represent what chemical elements composing a structure and the ratio of the chemical elements.</rdfs:comment>
<rdfs:label xml:lang="en">Composition</rdfs:label>
</owl:Class>
<!-- https://w3id.org/mdo/structure/CoordinateVector -->
<owl:Class rdf:about="https://w3id.org/mdo/structure/CoordinateVector">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/X_axisCoordinate"/>
<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:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/Y_axisCoordinate"/>
<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:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/Z_axisCoordinate"/>
<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">A coordinate vector is the coordinates of a point in space.</rdfs:comment>
<rdfs:label xml:lang="en">Coordinate Vector</rdfs:label>
</owl:Class>
<!-- https://w3id.org/mdo/structure/Lattice -->
<owl:Class rdf:about="https://w3id.org/mdo/structure/Lattice">
<rdfs:subClassOf>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/hasAngleVector"/>
<owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
<owl:onClass rdf:resource="https://w3id.org/mdo/structure/AngleTriple"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/hasLengthVector"/>
<owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
<owl:onClass rdf:resource="https://w3id.org/mdo/structure/LengthTriple"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/hasAxisVectors"/>
<owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
<owl:onClass rdf:resource="https://w3id.org/mdo/structure/AxisVectors"/>
</owl:Restriction>
</owl:unionOf>
</owl:Class>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">A lattice defines a peroidic arrangement of one or more atoms.</rdfs:comment>
<rdfs:label xml:lang="en">Lattice</rdfs:label>
</owl:Class>
<!-- https://w3id.org/mdo/structure/LengthTriple -->
<owl:Class rdf:about="https://w3id.org/mdo/structure/LengthTriple">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/Length_a"/>
<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:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/Length_b"/>
<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:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/Length_c"/>
<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">A length triple defines the three parameters (a, b, c) that represent the lengths in three axes respectively.</rdfs:comment>
<rdfs:label xml:lang="en">Length Triple</rdfs:label>
</owl:Class>
<!-- https://w3id.org/mdo/structure/Occupancy -->
<owl:Class rdf:about="https://w3id.org/mdo/structure/Occupancy">
<rdfs:subClassOf>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/hasSite"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/mdo/structure/Site"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/hasSite"/>
<owl:allValuesFrom rdf:resource="https://w3id.org/mdo/structure/Site"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/hasSpecies"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/mdo/structure/Species"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/hasSpecies"/>
<owl:allValuesFrom rdf:resource="https://w3id.org/mdo/structure/Species"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">An occupancy ties a specific species to a site.</rdfs:comment>
<rdfs:label xml:lang="en">Occupancy</rdfs:label>
</owl:Class>
<!-- https://w3id.org/mdo/structure/PointGroup -->
<owl:Class rdf:about="https://w3id.org/mdo/structure/PointGroup">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/PointGroupHMName"/>
<owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
<owl:onDataRange rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">A group of linear mappings of vector space, which is corresonpond to the group of motions in point space determining the symmetry of the macroscopic crystal, is called the point group of the crystal, furthermore of the crystal structure, and is also called the point group of its space group.</rdfs:comment>
<rdfs:label xml:lang="en">Point Group</rdfs:label>
<rdfs:seeAlso xml:lang="en">International Tables for Crystallography, Volume A, Fourth, revised edition, Section 8.1.5.</rdfs:seeAlso>
</owl:Class>
<!-- https://w3id.org/mdo/structure/Site -->
<owl:Class rdf:about="https://w3id.org/mdo/structure/Site">
<rdfs:subClassOf>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/hasCartesianCoordinates"/>
<owl:allValuesFrom rdf:resource="https://w3id.org/mdo/structure/CoordinateVector"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/hasCartesianCoordinates"/>
<owl:maxQualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxQualifiedCardinality>
<owl:onClass rdf:resource="https://w3id.org/mdo/structure/CoordinateVector"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/hasFractionalCoordinates"/>
<owl:allValuesFrom rdf:resource="https://w3id.org/mdo/structure/CoordinateVector"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/hasFractionalCoordinates"/>
<owl:maxQualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxQualifiedCardinality>
<owl:onClass rdf:resource="https://w3id.org/mdo/structure/CoordinateVector"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">A site is a point in a lattice.</rdfs:comment>
<rdfs:label xml:lang="en">Site</rdfs:label>
</owl:Class>
<!-- https://w3id.org/mdo/structure/SpaceGroup -->
<owl:Class rdf:about="https://w3id.org/mdo/structure/SpaceGroup">
<rdfs:subClassOf>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/hasPointGroup"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/mdo/structure/PointGroup"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/hasPointGroup"/>
<owl:allValuesFrom rdf:resource="https://w3id.org/mdo/structure/PointGroup"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/SpaceGroupID"/>
<owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
<owl:onDataRange rdf:resource="http://www.w3.org/2001/XMLSchema#integer"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/SpaceGroupSymbol"/>
<owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
<owl:onDataRange rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">A space group is the symmetry group of a three-dimensional crystal pattern is called its space group.</rdfs:comment>
<rdfs:label xml:lang="en">Space Group</rdfs:label>
<rdfs:seeAlso xml:lang="en">International Tables for Crystallography, Volume !, Fourth, revised edition, Section 8.1.5.</rdfs:seeAlso>
</owl:Class>
<!-- https://w3id.org/mdo/structure/Species -->
<owl:Class rdf:about="https://w3id.org/mdo/structure/Species">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/mdo/structure/hasElement"/>
<owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
<owl:onClass rdf:resource="https://w3id.org/mdo/structure/Atom"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">A species is the combination of atoms on each site.</rdfs:comment>
<rdfs:label xml:lang="en">Species</rdfs:label>
</owl:Class>
</rdf:RDF>
<!-- Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi -->