forked from simontaurus/Onto2Wiki
-
Notifications
You must be signed in to change notification settings - Fork 1
/
BattINFO_inferred.owl
13827 lines (10065 loc) · 897 KB
/
BattINFO_inferred.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="http://emmo.info/BattINFO#"
xml:base="http://emmo.info/BattINFO"
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:emmo="http://emmo.info/emmo#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:terms="http://purl.org/dc/terms/">
<owl:Ontology rdf:about="http://emmo.info/BattINFO">
<owl:versionIRI rdf:resource="http://emmo.info/BattINFO/0.1.0"/>
<terms:abstract>A toplevel battery interface domain ontology based on EMMO.
This file is intended to contain information on the whole battery, and imports the submodules electrode and saltbridge.
Released under the Creative Commons license Attribution 4.0 International (CC BY 4.0).</terms:abstract>
<terms:abstract>A toplevel battery interface domain ontology based on EMMO.
This file is intended to be empty and merely collecting the other ontologies.
Released under the Creative Commons license Attribution 4.0 International (CC BY 4.0).</terms:abstract>
<terms:abstract xml:lang="en">Common properties for batteries and their interfaces.
Released under the Creative Commons license Attribution 4.0 International (CC BY 4.0).</terms:abstract>
<terms:abstract xml:lang="en">Domain ontology for characterisation.
Currently focusing on diffraction.
Released under the Creative Commons license Attribution 4.0 International (CC BY 4.0).</terms:abstract>
<terms:abstract xml:lang="en">Domain ontology for models relevant to battery development.
Released under the Creative Commons license Attribution 4.0 International (CC BY 4.0).</terms:abstract>
<terms:abstract xml:lang="en">Domain ontology for semiosis processes in battery development.
Released under the Creative Commons license Attribution 4.0 International (CC BY 4.0).</terms:abstract>
<terms:abstract xml:lang="en">European Materials & Modelling Ontology (EMMO)
EMMO is a multidisciplinary effort to develop a standard representational framework (the ontology) based on current materials modelling knowledge, including physical sciences, analytical philosophy and information and communication technologies.
It provides the connection between the physical world, materials characterisation world and materials modelling world.
EMMO is released under a Creative Commons license Attribution 4.0 International (CC BY 4.0).</terms:abstract>
<terms:abstract xml:lang="en">Everything needed to describe fundamental concepts in electrochemistry common to all electrochemical systems.
Released under the Creative Commons license Attribution 4.0 International (CC BY 4.0).</terms:abstract>
<terms:abstract xml:lang="en">Generic concepts that are intended to eventually be moved into EMMO middle.
Released under the Creative Commons license Attribution 4.0 International (CC BY 4.0).</terms:abstract>
<terms:contributor>Access, DE</terms:contributor>
<terms:contributor>Fraunhofer IWM, DE</terms:contributor>
<terms:contributor>Goldbeck Consulting Ltd (UK)</terms:contributor>
<terms:contributor>SINTEF, NO</terms:contributor>
<terms:contributor>University of Bologna, IT</terms:contributor>
<terms:creator>Adham Hashibon</terms:creator>
<terms:creator>Emanuele Ghedini</terms:creator>
<terms:creator>Georg Schmitz</terms:creator>
<terms:creator>Gerhard Goldbeck</terms:creator>
<terms:creator>Jesper Friis</terms:creator>
<terms:license>https://creativecommons.org/licenses/by/4.0/legalcode</terms:license>
<terms:publisher>EMMC ASBL</terms:publisher>
<terms:title xml:lang="en">European Materials & Modelling Ontology</terms:title>
<rdfs:comment xml:lang="en">Contacts:
Gerhard Goldbeck
Goldbeck Consulting Ltd (UK)
email: [email protected]
Emanuele Ghedini
University of Bologna (IT)
email: [email protected]</rdfs:comment>
<rdfs:comment xml:lang="en">The EMMO requires FacT++ reasoner plugin in order to visualize all inferences and class hierarchy (ctrl+R hotkey in Protege).</rdfs:comment>
<owl:versionInfo>0.1.0</owl:versionInfo>
<owl:versionInfo>1.0.0-beta</owl:versionInfo>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://emmo.info/emmo#EMMO_1f1b164d_ec6a_4faa_8d5e_88bda62316cc -->
<owl:AnnotationProperty rdf:about="http://emmo.info/emmo#EMMO_1f1b164d_ec6a_4faa_8d5e_88bda62316cc">
<rdfs:comment xml:lang="en">URL to corresponing entity in QUDT.</rdfs:comment>
<rdfs:seeAlso rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.qudt.org/2.1/catalog/qudt-catalog.html</rdfs:seeAlso>
<skos:prefLabel xml:lang="en">qudtEntry</skos:prefLabel>
</owl:AnnotationProperty>
<!-- http://emmo.info/emmo#EMMO_50c298c2_55a2_4068_b3ac_4e948c33181f -->
<owl:AnnotationProperty rdf:about="http://emmo.info/emmo#EMMO_50c298c2_55a2_4068_b3ac_4e948c33181f">
<rdfs:comment xml:lang="en">URL to corresponding entry in the IEC Electropedia online database of ISO 80000 terms and definitions of quantities and units available at http://www.electropedia.org/.</rdfs:comment>
<rdfs:seeAlso rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.electropedia.org/</rdfs:seeAlso>
<skos:prefLabel xml:lang="en">IECEntry</skos:prefLabel>
</owl:AnnotationProperty>
<!-- http://emmo.info/emmo#EMMO_6dd685dd_1895_46e4_b227_be9f7d643c25 -->
<owl:AnnotationProperty rdf:about="http://emmo.info/emmo#EMMO_6dd685dd_1895_46e4_b227_be9f7d643c25">
<rdfs:comment xml:lang="en">URL to corresponding concept in DBpedia.</rdfs:comment>
<rdfs:seeAlso rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://wiki.dbpedia.org/</rdfs:seeAlso>
<skos:prefLabel xml:lang="en">dbpediaEntry</skos:prefLabel>
</owl:AnnotationProperty>
<!-- http://emmo.info/emmo#EMMO_705f27ae_954c_4f13_98aa_18473fc52b25 -->
<owl:AnnotationProperty rdf:about="http://emmo.info/emmo#EMMO_705f27ae_954c_4f13_98aa_18473fc52b25">
<skos:prefLabel xml:lang="en">etymology</skos:prefLabel>
</owl:AnnotationProperty>
<!-- http://emmo.info/emmo#EMMO_70fe84ff_99b6_4206_a9fc_9a8931836d84 -->
<owl:AnnotationProperty rdf:about="http://emmo.info/emmo#EMMO_70fe84ff_99b6_4206_a9fc_9a8931836d84">
<rdfs:comment xml:lang="en">Precise and univocal description of an ontological entity in the framework of an axiomatic system.
A definition uses entities in an ontological system to identify other derivate ontological entities within the same system.</rdfs:comment>
<skos:prefLabel xml:lang="en">definition</skos:prefLabel>
</owl:AnnotationProperty>
<!-- http://emmo.info/emmo#EMMO_8de5d5bf_db1c_40ac_b698_095ba3b18578 -->
<owl:AnnotationProperty rdf:about="http://emmo.info/emmo#EMMO_8de5d5bf_db1c_40ac_b698_095ba3b18578">
<emmo:EMMO_b432d2d5_25f4_4165_99c5_5935a7763c1a xml:lang="en">3‑1.1 (refers to length)</emmo:EMMO_b432d2d5_25f4_4165_99c5_5935a7763c1a>
<rdfs:comment xml:lang="en">Corresponding item number in ISO 80 000.</rdfs:comment>
<rdfs:seeAlso rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://www.iso.org/obp/ui/#iso:std:iso:80000:-1:ed-1:v1:en</rdfs:seeAlso>
<skos:prefLabel xml:lang="en">ISO80000Ref</skos:prefLabel>
</owl:AnnotationProperty>
<!-- http://emmo.info/emmo#EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 -->
<owl:AnnotationProperty rdf:about="http://emmo.info/emmo#EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9">
<rdfs:comment xml:lang="en">Short enlightening explanation of an ontological entity aimed to facilitate the connection between the ontological concept and a real-world object.
An elucidation provides the meta-ontological semiotic relation that connects an entity within the ontology, to a real-world entity outside the ontology.
This process is subjective, depends on the agent that draws this connection (e.g. the EMMO user, a machine), and is independent (outside) from the ontology representational capabilities.</rdfs:comment>
<skos:prefLabel xml:lang="en">elucidation</skos:prefLabel>
</owl:AnnotationProperty>
<!-- http://emmo.info/emmo#EMMO_a9b3d04c_7ceb_40a2_b8d3_28d514a770a8 -->
<owl:AnnotationProperty rdf:about="http://emmo.info/emmo#EMMO_a9b3d04c_7ceb_40a2_b8d3_28d514a770a8">
<rdfs:comment xml:lang="en">URL to CODATA Internationally recommended 2018 values of physical constants.</rdfs:comment>
<rdfs:seeAlso rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://physics.nist.gov/cuu/Constants/index.html</rdfs:seeAlso>
<skos:prefLabel xml:lang="en">codataEntry</skos:prefLabel>
</owl:AnnotationProperty>
<!-- http://emmo.info/emmo#EMMO_b432d2d5_25f4_4165_99c5_5935a7763c1a -->
<owl:AnnotationProperty rdf:about="http://emmo.info/emmo#EMMO_b432d2d5_25f4_4165_99c5_5935a7763c1a">
<rdfs:comment xml:lang="en">Illustrative example of how the entity is used.</rdfs:comment>
<skos:prefLabel xml:lang="en">example</skos:prefLabel>
</owl:AnnotationProperty>
<!-- http://emmo.info/emmo#EMMO_bb49844b_45d7_4f0d_8cae_8e552cbc20d6 -->
<owl:AnnotationProperty rdf:about="http://emmo.info/emmo#EMMO_bb49844b_45d7_4f0d_8cae_8e552cbc20d6">
<emmo:EMMO_b432d2d5_25f4_4165_99c5_5935a7763c1a xml:lang="en">quantity value (term in VIM that corresponds to Quantity in EMMO)</emmo:EMMO_b432d2d5_25f4_4165_99c5_5935a7763c1a>
<rdfs:comment xml:lang="en">The term in the International vocabulary of metrology (VIM) (JCGM 200:2008) that corresponds to the annotated term in EMMO.</rdfs:comment>
<skos:prefLabel xml:lang="en">VIMTerm</skos:prefLabel>
</owl:AnnotationProperty>
<!-- http://emmo.info/emmo#EMMO_c84c6752_6d64_48cc_9500_e54a3c34898d -->
<owl:AnnotationProperty rdf:about="http://emmo.info/emmo#EMMO_c84c6752_6d64_48cc_9500_e54a3c34898d">
<rdfs:comment xml:lang="en">URL to corresponding Wikipedia entry.</rdfs:comment>
<rdfs:seeAlso>https://www.wikipedia.org/</rdfs:seeAlso>
<skos:prefLabel xml:lang="en">wikipediaEntry</skos:prefLabel>
</owl:AnnotationProperty>
<!-- http://emmo.info/emmo#EMMO_de178b12_5d35_4bca_8efa_a4193162571d -->
<owl:AnnotationProperty rdf:about="http://emmo.info/emmo#EMMO_de178b12_5d35_4bca_8efa_a4193162571d">
<rdfs:comment xml:lang="en">A unique string describing the physical dimensionality of a physical quantity.
See the comments of PhysicalDimension for a description of this "regex" string.</rdfs:comment>
<skos:prefLabel xml:lang="en">physicalDimension</skos:prefLabel>
</owl:AnnotationProperty>
<!-- http://emmo.info/emmo#EMMO_e55f2d7c_9893_48cd_b4a4_fdf38253bd20 -->
<owl:AnnotationProperty rdf:about="http://emmo.info/emmo#EMMO_e55f2d7c_9893_48cd_b4a4_fdf38253bd20">
<rdfs:comment xml:lang="en">IRI to corresponding concept in the Ontology of units of Measure</rdfs:comment>
<rdfs:seeAlso rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://enterpriseintegrationlab.github.io/icity/OM/doc/index-en.html</rdfs:seeAlso>
<rdfs:seeAlso rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://github.com/HajoRijgersberg/OM</rdfs:seeAlso>
<skos:prefLabel xml:lang="en">omMatch</skos:prefLabel>
</owl:AnnotationProperty>
<!-- http://emmo.info/emmo#EMMO_fe015383_afb3_44a6_ae86_043628697aa2 -->
<owl:AnnotationProperty rdf:about="http://emmo.info/emmo#EMMO_fe015383_afb3_44a6_ae86_043628697aa2">
<rdfs:comment xml:lang="en">DOI to corresponding concept in IUPAC</rdfs:comment>
<rdfs:seeAlso rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://goldbook.iupac.org/</rdfs:seeAlso>
<skos:prefLabel xml:lang="en">iupacEntry</skos:prefLabel>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/abstract -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/abstract"/>
<!-- http://purl.org/dc/terms/contributor -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/contributor"/>
<!-- 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/publisher -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/publisher"/>
<!-- http://purl.org/dc/terms/title -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/title"/>
<!-- http://www.w3.org/2000/01/rdf-schema#seeAlso -->
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#seeAlso">
<rdfs:comment xml:lang="en">EMMO applies the naming convension to its sub-properties of rdfs:seeAlso that their label must end with one of the following terms:
- 'Match': resolvable URLs to corresponding entity in another ontology
- 'Entry': resolvable URLs to a human readable resource describing the subject
- 'Ref': non-resolvable reference to a human readable resource describing the subject</rdfs:comment>
<rdfs:comment xml:lang="en">Indicate a resource that might provide additional information about the subject resource.</rdfs:comment>
</rdf:Description>
<!-- http://www.w3.org/2002/07/owl#minQualifiedCardinality -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2002/07/owl#minQualifiedCardinality"/>
<!-- http://www.w3.org/2002/07/owl#qualifiedCardinality -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2002/07/owl#qualifiedCardinality"/>
<!-- http://www.w3.org/2004/02/skos/core#altLabel -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#altLabel"/>
<!-- http://www.w3.org/2004/02/skos/core#prefLabel -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#prefLabel"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://emmo.info/emmo#EMMO_03212fd7_abfd_4828_9c8e_62c293052d4b -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_03212fd7_abfd_4828_9c8e_62c293052d4b">
<owl:equivalentProperty>
<rdf:Description>
<owl:inverseOf rdf:resource="http://emmo.info/emmo#EMMO_03212fd7_abfd_4828_9c8e_62c293052d4b"/>
</rdf:Description>
</owl:equivalentProperty>
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_ec2472ae_cf4a_46a5_8555_1556f5a6c3c5"/>
<rdfs:subPropertyOf>
<rdf:Description>
<owl:inverseOf rdf:resource="http://emmo.info/emmo#EMMO_ec2472ae_cf4a_46a5_8555_1556f5a6c3c5"/>
</rdf:Description>
</rdfs:subPropertyOf>
<owl:inverseOf rdf:resource="http://emmo.info/emmo#EMMO_03212fd7_abfd_4828_9c8e_62c293052d4b"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 xml:lang="en">The superclass for all EMMO mereotopological relations.</emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9>
<rdfs:comment xml:lang="en">Mereotopology merges mereological and topological concepts and provides relations between wholes, parts, boundaries, etc.</rdfs:comment>
<skos:prefLabel xml:lang="en">mereotopological</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_050b47b6_2583_43f7_95eb_a216b41cd5f6 -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_050b47b6_2583_43f7_95eb_a216b41cd5f6">
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_b2282816_b7a3_44c6_b2cb_3feff1ceb7fe"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AsymmetricProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#IrreflexiveProperty"/>
<rdfs:domain rdf:resource="http://emmo.info/emmo#EMMO_25a3da5e_eab1_42dd_8081_61dd09d34e1b"/>
<rdfs:range rdf:resource="http://emmo.info/emmo#EMMO_42fc460a_4bf3_4d0b_8dee_3c7efcefebb5"/>
<emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 xml:lang="en">hasSpatialLast refer to the last element in an ordered arrangement.</emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9>
<skos:prefLabel xml:lang="en">hasSpatialLast</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_0aa934ee_1ad4_4345_8a7f_bc73ec67c7e5 -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_0aa934ee_1ad4_4345_8a7f_bc73ec67c7e5">
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_e1097637_70d2_4895_973f_2396f04fa204"/>
<rdfs:range rdf:resource="http://emmo.info/emmo#EMMO_dd4a7f3e_ef56_466c_ac1a_d2716b5f87ec"/>
<skos:prefLabel xml:lang="en">hasQuantitativeProperty</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_16b510a6_0584_4134_bdb6_3bc185c17860 -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_16b510a6_0584_4134_bdb6_3bc185c17860">
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_0aa934ee_1ad4_4345_8a7f_bc73ec67c7e5"/>
<rdfs:range rdf:resource="http://emmo.info/emmo#EMMO_d8aa8e1f_b650_416d_88a0_5118de945456"/>
<emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 xml:lang="en">Assigns a quantity to an object by convention.</emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9>
<emmo:EMMO_b432d2d5_25f4_4165_99c5_5935a7763c1a xml:lang="en">An Hydrogen atom has the quantity atomic number Z = 1 as its conventional property.</emmo:EMMO_b432d2d5_25f4_4165_99c5_5935a7763c1a>
<rdfs:comment>An object can be represented by a quantity for the fact that it has been recognized to belong to a specific class.
The quantity is selected without an observation aimed to measure its actual value, but by convention.</rdfs:comment>
<skos:prefLabel xml:lang="en">hasConventionalQuantity</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_17e27c22_37e1_468c_9dd7_95e137f73e7f -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_17e27c22_37e1_468c_9dd7_95e137f73e7f">
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_8c898653_1118_4682_9bbf_6cc334d16a99"/>
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_d893d373_b579_4867_841e_1c2b31a8d2c6"/>
<rdfs:subPropertyOf>
<rdf:Description>
<owl:inverseOf rdf:resource="http://emmo.info/emmo#EMMO_d893d373_b579_4867_841e_1c2b31a8d2c6"/>
</rdf:Description>
</rdfs:subPropertyOf>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 xml:lang="en">If an object A is enclosed by another object B</emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9>
<rdfs:comment xml:lang="en">hasPart is transitive, asymmetric and reflexive.
Asymmetric and reflexive are not axiomatised since they would slow down the reasoner.</rdfs:comment>
<skos:prefLabel xml:lang="en">hasPart</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_2337e25c_3c60_43fc_a8f9_b11a3f974291 -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_2337e25c_3c60_43fc_a8f9_b11a3f974291">
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_ec2472ae_cf4a_46a5_8555_1556f5a6c3c5"/>
<rdfs:subPropertyOf>
<rdf:Description>
<owl:inverseOf rdf:resource="http://emmo.info/emmo#EMMO_ec2472ae_cf4a_46a5_8555_1556f5a6c3c5"/>
</rdf:Description>
</rdfs:subPropertyOf>
<emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 xml:lang="en">The generic EMMO semiotical relation.</emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9>
<skos:prefLabel xml:lang="en">semiotical</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_24c71baf_6db6_48b9_86c8_8c70cf36db0c -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_24c71baf_6db6_48b9_86c8_8c70cf36db0c">
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_39c3815d_8cae_4c8f_b2ff_eeba24bec455"/>
<skos:prefLabel xml:lang="en">hasModel</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_297999d6_c9e4_4262_9536_bd524d1c6e21 -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_297999d6_c9e4_4262_9536_bd524d1c6e21">
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_60577dea_9019_4537_ac41_80b0fb563d41"/>
<rdfs:range rdf:resource="http://emmo.info/emmo#EMMO_0cd58641_824c_4851_907f_f4c3be76630c"/>
<skos:prefLabel xml:lang="en">hasIndex</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_2a9fcd79_bc67_4b1a_8e64_9dfe505a0007 -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_2a9fcd79_bc67_4b1a_8e64_9dfe505a0007">
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_b2282816_b7a3_44c6_b2cb_3feff1ceb7fe"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AsymmetricProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#IrreflexiveProperty"/>
<rdfs:domain rdf:resource="http://emmo.info/emmo#EMMO_25a3da5e_eab1_42dd_8081_61dd09d34e1b"/>
<rdfs:range rdf:resource="http://emmo.info/emmo#EMMO_42fc460a_4bf3_4d0b_8dee_3c7efcefebb5"/>
<emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 xml:lang="en">hasSpatialFirst refer to the first element in an ordered arrangement.
hasSpatialFirst can either be used together with hasSpatialNext to declare spatially ordered linear lists or together with hasSpatialRest to declare general (possible branched) arrangements.</emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9>
<skos:prefLabel xml:lang="en">hasSpatialFirst</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_3446e167_c576_49d6_846c_215bb8878a55 -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_3446e167_c576_49d6_846c_215bb8878a55">
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_eb3518bf_f799_4f9e_8c3e_ce59af11453b"/>
<rdfs:domain rdf:resource="http://emmo.info/emmo#EMMO_54ee6b5e_5261_44a8_86eb_5717e7fdb9d0"/>
<rdfs:range rdf:resource="http://emmo.info/emmo#EMMO_1eed0732_e3f1_4b2c_a9c4_b4e75eeb5895"/>
<skos:prefLabel xml:lang="en">hasVariable</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_39c3815d_8cae_4c8f_b2ff_eeba24bec455 -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_39c3815d_8cae_4c8f_b2ff_eeba24bec455">
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_60577dea_9019_4537_ac41_80b0fb563d41"/>
<rdfs:range rdf:resource="http://emmo.info/emmo#EMMO_d7788d1a_020d_4c78_85a1_13563fcec168"/>
<skos:prefLabel xml:lang="en">hasIcon</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_499e24a5_5072_4c83_8625_fe3f96ae4a8d -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_499e24a5_5072_4c83_8625_fe3f96ae4a8d">
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_52d08d7d_e9e4_43e5_8508_d353e7e3a23a"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AsymmetricProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#IrreflexiveProperty"/>
<rdfs:domain rdf:resource="http://emmo.info/emmo#EMMO_e0954911_fc88_492a_9830_fdb238e28cc2"/>
<rdfs:range rdf:resource="http://emmo.info/emmo#EMMO_e0954911_fc88_492a_9830_fdb238e28cc2"/>
<emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 xml:lang="en">Relates a temporal ordered element to its following element.</emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9>
<skos:prefLabel xml:lang="en">hasTemporalNext</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_4d6504f1_c470_4ce9_b941_bbbebc9ab05d -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_4d6504f1_c470_4ce9_b941_bbbebc9ab05d">
<owl:equivalentProperty>
<rdf:Description>
<owl:inverseOf rdf:resource="http://emmo.info/emmo#EMMO_4d6504f1_c470_4ce9_b941_bbbebc9ab05d"/>
</rdf:Description>
</owl:equivalentProperty>
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_6703954e_34c4_4a15_a9e7_f313760ae1a8"/>
<rdfs:subPropertyOf>
<rdf:Description>
<owl:inverseOf rdf:resource="http://emmo.info/emmo#EMMO_6703954e_34c4_4a15_a9e7_f313760ae1a8"/>
</rdf:Description>
</rdfs:subPropertyOf>
<owl:inverseOf rdf:resource="http://emmo.info/emmo#EMMO_4d6504f1_c470_4ce9_b941_bbbebc9ab05d"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 xml:lang="en">Two objects are in contact if they share a lower dimensionality part (like a corner, edge or face) without actualy overlap.</emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9>
<skos:prefLabel xml:lang="en">hasContactWith</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_517dfaf9_4970_41ac_81ee_d031627d2c7c -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_517dfaf9_4970_41ac_81ee_d031627d2c7c">
<owl:equivalentProperty>
<rdf:Description>
<owl:inverseOf rdf:resource="http://emmo.info/emmo#EMMO_517dfaf9_4970_41ac_81ee_d031627d2c7c"/>
</rdf:Description>
</owl:equivalentProperty>
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_03212fd7_abfd_4828_9c8e_62c293052d4b"/>
<rdfs:subPropertyOf>
<rdf:Description>
<owl:inverseOf rdf:resource="http://emmo.info/emmo#EMMO_03212fd7_abfd_4828_9c8e_62c293052d4b"/>
</rdf:Description>
</rdfs:subPropertyOf>
<owl:inverseOf rdf:resource="http://emmo.info/emmo#EMMO_517dfaf9_4970_41ac_81ee_d031627d2c7c"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#IrreflexiveProperty"/>
<emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 xml:lang="en">Two objects are disconnected if they do not share any common portion of spacetime.</emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9>
<rdfs:comment xml:lang="en">Disconnected is a topological relation.</rdfs:comment>
<skos:prefLabel xml:lang="en">disconnected</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_52d08d7d_e9e4_43e5_8508_d353e7e3a23a -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_52d08d7d_e9e4_43e5_8508_d353e7e3a23a">
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_4d6504f1_c470_4ce9_b941_bbbebc9ab05d"/>
<rdfs:subPropertyOf>
<rdf:Description>
<owl:inverseOf rdf:resource="http://emmo.info/emmo#EMMO_4d6504f1_c470_4ce9_b941_bbbebc9ab05d"/>
</rdf:Description>
</rdfs:subPropertyOf>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AsymmetricProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#IrreflexiveProperty"/>
<rdfs:domain rdf:resource="http://emmo.info/emmo#EMMO_2e9ace8a_1155_45b5_a066_d5fd9774e76c"/>
<rdfs:range rdf:resource="http://emmo.info/emmo#EMMO_2e9ace8a_1155_45b5_a066_d5fd9774e76c"/>
<emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 xml:lang="en">Relates an ordered element to the following element.</emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9>
<skos:prefLabel xml:lang="en">hasNext</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_60577dea_9019_4537_ac41_80b0fb563d41 -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_60577dea_9019_4537_ac41_80b0fb563d41">
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_2337e25c_3c60_43fc_a8f9_b11a3f974291"/>
<rdfs:domain rdf:resource="http://emmo.info/emmo#EMMO_6f5af708_f825_4feb_a0d1_a8d813d3022b"/>
<rdfs:range rdf:resource="http://emmo.info/emmo#EMMO_b21a56ed_f969_4612_a6ec_cb7766f7f31d"/>
<skos:prefLabel xml:lang="en">hasSign</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_65a2c5b8_e4d8_4a51_b2f8_e55effc0547d -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_65a2c5b8_e4d8_4a51_b2f8_e55effc0547d">
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_7afbed84_7593_4a23_bd88_9d9c6b04e8f6"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#InverseFunctionalProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AsymmetricProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#IrreflexiveProperty"/>
<rdfs:domain rdf:resource="http://emmo.info/emmo#EMMO_52211e5e_d767_4812_845e_eb6b402c476a"/>
<rdfs:range rdf:resource="http://emmo.info/emmo#EMMO_36c79456_e29c_400d_8bd3_0eedddb82652"/>
<emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 xml:lang="en">hasTemporalDirectPart refer to an object in the very next lower level of temporal granularity that shares the same spatial extend as the original object.</emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9>
<skos:prefLabel xml:lang="en">hasTemporalDirectPart</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_663859e5_add3_4c9e_96fb_c99399de278d -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_663859e5_add3_4c9e_96fb_c99399de278d">
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_6e046dd0_9634_4013_b2b1_9cc468087c83"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#InverseFunctionalProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AsymmetricProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#IrreflexiveProperty"/>
<emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 xml:lang="en">hasSpatioTemporalDirectPart refer to an object in the very next lower level of spatial granularity in both space and time.</emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9>
<skos:prefLabel xml:lang="en">hasSpatioTemporalDirectPart</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_66873eb5_7e42_4566_a906_bd97a832f19b -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_66873eb5_7e42_4566_a906_bd97a832f19b">
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_b2282816_b7a3_44c6_b2cb_3feff1ceb7fe"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AsymmetricProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#IrreflexiveProperty"/>
<rdfs:domain rdf:resource="http://emmo.info/emmo#EMMO_25a3da5e_eab1_42dd_8081_61dd09d34e1b"/>
<rdfs:range rdf:resource="http://emmo.info/emmo#EMMO_25a3da5e_eab1_42dd_8081_61dd09d34e1b"/>
<emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 xml:lang="en">Is used to declare general (possible non-linear) arrangements.
An arrangement who's structure is described with hasSpatialFirst/hasSpatialRest has one hasSpatialFirst relation that refer to its first element and one hasSpatialRest relation that refer to an another (sub-)arrangement with all the remaining elements.</emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9>
<rdfs:comment xml:lang="en"></rdfs:comment>
<rdfs:comment xml:lang="en">Corresponds to rdf:rest, except that it connects two arrangements.</rdfs:comment>
<skos:prefLabel xml:lang="en">hasSpatialRest</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_6703954e_34c4_4a15_a9e7_f313760ae1a8 -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_6703954e_34c4_4a15_a9e7_f313760ae1a8">
<owl:equivalentProperty>
<rdf:Description>
<owl:inverseOf rdf:resource="http://emmo.info/emmo#EMMO_6703954e_34c4_4a15_a9e7_f313760ae1a8"/>
</rdf:Description>
</owl:equivalentProperty>
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_03212fd7_abfd_4828_9c8e_62c293052d4b"/>
<rdfs:subPropertyOf>
<rdf:Description>
<owl:inverseOf rdf:resource="http://emmo.info/emmo#EMMO_03212fd7_abfd_4828_9c8e_62c293052d4b"/>
</rdf:Description>
</rdfs:subPropertyOf>
<owl:inverseOf rdf:resource="http://emmo.info/emmo#EMMO_6703954e_34c4_4a15_a9e7_f313760ae1a8"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 xml:lang="en">Causality is a topological property between connected items.</emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9>
<rdfs:comment xml:lang="en">Items being connected means that there is a topological contact or "interaction" between them.</rdfs:comment>
<rdfs:comment xml:lang="en">connected is symmetric and reflexive.
Reflexive is not axiomatised since that would slow down the reasoner.</rdfs:comment>
<skos:prefLabel xml:lang="en">connected</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_67fc0a36_8dcb_4ffa_9a43_31074efa3296 -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_67fc0a36_8dcb_4ffa_9a43_31074efa3296">
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_b2282816_b7a3_44c6_b2cb_3feff1ceb7fe"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#InverseFunctionalProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AsymmetricProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#IrreflexiveProperty"/>
<rdfs:domain rdf:resource="http://emmo.info/emmo#EMMO_f658c301_ce93_46cf_9639_4eace2c5d1d5"/>
<rdfs:range rdf:resource="http://emmo.info/emmo#EMMO_18ce5200_00f5_45bb_8c6f_6fb128cd41ae"/>
<rdfs:comment xml:lang="en">Relates the physical quantity to its unit through spatial direct parthood.</rdfs:comment>
<owl:versionInfo>In EMMO version 1.0.0-beta, physical quantities used the hasReferenceUnit object property to relate them to their units via physical dimensionality. This was simplified in 1.0.0-alpha3 in order to make reasoning faster.
The restriction (e.g. for the physical quantity Length)
Length hasReferenceUnit only (hasPhysicsDimension only LengthDimension)
was in 1.0.0-alpha3 changed to
Length hasPhysicsDimension some LengthDimension
Likewise were the universal restrictions on the corresponding unit changed to excistential. E.g.
Metre hasPhysicsDimension only LengthDimension
was changed to
Metre hasPhysicsDimension some LengthDimension
The label of this class was also changed from PhysicsDimension to PhysicalDimension.</owl:versionInfo>
<skos:prefLabel xml:lang="en">hasReferenceUnit</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_6b7276a4_4b9d_440a_b577_0277539c0fc4 -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_6b7276a4_4b9d_440a_b577_0277539c0fc4">
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_9380ab64_0363_4804_b13f_3a8a94119a76"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AsymmetricProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#IrreflexiveProperty"/>
<rdfs:domain rdf:resource="http://emmo.info/emmo#EMMO_2d2ecd97_067f_4d0e_950c_d746b7700a31"/>
<rdfs:range rdf:resource="http://emmo.info/emmo#EMMO_eb3a768e_d53e_4be9_a23b_0714833c36de"/>
<skos:prefLabel xml:lang="en">hasMember</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_6e046dd0_9634_4013_b2b1_9cc468087c83 -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_6e046dd0_9634_4013_b2b1_9cc468087c83">
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_9380ab64_0363_4804_b13f_3a8a94119a76"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:domain rdf:resource="http://emmo.info/emmo#EMMO_eb3a768e_d53e_4be9_a23b_0714833c36de"/>
<rdfs:range rdf:resource="http://emmo.info/emmo#EMMO_eb3a768e_d53e_4be9_a23b_0714833c36de"/>
<emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9>A relation that isolates a proper part that extends itself in time through a portion of the lifetime whole.</emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9>
<skos:prefLabel xml:lang="en">hasSpatioTemporalPart</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_7afbed84_7593_4a23_bd88_9d9c6b04e8f6 -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_7afbed84_7593_4a23_bd88_9d9c6b04e8f6">
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_9380ab64_0363_4804_b13f_3a8a94119a76"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:domain rdf:resource="http://emmo.info/emmo#EMMO_eb3a768e_d53e_4be9_a23b_0714833c36de"/>
<rdfs:range rdf:resource="http://emmo.info/emmo#EMMO_eb3a768e_d53e_4be9_a23b_0714833c36de"/>
<emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9>A relation that isolate a proper part that covers the total spatial extension of a whole within a time interval.</emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9>
<skos:prefLabel xml:lang="en">hasTemporalPart</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_7fb7fe7e_bdf9_4eeb_adad_e384dd5285c6 -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_7fb7fe7e_bdf9_4eeb_adad_e384dd5285c6">
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_60577dea_9019_4537_ac41_80b0fb563d41"/>
<rdfs:range rdf:resource="http://emmo.info/emmo#EMMO_054af807_85cd_4a13_8eba_119dfdaaf38b"/>
<skos:prefLabel xml:lang="en">hasInterpretant</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_8785be5a_2493_4b12_8f39_31907ab11748 -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_8785be5a_2493_4b12_8f39_31907ab11748">
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_52d08d7d_e9e4_43e5_8508_d353e7e3a23a"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AsymmetricProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#IrreflexiveProperty"/>
<rdfs:domain rdf:resource="http://emmo.info/emmo#EMMO_42fc460a_4bf3_4d0b_8dee_3c7efcefebb5"/>
<rdfs:range rdf:resource="http://emmo.info/emmo#EMMO_42fc460a_4bf3_4d0b_8dee_3c7efcefebb5"/>
<emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 xml:lang="en">Relates a spatial ordered element to its following element.</emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9>
<skos:prefLabel xml:lang="en">hasSpatialNext</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_8c898653_1118_4682_9bbf_6cc334d16a99 -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_8c898653_1118_4682_9bbf_6cc334d16a99">
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_6703954e_34c4_4a15_a9e7_f313760ae1a8"/>
<rdfs:subPropertyOf>
<rdf:Description>
<owl:inverseOf rdf:resource="http://emmo.info/emmo#EMMO_6703954e_34c4_4a15_a9e7_f313760ae1a8"/>
</rdf:Description>
</rdfs:subPropertyOf>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 xml:lang="en">Encloses is a topological relation. The statement "x encloses y" means that the spacetime occupied by y is fully embedded in x.
In FOL, "x encloses y" it may be written 'Exy'.</emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9>
<rdfs:comment xml:lang="en">Enclosure is reflexive and transitive.
Reflexive is not axiomatised since it would slow down the reasoner.</rdfs:comment>
<rdfs:comment xml:lang="en">Note that x and y may be the same object (hence reflectivity).</rdfs:comment>
<skos:prefLabel xml:lang="en">encloses</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_8ef3cd6d_ae58_4a8d_9fc0_ad8f49015cd0 -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_8ef3cd6d_ae58_4a8d_9fc0_ad8f49015cd0">
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_b2282816_b7a3_44c6_b2cb_3feff1ceb7fe"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#InverseFunctionalProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AsymmetricProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#IrreflexiveProperty"/>
<rdfs:domain rdf:resource="http://emmo.info/emmo#EMMO_f658c301_ce93_46cf_9639_4eace2c5d1d5"/>
<rdfs:range rdf:resource="http://emmo.info/emmo#EMMO_4ce76d7f_03f8_45b6_9003_90052a79bfaa"/>
<rdfs:comment xml:lang="en">Relates a quantity to its reference unit through spatial direct parthood.</rdfs:comment>
<skos:prefLabel xml:lang="en">hasQuantityValue</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_9380ab64_0363_4804_b13f_3a8a94119a76 -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_9380ab64_0363_4804_b13f_3a8a94119a76">
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_17e27c22_37e1_468c_9dd7_95e137f73e7f"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:comment xml:lang="en">The statement "x hasProperPart y" means that y is a part of x, excluding the case that x and y are the same object (hence irrevlexivity).</rdfs:comment>
<rdfs:comment xml:lang="en">hasProperPart is transitive, asymmetric and irreflexive.
Asymmetric and irreflexive are not axiomatised since they would slow down the reasoner.</rdfs:comment>
<skos:prefLabel xml:lang="en">hasProperPart</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_9cb984ca_48ad_4864_b09e_50d3fff19420 -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_9cb984ca_48ad_4864_b09e_50d3fff19420">
<owl:equivalentProperty>
<rdf:Description>
<owl:inverseOf rdf:resource="http://emmo.info/emmo#EMMO_9cb984ca_48ad_4864_b09e_50d3fff19420"/>
</rdf:Description>
</owl:equivalentProperty>
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_d893d373_b579_4867_841e_1c2b31a8d2c6"/>
<rdfs:subPropertyOf>
<rdf:Description>
<owl:inverseOf rdf:resource="http://emmo.info/emmo#EMMO_d893d373_b579_4867_841e_1c2b31a8d2c6"/>
</rdf:Description>
</rdfs:subPropertyOf>
<owl:inverseOf rdf:resource="http://emmo.info/emmo#EMMO_9cb984ca_48ad_4864_b09e_50d3fff19420"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 xml:lang="en">The statement "x overcrosses y" means that x and y are overlapping, but also that neither is enclosed by the other.</emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9>
<rdfs:comment xml:lang="en">overcrosses is a topological relation.</rdfs:comment>
<skos:prefLabel xml:lang="en">overcrosses</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_ae2d1a96_bfa1_409a_a7d2_03d69e8a125a -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_ae2d1a96_bfa1_409a_a7d2_03d69e8a125a">
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_17e27c22_37e1_468c_9dd7_95e137f73e7f"/>
<rdfs:domain rdf:resource="http://emmo.info/emmo#EMMO_43e9a05d_98af_41b4_92f6_00f79a09bfce"/>
<rdfs:range rdf:resource="http://emmo.info/emmo#EMMO_49804605_c0fe_4538_abda_f70ba1dc8a5d"/>
<emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 xml:lang="en">The relation between a process and an object participating to it.</emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9>
<rdfs:comment xml:lang="en">Participation is a parthood relation: you must be part (and then be connected) of the process to contribute to it.</rdfs:comment>
<rdfs:comment xml:lang="en">Participation is not under direct parthood since a process is not strictly related to reductionism, but it's a way to categorize temporal regions by the interpreters.</rdfs:comment>
<skos:prefLabel xml:lang="en">hasParticipant</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_b2282816_b7a3_44c6_b2cb_3feff1ceb7fe -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_b2282816_b7a3_44c6_b2cb_3feff1ceb7fe">
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_f68030be_94b8_4c61_a161_886468558054"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#InverseFunctionalProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AsymmetricProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#IrreflexiveProperty"/>
<rdfs:domain rdf:resource="http://emmo.info/emmo#EMMO_36c79456_e29c_400d_8bd3_0eedddb82652"/>
<emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 xml:lang="en">hasSpatialDirectPart refer to an object in the very next lower level of spatial granularity that shares the same temporal extend as the original object.</emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9>
<rdfs:comment xml:lang="en">Direct parthood is the key relation underlying the reductionistic perspective. It is a non-transitive proper part, that specifies elements in the very next lower level of granularity. This allows to build strict granularity hirarchies.</rdfs:comment>
<rdfs:comment xml:lang="en">Note that EMMO does not provide a hasDirectPart relation.
The reason for this is that direct parthood can either be decomposed into space or time independently of each other. Adding a common superclass for hasSpatialDirectPart and hasTemporalDirectPart would exclude the subclass SpatioTemporalDirectPart.</rdfs:comment>
<rdfs:comment xml:lang="en">hasSpatialDirectPart is non-transitive, irreflexive, asymmetric and inverse functional.</rdfs:comment>
<skos:prefLabel xml:lang="en">hasSpatialDirectPart</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_b8f79e53_2ad4_441d_87ff_284a5c419e46 -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_b8f79e53_2ad4_441d_87ff_284a5c419e46">
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_0aa934ee_1ad4_4345_8a7f_bc73ec67c7e5"/>
<rdfs:range rdf:resource="http://emmo.info/emmo#EMMO_d0200cf1_e4f4_45ae_873f_b9359daea3cd"/>
<skos:prefLabel xml:lang="en">hasModelledQuantity</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_bed1d005_b04e_4a90_94cf_02bc678a8569 -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_bed1d005_b04e_4a90_94cf_02bc678a8569">
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_e1097637_70d2_4895_973f_2396f04fa204"/>
<rdfs:range rdf:resource="http://emmo.info/emmo#EMMO_9895a1b4_f0a5_4167_ac5e_97db40b8bfcc"/>
<skos:prefLabel xml:lang="en">hasPhysicalDimension</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_c0f48dc6_4a32_4d9a_a956_d68415954a8e -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_c0f48dc6_4a32_4d9a_a956_d68415954a8e">
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_65a2c5b8_e4d8_4a51_b2f8_e55effc0547d"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AsymmetricProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#IrreflexiveProperty"/>
<rdfs:domain rdf:resource="http://emmo.info/emmo#EMMO_406f9b74_c927_4e05_b9af_5edbe5e280c5"/>
<rdfs:range rdf:resource="http://emmo.info/emmo#EMMO_e0954911_fc88_492a_9830_fdb238e28cc2"/>
<emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 xml:lang="en">hasTemporalLast refer to the last element in an ordered sequence.</emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9>
<skos:prefLabel xml:lang="en">hasTemporalLast</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_c5aae418_1622_4d02_93c5_21159e28e6c1 -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_c5aae418_1622_4d02_93c5_21159e28e6c1">
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_9380ab64_0363_4804_b13f_3a8a94119a76"/>
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_ae2d1a96_bfa1_409a_a7d2_03d69e8a125a"/>
<skos:prefLabel xml:lang="en">hasProperParticipant</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_d893d373_b579_4867_841e_1c2b31a8d2c6 -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_d893d373_b579_4867_841e_1c2b31a8d2c6">
<owl:equivalentProperty>
<rdf:Description>
<owl:inverseOf rdf:resource="http://emmo.info/emmo#EMMO_d893d373_b579_4867_841e_1c2b31a8d2c6"/>
</rdf:Description>
</owl:equivalentProperty>
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_6703954e_34c4_4a15_a9e7_f313760ae1a8"/>
<rdfs:subPropertyOf>
<rdf:Description>
<owl:inverseOf rdf:resource="http://emmo.info/emmo#EMMO_6703954e_34c4_4a15_a9e7_f313760ae1a8"/>
</rdf:Description>
</rdfs:subPropertyOf>
<owl:inverseOf rdf:resource="http://emmo.info/emmo#EMMO_d893d373_b579_4867_841e_1c2b31a8d2c6"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 xml:lang="en">Overlap is a topological relation.</emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9>
<emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 xml:lang="en">Two objects overlap if they share a common portion of spacetime.</emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9>
<skos:prefLabel xml:lang="en">hasOverlapWith</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_e1097637_70d2_4895_973f_2396f04fa204 -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_e1097637_70d2_4895_973f_2396f04fa204">
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_eb3518bf_f799_4f9e_8c3e_ce59af11453b"/>
<rdfs:domain rdf:resource="http://emmo.info/emmo#EMMO_6f5af708_f825_4feb_a0d1_a8d813d3022b"/>
<rdfs:range rdf:resource="http://emmo.info/emmo#EMMO_b7bcff25_ffc3_474e_9ab5_01b1664bd4ba"/>
<skos:prefLabel xml:lang="en">hasProperty</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_eb3518bf_f799_4f9e_8c3e_ce59af11453b -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_eb3518bf_f799_4f9e_8c3e_ce59af11453b">
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_60577dea_9019_4537_ac41_80b0fb563d41"/>
<rdfs:range rdf:resource="http://emmo.info/emmo#EMMO_35d2e130_6e01_41ed_94f7_00b333d46cf9"/>
<skos:prefLabel xml:lang="en">hasConvention</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_ec2472ae_cf4a_46a5_8555_1556f5a6c3c5 -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_ec2472ae_cf4a_46a5_8555_1556f5a6c3c5">
<owl:equivalentProperty>
<rdf:Description>
<owl:inverseOf rdf:resource="http://emmo.info/emmo#EMMO_ec2472ae_cf4a_46a5_8555_1556f5a6c3c5"/>
</rdf:Description>
</owl:equivalentProperty>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<owl:inverseOf rdf:resource="http://emmo.info/emmo#EMMO_ec2472ae_cf4a_46a5_8555_1556f5a6c3c5"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:domain rdf:resource="http://emmo.info/emmo#EMMO_802d3e92_8770_4f98_a289_ccaaab7fdddf"/>
<rdfs:range rdf:resource="http://emmo.info/emmo#EMMO_802d3e92_8770_4f98_a289_ccaaab7fdddf"/>
<emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 xml:lang="en">The superclass for all relations used by the EMMO.</emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9>
<skos:prefLabel xml:lang="en">EMMORelation</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_f68030be_94b8_4c61_a161_886468558054 -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_f68030be_94b8_4c61_a161_886468558054">
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_9380ab64_0363_4804_b13f_3a8a94119a76"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:domain rdf:resource="http://emmo.info/emmo#EMMO_eb3a768e_d53e_4be9_a23b_0714833c36de"/>
<rdfs:range rdf:resource="http://emmo.info/emmo#EMMO_eb3a768e_d53e_4be9_a23b_0714833c36de"/>
<emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9>A relation that isolates a proper part that extends itself in time within the overall lifetime of the whole, without covering the full spatial extension of the 4D whole (i.e. is not a temporal part).</emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9>
<skos:prefLabel xml:lang="en">hasSpatialPart</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_fb168b10_a27b_4409_a002_35671319d170 -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_fb168b10_a27b_4409_a002_35671319d170">
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_65a2c5b8_e4d8_4a51_b2f8_e55effc0547d"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AsymmetricProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#IrreflexiveProperty"/>
<rdfs:domain rdf:resource="http://emmo.info/emmo#EMMO_406f9b74_c927_4e05_b9af_5edbe5e280c5"/>
<rdfs:range rdf:resource="http://emmo.info/emmo#EMMO_406f9b74_c927_4e05_b9af_5edbe5e280c5"/>
<rdfs:comment xml:lang="en">Corresponds to rdf:rest, except that it connects two sequences.</rdfs:comment>
<skos:prefLabel xml:lang="en">hasTemporalRest</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_fd689787_31b0_41cf_bf03_0d69af76469d -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_fd689787_31b0_41cf_bf03_0d69af76469d">
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_0aa934ee_1ad4_4345_8a7f_bc73ec67c7e5"/>
<rdfs:range rdf:resource="http://emmo.info/emmo#EMMO_873b0ab3_88e6_4054_b901_5531e01f14a4"/>
<skos:prefLabel xml:lang="en">hasMeasuredQuantity</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://emmo.info/emmo#EMMO_fe63194f_7c04_4dbd_a244_524b38b6699b -->
<owl:ObjectProperty rdf:about="http://emmo.info/emmo#EMMO_fe63194f_7c04_4dbd_a244_524b38b6699b">
<rdfs:subPropertyOf rdf:resource="http://emmo.info/emmo#EMMO_65a2c5b8_e4d8_4a51_b2f8_e55effc0547d"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AsymmetricProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#IrreflexiveProperty"/>
<rdfs:domain rdf:resource="http://emmo.info/emmo#EMMO_406f9b74_c927_4e05_b9af_5edbe5e280c5"/>
<rdfs:range rdf:resource="http://emmo.info/emmo#EMMO_e0954911_fc88_492a_9830_fdb238e28cc2"/>
<emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 xml:lang="en">hasTemporalFirst refer to the first element in an ordered sequence.
hasTemporalFirst can either be used together with hasTemporalNext to declare temporal ordered linear sequences or together with hasTemporalRest to declare general (possible branched) temporal sequences.</emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9>