forked from nl-digigo/nen2660
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnen2660.ttl
1629 lines (1425 loc) · 78.4 KB
/
nen2660.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 nen2660: <https://w3id.org/nen2660/def#> .
@prefix nen2660-term: <https://w3id.org/nen2660/term#> .
@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 time: <http://www.w3.org/2006/time#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
nen2660:AbstractConcept a rdfs:Class,
owl:Class ;
rdfs:seeAlso nen2660-term:AbstractConcept ;
rdfs:subClassOf nen2660: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 .
nen2660:Activity a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso nen2660-term:Activity ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom nen2660:Activity ;
owl:onProperty nen2660:hasPart ],
nen2660: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 nen2660:GeometricEntity ;
sh:path nen2660:hasBoundary ],
[ sh:class nen2660:GeometricEntity ;
sh:path nen2660:hasInterior ],
[ sh:class nen2660:Activity ;
sh:path nen2660:hasPart ],
[ sh:class nen2660:TemporalEntity ;
sh:path nen2660:hasPeriod ],
[ sh:class nen2660:Object ;
sh:path nen2660:transforms ] .
nen2660:AggregationStateType a rdfs:Class,
owl:Class,
sh:NodeShape,
nen2660:EnumerationType ;
rdfs:seeAlso nen2660-term:AggregationStateType ;
owl:oneOf ( nen2660:Solid nen2660:Liquid nen2660:Gas nen2660: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 ( nen2660:Solid nen2660:Liquid nen2660:Gas nen2660:Plasma ) .
nen2660:AmountOfBulkMatter a rdfs:Class,
owl:Class ;
rdfs:seeAlso nen2660-term:AmountOfBulkMatter ;
rdfs:subClassOf nen2660: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 .
nen2660:ChemicalCompound a rdfs:Class,
owl:Class ;
rdfs:seeAlso nen2660-term:ChemicalBonding ;
rdfs:subClassOf nen2660: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 .
nen2660:ChemicalElement a rdfs:Class,
owl:Class ;
rdfs:seeAlso nen2660-term:ChemicalElement ;
rdfs:subClassOf nen2660: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 .
nen2660:ConceptType a rdfs:Class,
owl:Class ;
rdfs:seeAlso nen2660-term:ConceptType ;
rdfs:subClassOf nen2660:Type ;
skos:definition "A meta-concept having concepts as instances that can have attributes or relations"@en ;
skos:prefLabel "Concept type"@en .
nen2660:ConcreteConcept a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso nen2660-term:ConcreteConcept ;
rdfs:subClassOf nen2660: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 nen2660:GeometricEntity ;
sh:path nen2660:hasBoundary ],
[ sh:class nen2660:GeometricEntity ;
sh:path nen2660:hasInterior ],
[ sh:class nen2660:TemporalEntity ;
sh:path nen2660:hasTemporalEntity ],
[ sh:class nen2660:ConcreteConcept ;
sh:path nen2660:hasPart ],
[ sh:class rdfs:Container ;
sh:path nen2660:hasPartsGroup ] .
nen2660:Connection a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso nen2660-term:Connection ;
rdfs:subClassOf nen2660: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 nen2660:PhysicalObject ;
sh:path nen2660:connectsObject ],
[ sh:class nen2660:Port ;
sh:path nen2660:connectsPort ] .
nen2660:DiscreteObject a rdfs:Class,
owl:Class ;
rdfs:seeAlso nen2660-term:DiscreteObject ;
rdfs:subClassOf nen2660: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 .
nen2660:Entity a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso nen2660-term:Entity ;
rdfs:subClassOf nen2660: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 nen2660:State ;
sh:path nen2660:hasState ],
[ sh:class nen2660:Event ;
sh:path nen2660:triggers ] .
nen2660:EnumerationType a rdfs:Class,
owl:Class ;
rdfs:seeAlso nen2660-term:EnumerationType ;
rdfs:subClassOf rdfs:Container,
nen2660:Type ;
skos:definition "A meta-concept having concepts as instances having no further attributes or relations (annotations only)"@en ;
skos:prefLabel "Enumeration type"@en .
nen2660:Event a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso nen2660-term:Event ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom nen2660:Event ;
owl:onProperty nen2660:hasPart ],
nen2660: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 nen2660:State ;
sh:path nen2660:begins ],
[ sh:class nen2660:State ;
sh:path nen2660:ends ],
[ sh:class nen2660:Event ;
sh:path nen2660:hasPart ] .
nen2660:FunctionalEntity a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso nen2660-term:FunctionalEntity ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom nen2660:Entity ;
owl:onProperty nen2660:hasPart ],
nen2660: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 nen2660:Entity ;
sh:path nen2660:hasPart ],
[ sh:class nen2660:FunctionalEntity ;
sh:path nen2660:hasFunctionalPart ],
[ sh:class nen2660:TechnicalEntity ;
sh:path nen2660:hasSolution ] .
nen2660:GeometricEntity a rdfs:Class,
owl:Class ;
rdfs:seeAlso nen2660-term:GeometricEntity ;
rdfs:subClassOf nen2660: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 .
nen2660:HeterogeneousMixture a rdfs:Class,
owl:Class ;
rdfs:seeAlso nen2660-term:HeterogeneousMixture ;
rdfs:subClassOf nen2660: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 .
nen2660:HomogeneousMixture a rdfs:Class,
owl:Class ;
rdfs:seeAlso nen2660-term:HomogeneousMixture ;
rdfs:subClassOf nen2660:Mixture ;
skos:definition "A mixture that is uniform throughout, and has only one phase"@en ;
skos:prefLabel "Homogeneous mixture"@en .
nen2660:InformationObject a rdfs:Class,
owl:Class ;
rdfs:seeAlso nen2660-term:InformationObject ;
rdfs:subClassOf nen2660:Object ;
skos:definition "Object which describes a thing in reality"@en ;
skos:prefLabel "Information object"@en .
nen2660:Interaction a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso nen2660-term:Interaction ;
rdfs:subClassOf nen2660: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 nen2660:Connection ;
sh:path nen2660:overConnection ],
[ sh:class nen2660:Interface ;
sh:path nen2660:overInterface ],
[ sh:class nen2660:TransferType ;
sh:path nen2660:transferType ] .
nen2660:Interface a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso nen2660-term:Interface ;
rdfs:subClassOf nen2660: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 nen2660:PhysicalObject ;
sh:path nen2660:connectsObject ],
[ sh:class nen2660:Port ;
sh:path nen2660:connectsPort ] .
nen2660:Matter a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso nen2660-term:Matter ;
rdfs:subClassOf nen2660: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 nen2660:AggregationStateType ;
sh:path nen2660:aggregationStateType ],
[ sh:datatype xsd:string ;
sh:path nen2660:chemicalFormula ] .
nen2660:MatterPortion a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso nen2660-term:MatterPortion ;
rdfs:subClassOf [ a owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty nen2660:portion ],
[ a owl:Restriction ;
owl:onClass nen2660:Matter ;
owl:onProperty rdf:value ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ],
nen2660:RelationReference ;
skos:definition "An objectified relation reference for the consists of relation"@en ;
skos:prefLabel "Matter portion"@en ;
sh:property [ sh:class nen2660:QuantityValue ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:path nen2660:portion ] .
nen2660:Mixture a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso nen2660-term:Mixture ;
rdfs:subClassOf nen2660: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 nen2660:Matter ] [ sh:class nen2660:MatterPortion ] ) ;
sh:path nen2660:consistsOf ] .
nen2660:Object a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso nen2660-term:Object ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom nen2660:Object ;
owl:onProperty nen2660:hasPart ],
nen2660: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 nen2660:Object ;
sh:path nen2660:hasPart ] .
nen2660:Objectification a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso nen2660-term:Objectification ;
rdfs:subClassOf [ a owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty rdf:value ],
nen2660: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 ] .
nen2660:PhysicalObject a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso nen2660-term:PhysicalObject ;
rdfs:subClassOf nen2660: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 nen2660:PhysicalObject ;
sh:path nen2660:isConnectedTo ],
[ sh:class nen2660:InformationObject ;
sh:path nen2660:isDescribedBy ],
[ sh:class nen2660:Interaction ;
sh:path nen2660:participatesIn ],
[ sh:class nen2660:Activity ;
sh:path nen2660:executes ] .
nen2660:PlannedEntity a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso nen2660-term:PlannedEntity ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom nen2660:PlannedEntity ;
owl:onProperty nen2660:hasPart ],
nen2660: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 nen2660:PlannedEntity ;
sh:path nen2660:hasPart ],
[ sh:class nen2660:RealizedEntity ;
sh:path nen2660:isPlanFor ] .
nen2660:Port a rdfs:Class,
owl:Class ;
rdfs:seeAlso nen2660-term:Port ;
rdfs:subClassOf nen2660: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 .
nen2660:PureSubstance a rdfs:Class,
owl:Class ;
rdfs:seeAlso nen2660-term:PureSubstance ;
rdfs:subClassOf nen2660:Matter ;
skos:definition "Chemical matter that has an equal chemical composition and recognizable uniform and isotropic properties"@en ;
skos:prefLabel "Pure substance"@en .
nen2660:QualityValue a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso nen2660-term:QualityValue ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom xsd:string ;
owl:onProperty rdf:value ],
nen2660: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 ] .
nen2660:QuantityValue a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso nen2660-term:QuantityValue ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom [ a owl:Class ;
owl:unionOf ( xsd:decimal xsd:float xsd:double ) ] ;
owl:onProperty rdf:value ],
nen2660: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 ] .
nen2660:RealObject a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso nen2660-term:RealObject ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom [ a owl:Class ;
owl:unionOf ( nen2660:RealObject nen2660:Port ) ] ;
owl:onProperty nen2660:hasPart ],
nen2660: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 nen2660:Matter ] [ sh:class nen2660:MatterPortion ] ) ;
sh:path nen2660:consistsOf ],
[ sh:class [ a owl:Class ;
owl:unionOf ( nen2660:RealObject nen2660:Port ) ] ;
sh:path nen2660:hasPart ] .
nen2660:RealizedEntity a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso nen2660-term:RealizedEntity ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom nen2660:RealizedEntity ;
owl:onProperty nen2660:hasPart ],
nen2660:Entity ;
skos:definition "An entity that exists or has existed in the physical reality"@en ;
skos:prefLabel "Realized entity"@en ;
sh:property [ sh:class nen2660:RealizedEntity ;
sh:path nen2660:hasPart ] .
nen2660:RelationReference a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso nen2660-term:RelationReference ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom xsd:anyURI ;
owl:onProperty rdf:value ],
nen2660: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 ] .
nen2660:Representation a rdfs:Class,
owl:Class ;
rdfs:seeAlso nen2660-term:Representation ;
rdfs:subClassOf nen2660:InformationObject ;
skos:definition "That which represents something else"@en ;
skos:prefLabel "Representation"@en .
nen2660:Requirement a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso nen2660-term:Requirement ;
rdfs:subClassOf [ a owl:Restriction ;
owl:onClass xsd:string ;
owl:onProperty rdf:value ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ],
nen2660: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 nen2660:RequirementSeverityType ;
sh:path nen2660:requirementSeverityType ],
[ sh:class nen2660:RequirementSourceType ;
sh:path nen2660:requirementSourceType ],
[ sh:class nen2660:RequirementTopicType ;
sh:path nen2660:requirementTopicType ],
[ sh:class nen2660:VerificationMethodType ;
sh:path nen2660:verificationMethodType ] .
nen2660:RequirementSeverityType a rdfs:Class,
owl:Class,
nen2660:EnumerationType ;
rdfs:seeAlso nen2660-term:RequirementSeverityType ;
skos:definition "The seriousness of a requirement like demanded or wished"@en ;
skos:prefLabel "Requirement severity type"@en .
nen2660:RequirementSourceType a rdfs:Class,
owl:Class,
nen2660:EnumerationType ;
rdfs:seeAlso nen2660-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 .
nen2660:RequirementTopicType a rdfs:Class,
owl:Class,
nen2660:EnumerationType ;
rdfs:seeAlso nen2660-term:RequirementTopicType ;
skos:definition "The entity aspect a requirement applies to"@en ;
skos:prefLabel "Requirement topic type"@en .
nen2660:SpatialRegion a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso nen2660-term:SpatialRegion ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom [ a owl:Class ;
owl:unionOf ( nen2660:SpatialRegion nen2660:Port ) ] ;
owl:onProperty nen2660:hasPart ],
nen2660: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 nen2660:RealObject ;
sh:path nen2660:contains ],
[ sh:class [ a owl:Class ;
owl:unionOf ( nen2660:SpatialRegion nen2660:Port ) ] ;
sh:path nen2660:hasPart ],
[ sh:class nen2660:PhysicalObject ;
sh:path nen2660:isBoundBy ] .
nen2660:State a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso nen2660-term:State ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom nen2660:State ;
owl:onProperty nen2660:hasPart ],
nen2660: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 nen2660:GeometricEntity ;
sh:path nen2660:hasBoundary ],
[ sh:class nen2660:GeometricEntity ;
sh:path nen2660:hasInterior ],
[ sh:class nen2660:State ;
sh:path nen2660:hasPart ],
[ sh:class nen2660:TemporalEntity ;
sh:path nen2660:hasPeriod ] .
nen2660:TechnicalEntity a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso nen2660-term:TechnicalEntity ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom nen2660:Entity ;
owl:onProperty nen2660:hasPart ],
nen2660: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 nen2660:Entity ;
sh:path nen2660:hasPart ],
[ sh:class nen2660:TechnicalEntity ;
sh:path nen2660:hasTechnicalPart ] .
nen2660:TopConcept a rdfs:Class,
owl:Class,
sh:NodeShape ;
rdfs:seeAlso nen2660-term:TopConcept ;
skos:definition "The most generic concept"@en ;
skos:prefLabel "Top concept"@en ;
sh:property [ sh:datatype xsd:string ;
sh:path nen2660:abbreviation ],
[ sh:class nen2660:Requirement ;
sh:path nen2660:hasRequirement ],
[ sh:class nen2660:InformationObject ;
sh:path nen2660:isDescribedBy ] .
nen2660:TransferType a rdfs:Class,
owl:Class,
sh:NodeShape,
nen2660:EnumerationType ;
rdfs:seeAlso nen2660-term:TransferType ;
owl:oneOf ( nen2660:MaterialFlow nen2660:EnergyFlow nen2660:InformationFlow nen2660:Force ) ;
skos:definition "The type of thing being transferred, here: material, information, energy or force"@en ;
skos:prefLabel "Transfer type"@en ;
sh:in ( nen2660:MaterialFlow nen2660:EnergyFlow nen2660:InformationFlow nen2660:Force ) .
nen2660:Type a rdfs:Class,
owl:Class ;
rdfs:seeAlso nen2660-term:Type ;
rdfs:subClassOf nen2660:AbstractConcept ;
skos:definition "A meta-concept which instances are concepts (not individuals)"@en ;
skos:prefLabel "Type"@en .
nen2660:VerificationMethodType a rdfs:Class,
owl:Class,
nen2660:EnumerationType ;
rdfs:seeAlso nen2660-term:VerificationMethodType ;
skos:definition "The method by which a requirement is verified"@en ;
skos:prefLabel "Verification method type"@en .
nen2660:AllDisjointClassesShape a sh:NodeShape ;
sh:property [ sh:path ( rdf:type [ sh:zeroOrMorePath rdfs:subClassOf ] ) ;
sh:qualifiedMaxCount 1 ;
sh:qualifiedValueShape [ sh:in ( nen2660:FunctionalEntity nen2660:TechnicalEntity ) ] ],
[ sh:path ( rdf:type [ sh:zeroOrMorePath rdfs:subClassOf ] ) ;
sh:qualifiedMaxCount 1 ;
sh:qualifiedValueShape [ sh:in ( nen2660:PlannedEntity nen2660:RealizedEntity ) ] ],
[ sh:path ( rdf:type [ sh:zeroOrMorePath rdfs:subClassOf ] ) ;
sh:qualifiedMaxCount 1 ;
sh:qualifiedValueShape [ sh:in ( nen2660:PhysicalObject nen2660:InformationObject nen2660:State nen2660:Event nen2660:Activity ) ] ],
[ sh:path ( rdf:type [ sh:zeroOrMorePath rdfs:subClassOf ] ) ;
sh:qualifiedMaxCount 1 ;
sh:qualifiedValueShape [ sh:in ( nen2660:RealObject nen2660:SpatialRegion ) ] ] ;
sh:targetSubjectsOf rdf:type .
nen2660:AllDisjointClasses_1 a owl:AllDisjointClasses ;
owl:members ( nen2660:PhysicalObject nen2660:InformationObject nen2660:Activity nen2660:Event nen2660:State ) .
nen2660:AllDisjointClasses_2 a owl:AllDisjointClasses ;
owl:members ( nen2660:RealObject nen2660:SpatialRegion ) .
nen2660:AllDisjointClasses_3 a owl:AllDisjointClasses ;
owl:members ( nen2660:FunctionalEntity nen2660:TechnicalEntity ) .
nen2660:AllDisjointClasses_4 a owl:AllDisjointClasses ;
owl:members ( nen2660:PlannedEntity nen2660:RealizedEntity ) .
nen2660:hasQuantityKindShape a sh:NodeShape ;
sh:class qudt:QuantityKind ;
sh:targetObjectsOf nen2660:hasQuantityKind .
nen2660:hasUnitShape a sh:NodeShape ;
sh:class qudt:Unit ;
sh:targetObjectsOf nen2660:hasUnit .
nen2660:isImplementedBy a rdf:Property,
owl:ObjectProperty ;
rdfs:domain nen2660:FunctionalEntity ;
rdfs:range nen2660:TechnicalEntity ;
rdfs:seeAlso nen2660-term:isImplementedBy ;
rdfs:subPropertyOf nen2660:hasSolution ;
skos:definition "The technical entity that implements a functional entity"@en ;
skos:prefLabel "is implemented by"@en .
nen2660:isRealizedBy a rdf:Property,
owl:ObjectProperty ;
rdfs:domain nen2660:PlannedEntity ;
rdfs:range nen2660:RealizedEntity ;
rdfs:seeAlso nen2660-term:isRealizedBy ;
rdfs:subPropertyOf nen2660:isPlanFor ;
skos:definition "The realized entity that realizes a planned entity"@en ;
skos:prefLabel "is realized by"@en .
<https://w3id.org/nen2660/owl/def> a owl:Ontology ;
owl:imports <http://qudt.org/schema/qudt>,
<http://qudt.org/vocab/quantitykind>,
<http://qudt.org/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/nen2660/rdfs/def> .
<https://w3id.org/nen2660/shacl/def> a owl:Ontology ;
owl:imports <http://qudt.org/schema/qudt>,
<http://qudt.org/vocab/quantitykind>,
<http://qudt.org/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/nen2660/rdfs/def> .
<https://w3id.org/nen2660/skos/term> a skos:ConceptScheme ;
owl:imports <http://qudt.org/schema/qudt>,
<http://qudt.org/vocab/quantitykind>,
<http://qudt.org/vocab/unit>,
<http://www.w3.org/2004/02/skos/core>,
<http://www.w3.org/2006/time>,
<http://www.w3.org/ns/shacl> ;
skos:hasTopConcept nen2660-term:TopConcept .
nen2660-term:ChemicalCompound a skos:Concept ;
skos:broader nen2660-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,
"Zuivere stof bestaande uit twee of meer chemische elementen die een chemische binding met elkaar hebben. In een chemische verbinding komen de elementen in een vaste verhouding voor. Een verbinding kan worden ontleed in eenvoudigere stoffen door middel van chemische reacties"@nl ;
skos:prefLabel "Chemical compound"@en,
"Chemische verbinding"@nl .
nen2660-term:hasPartsGroup a skos:Concept ;
skos:definition "The possession of an group of, potentially implicit, parts"@en,
"Het hebben van een groep, eventueel impliciete, onderdelen"@nl ;
skos:prefLabel "has parts group"@en,
"heeft delen groep"@nl .
time:TemporalEntity rdfs:seeAlso nen2660-term:TemporalEntity ;
rdfs:subClassOf nen2660:Representation ;
skos:definition "A temporal interval or instant"@en ;
skos:prefLabel "Temporal entity"@en .
nen2660:abbreviation a rdf:Property,
owl:AnnotationProperty ;
rdfs:domain nen2660:TopConcept ;
rdfs:range xsd:string ;
rdfs:seeAlso nen2660-term:abbreviation ;
rdfs:subPropertyOf skos:altLabel ;
skos:definition "Acronym or initial word as special case of an external name"@en ;
skos:prefLabel "abbreviation"@en .
nen2660:aggregationStateType a rdf:Property,
owl:ObjectProperty ;
rdfs:domain nen2660:Matter ;
rdfs:range nen2660:AggregationStateType ;
rdfs:seeAlso nen2660-term:aggregationStateType ;
skos:definition "The possession of an aggregation state type"@en ;
skos:prefLabel "aggregation state type"@en .
nen2660:begins a rdf:Property,
owl:ObjectProperty ;
rdfs:domain nen2660:Event ;
rdfs:range nen2660:State ;
rdfs:seeAlso nen2660-term:begins ;
skos:definition "The state that is started by an event"@en ;
skos:prefLabel "begins"@en .
nen2660:chemicalFormula a rdf:Property,
owl:DatatypeProperty ;
rdfs:domain nen2660:Matter ;
rdfs:range xsd:string ;
rdfs:seeAlso nen2660-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 .
nen2660:contains a rdf:Property,
owl:ObjectProperty ;
rdfs:domain nen2660:SpatialRegion ;
rdfs:range nen2660:RealObject ;
rdfs:seeAlso nen2660-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 .
nen2660:ends a rdf:Property,
owl:ObjectProperty ;
rdfs:domain nen2660:Event ;
rdfs:range nen2660:State ;
rdfs:seeAlso nen2660-term:ends ;
skos:definition "The state that is ended by an event"@en ;
skos:prefLabel "ends"@en .
nen2660:executes a rdf:Property,
owl:ObjectProperty ;
rdfs:domain nen2660:PhysicalObject ;
rdfs:range nen2660:Activity ;
rdfs:seeAlso nen2660-term:executes ;
skos:definition "The activity executed by a physical object"@en ;
skos:prefLabel "executes"@en .
nen2660:hasFunctionalPart a rdf:Property,
owl:ObjectProperty ;
rdfs:domain nen2660:FunctionalEntity ;
rdfs:range nen2660:FunctionalEntity ;
rdfs:seeAlso nen2660-term:hasFunctionalPart ;
rdfs:subPropertyOf nen2660:hasPart ;
skos:definition "The hasPart relation of a functional nature"@en ;
skos:prefLabel "has functional part"@en .
nen2660:hasPartsGroup a rdf:Property,
owl:ObjectProperty ;
rdfs:domain nen2660:ConcreteConcept ;
rdfs:range rdfs:Container ;
rdfs:seeAlso nen2660-term:hasPart ;
skos:definition "The possession of an group of, potentially implicit, parts"@en ;
skos:prefLabel "has parts group"@en .
nen2660:hasQuantityKind a rdf:Property,
owl:ObjectProperty ;
rdfs:range qudt:QuantityKind ;
rdfs:seeAlso nen2660-term:hasQuantityKind ;
skos:definition "The possession of a quantity kind"@en ;
skos:prefLabel "has quantity kind"@en .
nen2660:hasRequirement a rdf:Property,
owl:ObjectProperty ;
rdfs:domain nen2660:TopConcept ;
rdfs:range nen2660:Requirement ;
rdfs:seeAlso nen2660-term:hasRequirement ;
skos:definition "The (unstructured) requirement for something"@en ;
skos:prefLabel "has requirement"@en .
nen2660:hasState a rdf:Property,
owl:ObjectProperty ;
rdfs:domain nen2660:Entity ;
rdfs:range nen2660:State ;
rdfs:seeAlso nen2660-term:hasState ;
skos:definition "The state of an entity in a certain point or period of time"@en ;
skos:prefLabel "has state"@en .
nen2660:hasTechnicalPart a rdf:Property,
owl:ObjectProperty ;
rdfs:domain nen2660:TechnicalEntity ;
rdfs:range nen2660:TechnicalEntity ;
rdfs:seeAlso nen2660-term:hasTechnicalPart ;
rdfs:subPropertyOf nen2660:hasPart ;
skos:definition "A hasPart relation of a technical nature"@en ;
skos:prefLabel "has technical part"@en .
nen2660:hasTemporalEntity a rdf:Property,
owl:ObjectProperty ;
rdfs:domain nen2660:ConcreteConcept ;
rdfs:range time:TemporalEntity ;
rdfs:seeAlso nen2660-term:hasTemporalEntity ;
skos:definition "The abstract temporal entity representing a concrete concept in time"@en ;
skos:prefLabel "has temporal entity"@en .
nen2660:hasUnit a rdf:Property,
owl:ObjectProperty ;
rdfs:range qudt:Unit ;
rdfs:seeAlso nen2660-term:hasUnit ;
skos:definition "The possession of a unit"@en ;
skos:prefLabel "has unit"@en .
nen2660:isBoundBy a rdf:Property,
owl:ObjectProperty ;
rdfs:domain nen2660:SpatialRegion ;
rdfs:range nen2660:PhysicalObject ;
rdfs:seeAlso nen2660-term:isBoundBy ;
skos:definition "The physical object that bounds a spatial region"@en ;
skos:prefLabel "is bound by"@en .
nen2660:isConnectedTo a rdf:Property,
owl:ObjectProperty ;
rdfs:domain nen2660:PhysicalObject ;
rdfs:range nen2660:PhysicalObject ;
rdfs:seeAlso nen2660-term:isConnectedTo ;
skos:definition "The topological relationship between physical objects"@en ;
skos:prefLabel "is connected to"@en .
nen2660:overConnection a rdf:Property,
owl:ObjectProperty ;
rdfs:domain nen2660:Interaction ;
rdfs:range nen2660:Connection ;
rdfs:seeAlso nen2660-term:overConnection ;
skos:definition "The connection over which an interaction between physical objects takes place"@en ;
skos:prefLabel "over connection"@en .
nen2660:overInterface a rdf:Property,
owl:ObjectProperty ;
rdfs:domain nen2660:Interaction ;
rdfs:range nen2660:Interface ;
rdfs:seeAlso nen2660-term:overInterface ;
skos:definition "The interface over which an interaction between physical objects takes place"@en ;
skos:prefLabel "over interface"@en .
nen2660:participatesIn a rdf:Property,
owl:ObjectProperty ;
rdfs:domain nen2660:PhysicalObject ;
rdfs:range nen2660:Interaction ;
rdfs:seeAlso nen2660-term:participatesIn ;
skos:definition "The interaction a physical object participates in"@en ;
skos:prefLabel "participates in"@en .
nen2660:requirementSeverityType a rdf:Property,
owl:ObjectProperty ;
rdfs:domain nen2660:Requirement ;
rdfs:range nen2660:RequirementSeverityType ;
rdfs:seeAlso nen2660-term:requirementSeverityType ;
skos:definition "The possession of a severity type by a requirement"@en ;
skos:prefLabel "requirement severity type"@en .
nen2660:requirementSourceType a rdf:Property,
owl:ObjectProperty ;
rdfs:domain nen2660:Requirement ;
rdfs:range nen2660:RequirementSourceType ;
rdfs:seeAlso nen2660-term:requirementSourceType ;
skos:definition "The possession of a source type by a requirement"@en ;
skos:prefLabel "requirement source type"@en .
nen2660:requirementTopicType a rdf:Property,
owl:ObjectProperty ;
rdfs:domain nen2660:Requirement ;
rdfs:range nen2660:RequirementTopicType ;
rdfs:seeAlso nen2660-term:requirementTopicType ;
skos:definition "The possession of a topic type by a requirement"@en ;
skos:prefLabel "requirement topic type"@en .
nen2660:transferType a rdf:Property,
owl:ObjectProperty ;
rdfs:domain nen2660:Interaction ;
rdfs:range nen2660:TransferType ;
rdfs:seeAlso nen2660-term:transferType ;
skos:definition "The possession of a transfer type by an interaction"@en ;
skos:prefLabel "transfer type"@en .
nen2660:transforms a rdf:Property,
owl:ObjectProperty ;
rdfs:domain nen2660:Activity ;
rdfs:range nen2660:Object ;
rdfs:seeAlso nen2660-term:transforms ;
skos:definition "The object transformed by an activity"@en ;
skos:prefLabel "transforms"@en .
nen2660:triggers a rdf:Property,
owl:ObjectProperty ;
rdfs:domain nen2660:Entity ;
rdfs:range nen2660:Event ;
rdfs:seeAlso nen2660-term:triggers ;
skos:definition "The event triggert by an entity"@en ;
skos:prefLabel "triggers"@en .
nen2660:verificationMethodType a rdf:Property,
owl:ObjectProperty ;
rdfs:domain nen2660:Requirement ;
rdfs:range nen2660:VerificationMethodType ;
rdfs:seeAlso nen2660-term:verificationMethodType ;
skos:definition "The possession of a verification method type by a requirement"@en ;
skos:prefLabel "verification method type"@en .
nen2660-term:AmountOfBulkMatter a skos:Concept ;
skos:broader nen2660-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,
"Een reëel object dat bestaat uit een aaneengesloten hoeveelheid niet-vormvaste materie, primair bijeengehouden door externe krachten (zwaartekracht of opsluiting)"@nl ;
skos:prefLabel "Amount of bulk matter"@en,
"Hoeveelheid bulkmaterie"@nl .
nen2660-term:ChemicalElement a skos:Concept ;
skos:broader nen2660-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,
"Zuivere stof die is opgebouwd uit atomen met hetzelfde atoomnummer. Een chemisch element kan niet worden ontleed door middel van chemische reacties"@nl ;
skos:prefLabel "Chemical element"@en,
"Chemisch element"@nl .
nen2660-term:ConceptType a skos:Concept ;
skos:broader nen2660-term:Type ;
skos:definition "A meta-concept having concepts as instances that can have attributes or relations"@en,
"Een meta-concept met concepten als instanties die attributen of relaties kunnen hebben"@nl ;
skos:prefLabel "Concept type"@en,
"Concept type"@nl .
nen2660-term:Connection a skos:Concept ;
skos:broader nen2660-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,
"Een fysiek object (reëel object of ruimtelijk gebied) dat twee andere fysieke objecten verbindt en waarover interactie plaatsvindt namelijk de overdracht van materie, energie, informatie of krachten"@nl ;
skos:prefLabel "Connection"@en,
"Verbinding"@nl .
nen2660-term:DiscreteObject a skos:Concept ;
skos:broader nen2660-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,
"Een reëel object dat bestaat uit een aaneengesloten hoeveelheid vormvaste materie, primair bijeengehouden door interne krachten (zwaartekracht of elektromagnetische kracht)"@nl ;
skos:prefLabel "Discrete object"@en,
"Discreet object"@nl .
nen2660-term:EnergyFlow a skos:Concept ;
skos:broader nen2660-term:TransferType ;
skos:definition "The movement of an amount of energy (as capacity to do work)"@en,
"De beweging van een hoeveelheid energie (als capaciteit om arbeid te verrichten)"@nl ;
skos:prefLabel "Energy flow"@en,
"Energie stroom"@nl .
nen2660-term:Event a skos:Concept ;
skos:broader nen2660-term:ConcreteConcept ;
skos:definition "Transition between two successive states of an entity (object or activity). An event is triggered in a state"@en,
"Overgang tussen twee opeenvolgende toestanden van een entiteit (object of activiteit). Een gebeurtenis wordt getriggerd in een toestand"@nl ;
skos:prefLabel "Event"@en,
"Gebeurtenis"@nl .
nen2660-term:Force a skos:Concept ;
skos:broader nen2660-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,
"Natuurkundige grootheid die, uitgeoefend op een lichaam, daarin een spanning of druk doet ontstaan, of die het lichaam van beweging doet veranderen, doet versnellen"@nl ;
skos:prefLabel "Force"@en,
"Kracht"@nl .
nen2660-term:FunctionalEntity a skos:Concept ;
skos:broader nen2660-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,
"Een entiteit waarbij het gaat om het externe gedrag waarbij de uitvoer bijdraagt aan doelstellingen van belanghebbenden geïmplementeerd/gespeeld door een of meer technische entiteiten"@nl ;
skos:prefLabel "Functional entity"@en,
"Functionele entiteit"@nl .
nen2660-term:Gas a skos:Concept ;
skos:broader nen2660-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,
"Materie in een tussentoestand tussen vloeistof en plasma die alleen kan worden ingesloten als deze volledig is omgeven door een vaste stof (of in een bel van vloeistof) (of bij elkaar wordt gehouden door zwaartekracht); het kan condenseren tot een vloeistof, of kan (zelden) direct een vaste stof worden door afzetting"@nl ;
skos:prefLabel "Gas"@en,
"Gas"@nl .
nen2660-term:GeometricEntity a skos:Concept ;
skos:broader nen2660-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,
"Benoemd concept, dat een daadwerkelijke of virtuele afbakening vormt in een concrete (fysieke, driedimensionale) ruimte, die we in de werkelijkheid ervaren"@nl ;
skos:prefLabel "Geometric entity"@en,
"Geometrische entiteit"@nl .
nen2660-term:HeterogeneousMixture a skos:Concept ;
skos:broader nen2660-term:Mixture ;
skos:definition "A mixture that is separated into different regions or phases that have different compositions or properties"@en,
"Een mengsel dat is opgedeeld in verschillende regio's of fasen met verschillende samenstellingen of eigenschappen"@nl ;
skos:prefLabel "Heterogeneous mixture"@en,
"Heterogeneen mengsel"@nl .
nen2660-term:HomogeneousMixture a skos:Concept ;
skos:broader nen2660-term:Mixture ;
skos:definition "A mixture that is uniform throughout, and has only one phase"@en,
"Een mengsel dat overal uniform is en maar 1 fase heeft"@nl ;
skos:prefLabel "Homogeneous mixture"@en,
"Homogeen mengsel"@nl .
nen2660-term:InformationFlow a skos:Concept ;
skos:broader nen2660-term:TransferType ;
skos:definition "The movement of information represented in some medium"@en,
"De beweging van informatie weergegeven in een of ander medium"@nl ;
skos:prefLabel "Information flow"@en,
"Informatie stroom"@nl .
nen2660-term:Interaction a skos:Concept ;
skos:broader nen2660-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,
"De activiteit zijnde een combinatie van subactiviteiten uitgevoerd door fysieke objecten waartussen een overdracht van materie, informatie, energie of kracht plaatsvindt, typisch over een verbinding of raakvlak (direct of via poorten)"@nl ;
skos:prefLabel "Interaction"@en,
"Interactie"@nl .
nen2660-term:Interface a skos:Concept ;
skos:broader nen2660-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,
"Een ruimtelijk object, typisch een dunne 2D fysieke ruimte (maar 0D of 1D kan ook) dat de verbinding legt tussen twee fysieke objecten of poorten van fysieke objecten waarlangs een statische of dynamische wisselwerking of interactie tussen die elementen kan plaatsvinden"@nl ;
skos:prefLabel "Interface"@en,
"Raakvlak"@nl .
nen2660-term:Liquid a skos:Concept ;
skos:broader nen2660-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,
"Een vloeistof is een bijna onsamendrukbare vloeistof die zich aanpast aan de vorm van de houder, maar een (bijna) constant volume behoudt, onafhankelijk van de druk"@nl ;
skos:prefLabel "Liquid"@en,
"Vloeistof"@nl .
nen2660-term:MaterialFlow a skos:Concept ;
skos:broader nen2660-term:TransferType ;
skos:definition "The movement of an amount of material"@en,
"De beweging van een hoeveelheid materiaal"@nl ;
skos:prefLabel "Material flow"@en,
"Materiaalstroom"@nl .
nen2660-term:MatterPortion a skos:Concept ;
skos:broader nen2660-term:RelationReference ;
skos:definition "An objectified relation reference for the consists of relation"@en,
"Een geobjectiveerde relatiereferentie voor de bestaat uit relatie"@nl ;
skos:prefLabel "Matter portion"@en,
"Materie-aandeel"@nl .
nen2660-term:PlannedEntity a skos:Concept ;
skos:broader nen2660-term:Entity ;
skos:definition "An entity that does not yet exist in physical reality, but which exists in mental or conceptual reality"@en,
"Een entiteit die nog niet bestaat in de fysieke werkelijkheid, maar die in de mentale of conceptuele werkelijkheid voorkomt"@nl ;
skos:prefLabel "Planned entity"@en,