-
Notifications
You must be signed in to change notification settings - Fork 0
/
sml.ttl
1476 lines (1269 loc) · 63.6 KB
/
sml.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix quantitykind: <http://qudt.org/vocab/quantitykind/> .
@prefix qudt: <http://qudt.org/schema/qudt/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix sml: <https://w3id.org/sml/def#> .
@prefix sml-term: <https://w3id.org/sml/term#> .
@prefix sosa: <http://www.w3.org/ns/sosa/> .
@prefix time: <http://www.w3.org/2006/time#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
sml:AbstractConcept a rdfs:Class,
owl:Class ;
rdfs:seeAlso sml-term:AbstractConcept ;
rdfs:subClassOf sml:TopConcept ;
skos:definition "Concept that forms a manifestation and demarcation in an abstract space. An abstract concept has no life cycle"@en ;
skos:prefLabel "Abstract concept"@en .
sml:Activity a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso sml-term:Activity ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom sml:Activity ;
owl:onProperty sml:hasPart ],
sml:Entity ;
skos:definition "Entity that takes place or can take place in a concrete space-time. An activity transforms objects, and is executed by an object"@en ;
skos:prefLabel "Activity"@en ;
sh:property [ sh:class sml:GeometricEntity ;
sh:path sml:hasBoundary ],
[ sh:class sml:GeometricEntity ;
sh:path sml:hasInterior ],
[ sh:class sml:Activity ;
sh:path sml:hasPart ],
[ sh:class time:TemporalEntity ;
sh:path sml:hasPeriod ],
[ sh:class sml:Object ;
sh:path sml:transforms ] .
sml:AggregationStateType a rdfs:Class,
owl:Class,
sh:NodeShape,
sml:EnumerationType ;
rdfs:seeAlso sml-term:AggregationStateType ;
owl:oneOf ( sml:Solid sml:Liquid sml:Gas sml:Plasma ) ;
skos:definition "One of the four fundamental states of matter being a solid, liquid, gas or plasma"@en ;
skos:prefLabel "Aggregation state type"@en ;
sh:in ( sml:Solid sml:Liquid sml:Gas sml:Plasma ) .
sml:AmountOfBulkMatter a rdfs:Class,
owl:Class ;
rdfs:seeAlso sml-term:AmountOfBulkMatter ;
rdfs:subClassOf sml:RealObject ;
skos:definition "A real object that consists of a continuous amount of non-rigid matter, held together primarily by external forces (gravity or confinement)"@en ;
skos:prefLabel "Amount of bulk matter"@en .
sml:ChemicalCompound a rdfs:Class,
owl:Class ;
rdfs:seeAlso sml-term:ChemicalBonding ;
rdfs:subClassOf sml:PureSubstance ;
skos:definition "Pure substance consisting of two or more chemical elements that have a chemical bond with each other. In a chemical compound, the elements occur in a fixed ratio. A compound can be broken down into simpler substances by means of chemical reactions"@en ;
skos:prefLabel "Chemical compound"@en .
sml:ChemicalElement a rdfs:Class,
owl:Class ;
rdfs:seeAlso sml-term:ChemicalElement ;
rdfs:subClassOf sml:PureSubstance ;
skos:definition "Pure substance that is made up of atoms with the same atomic number. A chemical element cannot be decomposed through chemical reactions"@en ;
skos:prefLabel "Chemical element"@en .
sml:ConceptType a rdfs:Class,
owl:Class ;
rdfs:seeAlso sml-term:ConceptType ;
rdfs:subClassOf sml:Type ;
skos:definition "A meta-concept having concepts as instances that can have attributes or relations"@en ;
skos:prefLabel "Concept type"@en .
sml:ConcreteConcept a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso sml-term:ConcreteConcept ;
rdfs:subClassOf sml:TopConcept ;
skos:definition "Concept that forms a manifestation and a demarcation in a concrete space-time. A concrete concept has a life cycle"@en ;
skos:prefLabel "Concrete concept"@en ;
sh:property [ sh:class sml:GeometricEntity ;
sh:path sml:hasBoundary ],
[ sh:class sml:GeometricEntity ;
sh:path sml:hasInterior ],
[ sh:class time:TemporalEntity ;
sh:path sml:hasTemporalEntity ],
[ sh:class sml:ConcreteConcept ;
sh:path sml:hasPart ],
[ sh:class rdfs:Container ;
sh:path sml:hasPartsGroup ] .
sml:Connection a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso sml-term:Connection ;
rdfs:subClassOf sml:PhysicalObject ;
skos:definition "A physical object (real object or spatial area) that connects two other physical objects and over which interaction takes place, namely the transfer of matter, energy, information or forces"@en ;
skos:prefLabel "Connection"@en ;
sh:property [ sh:class sml:PhysicalObject ;
sh:path sml:connectsObject ],
[ sh:class sml:Port ;
sh:path sml:connectsPort ] .
sml:DiscreteObject a rdfs:Class,
owl:Class ;
rdfs:seeAlso sml-term:DiscreteObject ;
rdfs:subClassOf sml:RealObject ;
skos:definition "A real object consisting of a contiguous amount of form-retaining matter, held together primarily by internal forces (gravity or electromagnetic force)"@en ;
skos:prefLabel "Discrete object"@en .
sml:Entity a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso sml-term:Entity ;
rdfs:subClassOf sml:ConcreteConcept ;
skos:definition "Concept that forms a manifestation and a demarcation in a concrete space-time, and which has a certain state at any moment in time. An entity has a unique identity that remains constant throughout its life cycle. The life cycle of an entity is made up of the sequence of states of that entity, which follow each other in time. An entity is an object or an activity. An object exists, an activity takes place"@en ;
skos:prefLabel "Entity"@en ;
sh:property [ sh:class sml:State ;
sh:path sml:hasState ],
[ sh:class sml:Event ;
sh:path sml:triggers ] .
sml:EnumerationType a rdfs:Class,
owl:Class ;
rdfs:seeAlso sml-term:EnumerationType ;
rdfs:subClassOf rdfs:Container,
sml:Type ;
skos:definition "A meta-concept having concepts as instances having no further attributes or relations (annotations only)"@en ;
skos:prefLabel "Enumeration type"@en .
sml:Event a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso sml-term:Event ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom sml:Event ;
owl:onProperty sml:hasPart ],
sml:ConcreteConcept ;
skos:definition "Transition between two successive states of an entity (object or activity). An event is triggered in a state"@en ;
skos:prefLabel "Event"@en ;
sh:property [ sh:class sml:State ;
sh:path sml:begins ],
[ sh:class sml:State ;
sh:path sml:ends ],
[ sh:class sml:Event ;
sh:path sml:hasPart ] .
sml:Function a rdfs:Class,
owl:Class ;
rdfs:subClassOf sml:Activity,
sml:FunctionalActivity ;
skos:definition "An activity performed by an object whose external behavior contributes to goals set by one or more technical entities"@en ;
skos:prefLabel "Function"@en .
sml:FunctionalEntity a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso sml-term:FunctionalEntity ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom sml:Entity ;
owl:onProperty sml:hasPart ],
sml:Entity ;
skos:definition "An entity involving the external behavior where the output contributes to stakeholder objectives implemented/played by one or more technical entities"@en ;
skos:prefLabel "Functional entity"@en ;
sh:property [ sh:class sml:Entity ;
sh:path sml:hasPart ],
[ sh:class sml:FunctionalEntity ;
sh:path sml:hasFunctionalPart ],
[ sh:class sml:TechnicalEntity ;
sh:path sml:hasSolution ] .
sml:GeometricEntity a rdfs:Class,
owl:Class ;
rdfs:seeAlso sml-term:GeometricEntity ;
rdfs:subClassOf sml:Representation ;
skos:definition "Named concept, which forms an actual or virtual demarcation in a concrete (physical, three-dimensional) space, which we experience in reality"@en ;
skos:prefLabel "Geometric entity"@en .
sml:HeterogeneousMixture a rdfs:Class,
owl:Class ;
rdfs:seeAlso sml-term:HeterogeneousMixture ;
rdfs:subClassOf sml:Mixture ;
skos:definition "A mixture that is separated into different regions or phases that have different compositions or properties"@en ;
skos:prefLabel "Heterogeneous mixture"@en .
sml:HomogeneousMixture a rdfs:Class,
owl:Class ;
rdfs:seeAlso sml-term:HomogeneousMixture ;
rdfs:subClassOf sml:Mixture ;
skos:definition "A mixture that is uniform throughout, and has only one phase"@en ;
skos:prefLabel "Homogeneous mixture"@en .
sml:InformationObject a rdfs:Class,
owl:Class ;
rdfs:seeAlso sml-term:InformationObject ;
rdfs:subClassOf sml:Object ;
skos:definition "Object which describes a thing in reality"@en ;
skos:prefLabel "Information object"@en .
sml:Interaction a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso sml-term:Interaction ;
rdfs:subClassOf sml:Activity ;
skos:definition "The activity being a combination of sub-activities performed by physical objects between which a transfer of matter, information, energy or force takes place, typically over a connection or interface (directly or through ports)"@en ;
skos:prefLabel "Interaction"@en ;
sh:property [ sh:class sml:TransferType ;
sh:path sml:transferType ],
[ sh:class sml:Connection ;
sh:path sml:overConnection ],
[ sh:class sml:Interface ;
sh:path sml:overInterface ] .
sml:Interface a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso sml-term:Interface ;
rdfs:subClassOf sml:SpatialRegion ;
skos:definition "A spatial object, typically a thin 2D physical space (but also 0D or 1D) that connects two physical objects or ports of physical objects through which a static or dynamic interaction or interaction between those elements can take place"@en ;
skos:prefLabel "Interface"@en ;
sh:property [ sh:class sml:PhysicalObject ;
sh:path sml:connectsObject ],
[ sh:class sml:Port ;
sh:path sml:connectsPort ] .
sml:Matter a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso sml-term:Matter ;
rdfs:subClassOf sml:PhysicalObject ;
skos:definition "A pure chemical substance, chemical compound or mixture from which real objects are made"@en ;
skos:prefLabel "Matter"@en ;
sh:property [ sh:class sml:AggregationStateType ;
sh:path sml:aggregationStateType ],
[ sh:datatype xsd:string ;
sh:path sml:chemicalFormula ] .
sml:MatterPortion a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso sml-term:MatterPortion ;
rdfs:subClassOf [ a owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty sml:portion ],
[ a owl:Restriction ;
owl:onClass sml:Matter ;
owl:onProperty rdf:value ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ],
sml:RelationReference ;
skos:definition "An objectified relation reference for the consists of relation"@en ;
skos:prefLabel "Matter portion"@en ;
sh:property [ sh:class sml:QuantityValue ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:path sml:portion ] .
sml:Mixture a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso sml-term:Mixture ;
rdfs:subClassOf sml:Matter ;
skos:definition "The combination of two or more different pure substances without the molecules losing their identity"@en ;
skos:prefLabel "Mixture"@en ;
sh:property [ sh:or ( [ sh:class sml:Matter ] [ sh:class sml:MatterPortion ] ) ;
sh:path sml:consistsOf ] .
sml:Object a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso sml-term:Object ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom sml:Object ;
owl:onProperty sml:hasPart ],
sml:Entity ;
skos:definition "Entity that exists or can exist within a concrete space-time. An object executes an activity, and is transformed by an activity"@en ;
skos:prefLabel "Object"@en ;
sh:property [ sh:class sml:Object ;
sh:path sml:hasPart ] .
sml:Objectification a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso sml-term:Objectification ;
rdfs:subClassOf [ a owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty rdf:value ],
sml:AbstractConcept ;
skos:definition "An attribute (quality or quantity) or relation represented as an individual defined by a concept"@en ;
skos:prefLabel "Objectification"@en ;
sh:property [ sh:maxCount 1 ;
sh:path rdf:value ] .
sml:PhysicalObject a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso sml-term:PhysicalObject ;
rdfs:subClassOf sml:Object ;
skos:definition "Object that exists or may exist within physical 4D space-time. A physical object forms a manifestation and a demarcation of matter and/or energy, and is (in)directly perceptible by the senses"@en ;
skos:prefLabel "Physical object"@en ;
sh:property [ sh:class sml:InformationObject ;
sh:path sml:isDescribedBy ],
[ sh:class sml:Activity ;
sh:path sml:executes ],
[ sh:class sml:PhysicalObject ;
sh:path sml:isConnectedTo ],
[ sh:class sml:Interaction ;
sh:path sml:participatesIn ] .
sml:PlannedEntity a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso sml-term:PlannedEntity ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom sml:PlannedEntity ;
owl:onProperty sml:hasPart ],
sml:Entity ;
skos:definition "An entity that does not yet exist in physical reality, but which exists in mental or conceptual reality"@en ;
skos:prefLabel "Planned entity"@en ;
sh:property [ sh:class sml:PlannedEntity ;
sh:path sml:hasPart ],
[ sh:class sml:RealizedEntity ;
sh:path sml:isPlanFor ] .
sml:Port a rdfs:Class,
owl:Class ;
rdfs:seeAlso sml-term:Port ;
rdfs:subClassOf sml:PhysicalObject ;
skos:definition "A physical or logical point of interaction as part of a physical object where, through a connection or interface, an interaction can take place"@en ;
skos:prefLabel "Port"@en .
sml:PureSubstance a rdfs:Class,
owl:Class ;
rdfs:seeAlso sml-term:PureSubstance ;
rdfs:subClassOf sml:Matter ;
skos:definition "Chemical matter that has an equal chemical composition and recognizable uniform and isotropic properties"@en ;
skos:prefLabel "Pure substance"@en .
sml:QualityValue a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso sml-term:QualityValue ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom [ a owl:Class ;
owl:unionOf ( xsd:string xsd:boolean xsd:anyURI ) ] ;
owl:onProperty rdf:value ],
sml:Objectification ;
skos:definition "The objectification of a value of a quality having a complex value like a simple value sec combined with other metadata or just a combination of simple values"@en ;
skos:prefLabel "Quality value"@en ;
sh:property [ sh:datatype xsd:string ;
sh:path rdf:value ] .
sml:QuantityValue a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso sml-term:QuantityValue ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom [ a owl:Class ;
owl:unionOf ( xsd:decimal xsd:float xsd:double xsd:integer ) ] ;
owl:onProperty rdf:value ],
sml:Objectification ;
skos:definition "The objectification of a value of a quantity (typically involving a quantity kind and a unit) having a complex value like a simple value sec combined with other metadata or just a combination of simple values"@en ;
skos:prefLabel "Quantity value"@en ;
sh:property [ sh:or ( [ sh:datatype xsd:decimal ] [ sh:datatype xsd:float ] [ sh:datatype xsd:double ] ) ;
sh:path rdf:value ] .
sml:RealObject a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso sml-term:RealObject ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom [ a owl:Class ;
owl:unionOf ( sml:RealObject sml:Port ) ] ;
owl:onProperty sml:hasPart ],
sml:PhysicalObject ;
skos:definition "physical object (rigid or non-rigid) that is (or can be) tangible and visible in reality, man-made or naturally occurring"@en ;
skos:prefLabel "Real object"@en ;
sh:property [ sh:or ( [ sh:class sml:Matter ] [ sh:class sml:MatterPortion ] ) ;
sh:path sml:consistsOf ],
[ sh:or ( [ sh:class sml:RealObject ] [ sh:class sml:Port ] ) ;
sh:path sml:hasPart ] .
sml:RealizedEntity a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso sml-term:RealizedEntity ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom sml:RealizedEntity ;
owl:onProperty sml:hasPart ],
sml:Entity ;
skos:definition "An entity that exists or has existed in the physical reality"@en ;
skos:prefLabel "Realized entity"@en ;
sh:property [ sh:class sml:RealizedEntity ;
sh:path sml:hasPart ] .
sml:RelationReference a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso sml-term:RelationReference ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom xsd:anyURI ;
owl:onProperty rdf:value ],
sml:Objectification ;
skos:definition "The objectification of a reference for a relation having a complex value like a simple reference sec combined with other metadata or just a combination of simple references (n-ary relation)"@en ;
skos:prefLabel "Relation reference"@en ;
sh:property [ sh:datatype xsd:anyURI ;
sh:path rdf:value ] .
sml:Representation a rdfs:Class,
owl:Class ;
rdfs:seeAlso sml-term:Representation ;
rdfs:subClassOf sml:InformationObject ;
skos:definition "That which represents something else"@en ;
skos:prefLabel "Representation"@en .
sml:Requirement a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso sml-term:Requirement ;
rdfs:subClassOf [ a owl:Restriction ;
owl:onClass xsd:string ;
owl:onProperty rdf:value ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ],
sml:InformationObject ;
skos:definition "A rule that should hold for something, defined via its attributes or relations" ;
skos:prefLabel "Requirement"@en ;
sh:property [ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:path rdf:value ],
[ sh:class sml:RequirementSeverityType ;
sh:path sml:requirementSeverityType ],
[ sh:class sml:RequirementSourceType ;
sh:path sml:requirementSourceType ],
[ sh:class sml:RequirementTopicType ;
sh:path sml:requirementTopicType ] .
sml:RequirementSeverityType a rdfs:Class,
owl:Class,
sml:EnumerationType ;
rdfs:seeAlso sml-term:RequirementSeverityType ;
skos:definition "The seriousness of a requirement like demanded or wished"@en ;
skos:prefLabel "Requirement severity type"@en .
sml:RequirementSourceType a rdfs:Class,
owl:Class,
sml:EnumerationType ;
rdfs:seeAlso sml-term:RequirementSourceType ;
skos:definition "The type of source from which a requirement comes like a client, by definition, recommended by the sector or demanded by law/regulation"@en ;
skos:prefLabel "Requirement source type"@en .
sml:RequirementTopicType a rdfs:Class,
owl:Class,
sml:EnumerationType ;
rdfs:seeAlso sml-term:RequirementTopicType ;
skos:definition "The entity aspect a requirement applies to"@en ;
skos:prefLabel "Requirement topic type"@en .
sml:SpatialRegion a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso sml-term:SpatialRegion ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom [ a owl:Class ;
owl:unionOf ( sml:SpatialRegion sml:Port ) ] ;
owl:onProperty sml:hasPart ],
sml:PhysicalObject ;
skos:definition "A physical object that encloses a particular area such as a room, roadway and river, that is bounded by real objects or other spatial areas (e.g., by usage or convention) and that contains primarily liquid or gaseous amount of matter"@en ;
skos:prefLabel "Spatial region"@en ;
sh:property [ sh:class sml:RealObject ;
sh:path sml:contains ],
[ sh:or ( [ sh:class sml:SpatialRegion ] [ sh:class sml:Port ] ) ;
sh:path sml:hasPart ],
[ sh:class sml:PhysicalObject ;
sh:path sml:isBoundBy ] .
sml:State a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso sml-term:State ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom sml:State ;
owl:onProperty sml:hasPart ],
sml:ConcreteConcept ;
skos:definition "Temporal part of an entity during a period between two events. A state is characterized by the properties and relations of the entity"@en ;
skos:prefLabel "State"@en ;
sh:property [ sh:class sml:GeometricEntity ;
sh:path sml:hasBoundary ],
[ sh:class sml:GeometricEntity ;
sh:path sml:hasInterior ],
[ sh:class sml:State ;
sh:path sml:hasPart ],
[ sh:class time:TemporalEntity ;
sh:path sml:hasPeriod ] .
sml:TechnicalEntity a rdfs:Class,
sh:NodeShape ;
rdfs:seeAlso sml-term:TechnicalEntity ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom sml:Entity ;
owl:onProperty sml:hasPart ],
sml:Entity ;
skos:definition "An entity concerned with technical properties and relations that implements or plays functional entities"@en ;
skos:prefLabel "Technical entity"@en ;
sh:property [ sh:class sml:Entity ;
sh:path sml:hasPart ],
[ sh:class sml:TechnicalEntity ;
sh:path sml:hasTechnicalPart ] .
sml:TopConcept a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso sml-term:TopConcept ;
skos:definition "The most generic concept"@en ;
skos:prefLabel "Top concept"@en ;
sh:property [ sh:datatype xsd:string ;
sh:path sml:abbreviation ],
[ sh:class sml:InformationObject ;
sh:path sml:isDescribedBy ],
[ sh:class sml:Requirement ;
sh:path sml:hasRequirement ] .
sml:TransferType a rdfs:Class,
owl:Class,
sh:NodeShape,
sml:EnumerationType ;
rdfs:seeAlso sml-term:TransferType ;
owl:oneOf ( sml:MaterialFlow sml:EnergyFlow sml:InformationFlow sml:Force ) ;
skos:definition "The type of thing being transferred, here: material, information, energy or force"@en ;
skos:prefLabel "Transfer type"@en ;
sh:in ( sml:MaterialFlow sml:EnergyFlow sml:InformationFlow sml:Force ) .
sml:Type a rdfs:Class,
owl:Class ;
rdfs:seeAlso sml-term:Type ;
rdfs:subClassOf sml:AbstractConcept ;
skos:definition "A meta-concept which instances are concepts (not individuals)"@en ;
skos:prefLabel "Type"@en .
<https://w3id.org/sml/2/owl/def> a owl:Ontology ;
owl:imports <http://qudt.org/2.1/schema/qudt>,
<http://qudt.org/2.1/vocab/quantitykind>,
<http://qudt.org/2.1/vocab/unit>,
<http://www.opengis.net/ont/geosparql>,
<http://www.w3.org/2004/02/skos/core>,
<http://www.w3.org/2006/time>,
<http://www.w3.org/ns/shacl>,
sosa:,
<https://w3id.org/sml/2/rdfs/def>,
<https://w3id.org/sml/owl/def> .
<https://w3id.org/sml/2/shacl/def> a owl:Ontology ;
owl:imports <http://qudt.org/2.1/schema/qudt>,
<http://qudt.org/2.1/vocab/quantitykind>,
<http://qudt.org/2.1/vocab/unit>,
<http://www.opengis.net/ont/geosparql>,
<http://www.w3.org/2004/02/skos/core>,
<http://www.w3.org/2006/time>,
<http://www.w3.org/ns/shacl>,
sosa:,
<https://w3id.org/sml/2/rdfs/def>,
<https://w3id.org/sml/shacl/def> .
sml:AllDisjointClassesShape a sh:NodeShape ;
sh:property [ sh:path ( rdf:type [ sh:zeroOrMorePath rdfs:subClassOf ] ) ;
sh:qualifiedMaxCount 1 ;
sh:qualifiedValueShape [ sh:in ( sml:PhysicalObject sml:InformationObject sml:State sml:Event sml:Activity ) ] ],
[ sh:path ( rdf:type [ sh:zeroOrMorePath rdfs:subClassOf ] ) ;
sh:qualifiedMaxCount 1 ;
sh:qualifiedValueShape [ sh:in ( sml:FunctionalEntity sml:TechnicalEntity ) ] ],
[ sh:path ( rdf:type [ sh:zeroOrMorePath rdfs:subClassOf ] ) ;
sh:qualifiedMaxCount 1 ;
sh:qualifiedValueShape [ sh:in ( sml:PlannedEntity sml:RealizedEntity ) ] ] ;
sh:targetSubjectsOf rdf:type .
sml:AllDisjointClassesShape2 a sh:NodeShape ;
sh:property [ sh:path ( rdf:type [ sh:zeroOrMorePath rdfs:subClassOf ] ) ;
sh:qualifiedMaxCount 1 ;
sh:qualifiedValueShape [ sh:in ( sml:RealObject sml:SpatialRegion ) ] ] ;
sh:targetSubjectsOf rdf:type .
sml:AllDisjointClasses_1 a owl:AllDisjointClasses ;
owl:members ( sml:PhysicalObject sml:InformationObject sml:Activity sml:Event sml:State ) .
sml:AllDisjointClasses_2 a owl:AllDisjointClasses ;
owl:members ( sml:FunctionalEntity sml:TechnicalEntity ) .
sml:AllDisjointClasses_3 a owl:AllDisjointClasses ;
owl:members ( sml:PlannedEntity sml:RealizedEntity ) .
sml:AllDisjointClasses_4 a owl:AllDisjointClasses ;
owl:members ( sml:RealObject sml:SpatialRegion ) .
sml:hasQuantityKindShape a sh:NodeShape ;
sh:class qudt:QuantityKind ;
sh:targetObjectsOf sml:hasQuantityKind .
sml:hasUnitShape a sh:NodeShape ;
sh:class qudt:Unit ;
sh:targetObjectsOf sml:hasUnit .
sml:isImplementedBy a rdf:Property,
owl:ObjectProperty ;
rdfs:domain sml:FunctionalEntity ;
rdfs:range sml:TechnicalEntity ;
rdfs:seeAlso sml-term:isImplementedBy ;
rdfs:subPropertyOf sml:hasSolution ;
skos:definition "The technical entity that implements a functional entity"@en ;
skos:prefLabel "is implemented by"@en .
sml:isRealizedBy a rdf:Property,
owl:ObjectProperty ;
rdfs:domain sml:PlannedEntity ;
rdfs:range sml:RealizedEntity ;
rdfs:seeAlso sml-term:isRealizedBy ;
rdfs:subPropertyOf sml:isPlanFor ;
skos:definition "The realized entity that realizes a planned entity"@en ;
skos:prefLabel "is realized by"@en .
sml-term:ChemicalCompound a skos:Concept ;
skos:broader sml-term:PureSubstance ;
skos:definition "Pure substance consisting of two or more chemical elements that have a chemical bond with each other. In a chemical compound, the elements occur in a fixed ratio. A compound can be broken down into simpler substances by means of chemical reactions"@en ;
skos:prefLabel "Chemical compound"@en .
sml-term:Function a skos:Concept ;
skos:broader sml-term:Activity,
sml-term:FunctionalActivity ;
skos:definition "An activity performed by an object whose external behavior contributes to goals set by one or more technical entities"@en ;
skos:prefLabel "Function"@en .
sml-term:hasPartsGroup a skos:Concept ;
skos:definition "The possession of an group of, potentially implicit, parts"@en ;
skos:prefLabel "has parts group"@en .
<https://w3id.org/sml/2/skos/term> a skos:ConceptScheme ;
owl:imports <http://qudt.org/2.1/schema/qudt>,
<http://qudt.org/2.1/vocab/quantitykind>,
<http://qudt.org/2.1/vocab/unit>,
<http://www.opengis.net/ont/geosparql>,
<http://www.w3.org/2004/02/skos/core>,
<http://www.w3.org/2006/time>,
<http://www.w3.org/ns/shacl>,
sosa:,
<https://w3id.org/sml/skos/term> ;
skos:hasTopConcept sml-term:TopConcept .
sml:abbreviation a rdf:Property,
owl:AnnotationProperty ;
rdfs:domain sml:TopConcept ;
rdfs:range xsd:string ;
rdfs:seeAlso sml-term:abbreviation ;
rdfs:subPropertyOf skos:altLabel ;
skos:definition "Acronym or initial word as special case of an external name"@en ;
skos:prefLabel "abbreviation"@en .
sml:aggregationStateType a rdf:Property,
owl:ObjectProperty ;
rdfs:domain sml:Matter ;
rdfs:range sml:AggregationStateType ;
rdfs:seeAlso sml-term:aggregationStateType ;
skos:definition "The possession of an aggregation state type"@en ;
skos:prefLabel "aggregation state type"@en .
sml:begins a rdf:Property,
owl:ObjectProperty ;
rdfs:domain sml:Event ;
rdfs:range sml:State ;
rdfs:seeAlso sml-term:begins ;
skos:definition "The state that is started by an event"@en ;
skos:prefLabel "begins"@en .
sml:chemicalFormula a rdf:Property,
owl:DatatypeProperty ;
rdfs:domain sml:Matter ;
rdfs:range xsd:string ;
rdfs:seeAlso sml-term:chemicalFormula ;
skos:definition "The possession of information about the chemical proportions of atoms that constitute a particular chemical compound"@en ;
skos:prefLabel "chemical formula"@en .
sml:contains a rdf:Property,
owl:ObjectProperty ;
rdfs:domain sml:SpatialRegion ;
rdfs:range sml:RealObject ;
rdfs:seeAlso sml-term:contains ;
skos:definition "The real objects located in a spatial region, typically the gaseous amount of bulk matter present in that region"@en ;
skos:prefLabel "contains"@en .
sml:ends a rdf:Property,
owl:ObjectProperty ;
rdfs:domain sml:Event ;
rdfs:range sml:State ;
rdfs:seeAlso sml-term:ends ;
skos:definition "The state that is ended by an event"@en ;
skos:prefLabel "ends"@en .
sml:executes a rdf:Property,
owl:ObjectProperty ;
rdfs:domain sml:PhysicalObject ;
rdfs:range sml:Activity ;
rdfs:seeAlso sml-term:executes ;
skos:definition "The activity executed by a physical object"@en ;
skos:prefLabel "executes"@en .
sml:hasFunctionalPart a rdf:Property,
owl:ObjectProperty ;
rdfs:domain sml:FunctionalEntity ;
rdfs:range sml:FunctionalEntity ;
rdfs:seeAlso sml-term:hasFunctionalPart ;
rdfs:subPropertyOf sml:hasPart ;
skos:definition "The hasPart relation of a functional nature"@en ;
skos:prefLabel "has functional part"@en .
sml:hasPartsGroup a rdf:Property,
owl:ObjectProperty ;
rdfs:domain sml:ConcreteConcept ;
rdfs:range rdfs:Container ;
rdfs:seeAlso sml-term:hasPart ;
skos:definition "The possession of an group of, potentially implicit, parts"@en ;
skos:prefLabel "has parts group"@en .
sml:hasQuantityKind a rdf:Property,
owl:ObjectProperty ;
rdfs:range qudt:QuantityKind ;
rdfs:seeAlso sml-term:hasQuantityKind ;
skos:definition "The possession of a quantity kind"@en ;
skos:prefLabel "has quantity kind"@en .
sml:hasRequirement a rdf:Property,
owl:ObjectProperty ;
rdfs:domain sml:TopConcept ;
rdfs:range sml:Requirement ;
rdfs:seeAlso sml-term:hasRequirement ;
skos:definition "The (unstructured) requirement for something"@en ;
skos:prefLabel "has requirement"@en .
sml:hasState a rdf:Property,
owl:ObjectProperty ;
rdfs:domain sml:Entity ;
rdfs:range sml:State ;
rdfs:seeAlso sml-term:hasState ;
skos:definition "The state of an entity in a certain point or period of time"@en ;
skos:prefLabel "has state"@en .
sml:hasTechnicalPart a rdf:Property,
owl:ObjectProperty ;
rdfs:domain sml:TechnicalEntity ;
rdfs:range sml:TechnicalEntity ;
rdfs:seeAlso sml-term:hasTechnicalPart ;
rdfs:subPropertyOf sml:hasPart ;
skos:definition "A hasPart relation of a technical nature"@en ;
skos:prefLabel "has technical part"@en .
sml:hasTemporalEntity a rdf:Property,
owl:ObjectProperty ;
rdfs:domain sml:ConcreteConcept ;
rdfs:range time:TemporalEntity ;
rdfs:seeAlso sml-term:hasTemporalEntity ;
skos:definition "The abstract temporal entity representing a concrete concept in time"@en ;
skos:prefLabel "has temporal entity"@en .
sml:hasUnit a rdf:Property,
owl:ObjectProperty ;
rdfs:range qudt:Unit ;
rdfs:seeAlso sml-term:hasUnit ;
skos:definition "The possession of a unit"@en ;
skos:prefLabel "has unit"@en .
sml:isBoundBy a rdf:Property,
owl:ObjectProperty ;
rdfs:domain sml:SpatialRegion ;
rdfs:range sml:PhysicalObject ;
rdfs:seeAlso sml-term:isBoundBy ;
skos:definition "The physical object that bounds a spatial region"@en ;
skos:prefLabel "is bound by"@en .
sml:isConnectedTo a rdf:Property,
owl:ObjectProperty ;
rdfs:domain sml:PhysicalObject ;
rdfs:range sml:PhysicalObject ;
rdfs:seeAlso sml-term:isConnectedTo ;
skos:definition "The topological relationship between physical objects"@en ;
skos:prefLabel "is connected to"@en .
sml:overConnection a rdf:Property,
owl:ObjectProperty ;
rdfs:domain sml:Interaction ;
rdfs:range sml:Connection ;
rdfs:seeAlso sml-term:overConnection ;
skos:definition "The connection over which an interaction between physical objects takes place"@en ;
skos:prefLabel "over connection"@en .
sml:overInterface a rdf:Property,
owl:ObjectProperty ;
rdfs:domain sml:Interaction ;
rdfs:range sml:Interface ;
rdfs:seeAlso sml-term:overInterface ;
skos:definition "The interface over which an interaction between physical objects takes place"@en ;
skos:prefLabel "over interface"@en .
sml:participatesIn a rdf:Property,
owl:ObjectProperty ;
rdfs:domain sml:PhysicalObject ;
rdfs:range sml:Interaction ;
rdfs:seeAlso sml-term:participatesIn ;
skos:definition "The interaction a physical object participates in"@en ;
skos:prefLabel "participates in"@en .
sml:requirementSeverityType a rdf:Property,
owl:ObjectProperty ;
rdfs:domain sml:Requirement ;
rdfs:range sml:RequirementSeverityType ;
rdfs:seeAlso sml-term:requirementSeverityType ;
skos:definition "The possession of a severity type by a requirement"@en ;
skos:prefLabel "requirement severity type"@en .
sml:requirementSourceType a rdf:Property,
owl:ObjectProperty ;
rdfs:domain sml:Requirement ;
rdfs:range sml:RequirementSourceType ;
rdfs:seeAlso sml-term:requirementSourceType ;
skos:definition "The possession of a source type by a requirement"@en ;
skos:prefLabel "requirement source type"@en .
sml:requirementTopicType a rdf:Property,
owl:ObjectProperty ;
rdfs:domain sml:Requirement ;
rdfs:range sml:RequirementTopicType ;
rdfs:seeAlso sml-term:requirementTopicType ;
skos:definition "The possession of a topic type by a requirement"@en ;
skos:prefLabel "requirement topic type"@en .
sml:transferType a rdf:Property,
owl:ObjectProperty ;
rdfs:domain sml:Interaction ;
rdfs:range sml:TransferType ;
rdfs:seeAlso sml-term:transferType ;
skos:definition "The possession of a transfer type by an interaction"@en ;
skos:prefLabel "transfer type"@en .
sml:transforms a rdf:Property,
owl:ObjectProperty ;
rdfs:domain sml:Activity ;
rdfs:range sml:Object ;
rdfs:seeAlso sml-term:transforms ;
skos:definition "The object transformed by an activity"@en ;
skos:prefLabel "transforms"@en .
sml:triggers a rdf:Property,
owl:ObjectProperty ;
rdfs:domain sml:Entity ;
rdfs:range sml:Event ;
rdfs:seeAlso sml-term:triggers ;
skos:definition "The event triggert by an entity"@en ;
skos:prefLabel "triggers"@en .
<https://w3id.org/sml/owl/def> a owl:Ontology ;
owl:imports <http://qudt.org/2.1/schema/qudt>,
<http://qudt.org/2.1/vocab/quantitykind>,
<http://qudt.org/2.1/vocab/unit>,
<http://www.w3.org/2004/02/skos/core>,
<http://www.w3.org/2006/time>,
<http://www.w3.org/ns/shacl>,
<https://w3id.org/sml/rdfs/def> .
<https://w3id.org/sml/shacl/def> a owl:Ontology ;
owl:imports <http://qudt.org/2.1/schema/qudt>,
<http://qudt.org/2.1/vocab/quantitykind>,
<http://qudt.org/2.1/vocab/unit>,
<http://www.w3.org/2004/02/skos/core>,
<http://www.w3.org/2006/time>,
<http://www.w3.org/ns/shacl>,
<https://w3id.org/sml/rdfs/def> .
sml-term:AmountOfBulkMatter a skos:Concept ;
skos:broader sml-term:RealObject ;
skos:definition "A real object that consists of a continuous amount of non-rigid matter, held together primarily by external forces (gravity or confinement)"@en ;
skos:prefLabel "Amount of bulk matter"@en .
sml-term:ChemicalElement a skos:Concept ;
skos:broader sml-term:PureSubstance ;
skos:definition "Pure substance that is made up of atoms with the same atomic number. A chemical element cannot be decomposed through chemical reactions"@en ;
skos:prefLabel "Chemical element"@en .
sml-term:ConceptType a skos:Concept ;
skos:broader sml-term:Type ;
skos:definition "A meta-concept having concepts as instances that can have attributes or relations"@en ;
skos:prefLabel "Concept type"@en .
sml-term:Connection a skos:Concept ;
skos:broader sml-term:PhysicalObject ;
skos:definition "A physical object (real object or spatial area) that connects two other physical objects and over which interaction takes place, namely the transfer of matter, energy, information or forces"@en ;
skos:prefLabel "Connection"@en .
sml-term:DiscreteObject a skos:Concept ;
skos:broader sml-term:RealObject ;
skos:definition "A real object consisting of a contiguous amount of form-retaining matter, held together primarily by internal forces (gravity or electromagnetic force)"@en ;
skos:prefLabel "Discrete object"@en .
sml-term:EnergyFlow a skos:Concept ;
skos:broader sml-term:TransferType ;
skos:definition "The movement of an amount of energy (as capacity to do work)"@en ;
skos:prefLabel "Energy flow"@en .
sml-term:Event a skos:Concept ;
skos:broader sml-term:ConcreteConcept ;
skos:definition "Transition between two successive states of an entity (object or activity). An event is triggered in a state"@en ;
skos:prefLabel "Event"@en .
sml-term:Force a skos:Concept ;
skos:broader sml-term:TransferType ;
skos:definition "Physical quantity which, when exerted on a body, causes tension or pressure to arise therein, or which causes the body to change motion, accelerate"@en ;
skos:prefLabel "Force"@en .
sml-term:FunctionalEntity a skos:Concept ;
skos:broader sml-term:Entity ;
skos:definition "An entity involving the external behavior where the output contributes to stakeholder objectives implemented/played by one or more technical entities"@en ;
skos:prefLabel "Functional entity"@en .
sml-term:Gas a skos:Concept ;
skos:broader sml-term:AggregationStateType ;
skos:definition "Matter in an intermediate state between liquid and plasma that can be contained only if it is fully surrounded by a solid (or in a bubble of liquid) (or held together by gravitational pull); it can condense into a liquid, or can (rarely) become a solid directly by deposition"@en ;
skos:prefLabel "Gas"@en .
sml-term:GeometricEntity a skos:Concept ;
skos:broader sml-term:Representation ;
skos:definition "Named concept, which forms an actual or virtual demarcation in a concrete (physical, three-dimensional) space, which we experience in reality"@en ;
skos:prefLabel "Geometric entity"@en .
sml-term:HeterogeneousMixture a skos:Concept ;
skos:broader sml-term:Mixture ;
skos:definition "A mixture that is separated into different regions or phases that have different compositions or properties"@en ;
skos:prefLabel "Heterogeneous mixture"@en .
sml-term:HomogeneousMixture a skos:Concept ;
skos:broader sml-term:Mixture ;
skos:definition "A mixture that is uniform throughout, and has only one phase"@en ;
skos:prefLabel "Homogeneous mixture"@en .
sml-term:InformationFlow a skos:Concept ;
skos:broader sml-term:TransferType ;
skos:definition "The movement of information represented in some medium"@en ;
skos:prefLabel "Information flow"@en .
sml-term:Interaction a skos:Concept ;
skos:broader sml-term:Activity ;
skos:definition "The activity being a combination of sub-activities performed by physical objects between which a transfer of matter, information, energy or force takes place, typically over a connection or interface (directly or through ports)"@en ;
skos:prefLabel "Interaction"@en .
sml-term:Interface a skos:Concept ;
skos:broader sml-term:SpatialRegion ;
skos:definition "A spatial object, typically a thin 2D physical space (but also 0D or 1D) that connects two physical objects or ports of physical objects through which a static or dynamic interaction or interaction between those elements can take place"@en ;
skos:prefLabel "Interface"@en .
sml-term:Liquid a skos:Concept ;
skos:broader sml-term:AggregationStateType ;
skos:definition "A liquid is a nearly incompressible fluid that conforms to the shape of its container but retains a (nearly) constant volume independent of pressure"@en ;
skos:prefLabel "Liquid"@en .
sml-term:MaterialFlow a skos:Concept ;
skos:broader sml-term:TransferType ;
skos:definition "The movement of an amount of material"@en ;
skos:prefLabel "Material flow"@en .
sml-term:MatterPortion a skos:Concept ;
skos:broader sml-term:RelationReference ;
skos:definition "An objectified relation reference for the consists of relation"@en ;
skos:prefLabel "Matter portion"@en .
sml-term:PlannedEntity a skos:Concept ;
skos:broader sml-term:Entity ;
skos:definition "An entity that does not yet exist in physical reality, but which exists in mental or conceptual reality"@en ;
skos:prefLabel "Planned entity"@en .
sml-term:Plasma a skos:Concept ;
skos:broader sml-term:AggregationStateType ;
skos:definition "A phase in which the particles of a gaseous substance are ionised"@en ;
skos:prefLabel "Plasma"@en .
sml-term:Port a skos:Concept ;
skos:broader sml-term:PhysicalObject ;
skos:definition "A physical or logical point of interaction as part of a physical object where, through a connection or interface, an interaction can take place"@en ;
skos:prefLabel "Port"@en .
sml-term:QualityValue a skos:Concept ;
skos:broader sml-term:Objectification ;
skos:definition "The objectification of a value of a quality having a complex value like a simple value sec combined with other metadata or just a combination of simple values"@en ;
skos:prefLabel "Quality value"@en .
sml-term:QuantityKind a skos:Concept ;
skos:definition "Any observable property that can be measured and quantified numerically"@en ;
skos:prefLabel "Quantity kind"@en .
sml-term:QuantityValue a skos:Concept ;
skos:broader sml-term:Objectification ;
skos:definition "The objectification of a value of a quantity (typically involving a quantity kind and a unit) having a complex value like a simple value sec combined with other metadata or just a combination of simple values"@en ;