-
Notifications
You must be signed in to change notification settings - Fork 0
/
tubes.json
4039 lines (4039 loc) · 148 KB
/
tubes.json
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
[ {
"@id" : "_:genid1",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2002/07/owl#unionOf" : [ {
"@list" : [ {
"@id" : "https://w3id.org/tso#Data"
}, {
"@id" : "https://w3id.org/tso#Energy"
}, {
"@id" : "https://w3id.org/tso#Matter"
} ]
} ]
}, {
"@id" : "_:genid13",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2002/07/owl#unionOf" : [ {
"@list" : [ {
"@id" : "https://w3id.org/tso#Data"
}, {
"@id" : "https://w3id.org/tso#Energy"
}, {
"@id" : "https://w3id.org/tso#Matter"
} ]
} ]
}, {
"@id" : "_:genid17",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2002/07/owl#unionOf" : [ {
"@list" : [ {
"@id" : "https://w3id.org/tso#Data"
}, {
"@id" : "https://w3id.org/tso#Energy"
}, {
"@id" : "https://w3id.org/tso#Matter"
} ]
} ]
}, {
"@id" : "_:genid21",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2002/07/owl#unionOf" : [ {
"@list" : [ {
"@id" : "https://w3id.org/tso#Data"
}, {
"@id" : "https://w3id.org/tso#Energy"
}, {
"@id" : "https://w3id.org/tso#Matter"
} ]
} ]
}, {
"@id" : "_:genid25",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2002/07/owl#unionOf" : [ {
"@list" : [ {
"@id" : "https://w3id.org/tso#Data"
}, {
"@id" : "https://w3id.org/tso#Energy"
}, {
"@id" : "https://w3id.org/tso#Matter"
} ]
} ]
}, {
"@id" : "_:genid29",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2002/07/owl#unionOf" : [ {
"@list" : [ {
"@id" : "https://w3id.org/tso#Data"
}, {
"@id" : "https://w3id.org/tso#Energy"
}, {
"@id" : "https://w3id.org/tso#Matter"
} ]
} ]
}, {
"@id" : "_:genid33",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2002/07/owl#unionOf" : [ {
"@list" : [ {
"@id" : "https://w3id.org/tso#Data"
}, {
"@id" : "https://w3id.org/tso#Energy"
}, {
"@id" : "https://w3id.org/tso#Matter"
} ]
} ]
}, {
"@id" : "_:genid37",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2002/07/owl#unionOf" : [ {
"@list" : [ {
"@id" : "https://w3id.org/tso#Data"
}, {
"@id" : "https://w3id.org/tso#Energy"
}, {
"@id" : "https://w3id.org/tso#Matter"
} ]
} ]
}, {
"@id" : "_:genid41",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2002/07/owl#unionOf" : [ {
"@list" : [ {
"@id" : "https://w3id.org/tso#Data"
}, {
"@id" : "https://w3id.org/tso#Energy"
}, {
"@id" : "https://w3id.org/tso#Matter"
} ]
} ]
}, {
"@id" : "_:genid45",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2002/07/owl#unionOf" : [ {
"@list" : [ {
"@id" : "https://w3id.org/tso#Data"
}, {
"@id" : "https://w3id.org/tso#Energy"
}, {
"@id" : "https://w3id.org/tso#Matter"
} ]
} ]
}, {
"@id" : "_:genid5",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2002/07/owl#unionOf" : [ {
"@list" : [ {
"@id" : "https://w3id.org/tso#Data"
}, {
"@id" : "https://w3id.org/tso#Energy"
}, {
"@id" : "https://w3id.org/tso#Matter"
} ]
} ]
}, {
"@id" : "_:genid9",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2002/07/owl#unionOf" : [ {
"@list" : [ {
"@id" : "https://w3id.org/tso#Data"
}, {
"@id" : "https://w3id.org/tso#Energy"
}, {
"@id" : "https://w3id.org/tso#Matter"
} ]
} ]
}, {
"@id" : "http://purl.org/dc/terms/contributor",
"@type" : [ "http://www.w3.org/2002/07/owl#AnnotationProperty" ]
}, {
"@id" : "http://purl.org/dc/terms/creator",
"@type" : [ "http://www.w3.org/2002/07/owl#AnnotationProperty" ]
}, {
"@id" : "http://purl.org/dc/terms/description",
"@type" : [ "http://www.w3.org/2002/07/owl#AnnotationProperty" ]
}, {
"@id" : "http://purl.org/dc/terms/issued",
"@type" : [ "http://www.w3.org/2002/07/owl#AnnotationProperty" ]
}, {
"@id" : "http://purl.org/dc/terms/license",
"@type" : [ "http://www.w3.org/2002/07/owl#AnnotationProperty" ]
}, {
"@id" : "http://purl.org/dc/terms/modified",
"@type" : [ "http://www.w3.org/2002/07/owl#AnnotationProperty" ]
}, {
"@id" : "http://purl.org/dc/terms/title",
"@type" : [ "http://www.w3.org/2002/07/owl#AnnotationProperty" ]
}, {
"@id" : "http://purl.org/vocab/vann/preferredNamespacePrefix",
"@type" : [ "http://www.w3.org/2002/07/owl#AnnotationProperty" ]
}, {
"@id" : "http://purl.org/vocab/vann/preferredNamespaceUri",
"@type" : [ "http://www.w3.org/2002/07/owl#AnnotationProperty" ]
}, {
"@id" : "https://w3id.org/tso#",
"@type" : [ "http://www.w3.org/2002/07/owl#Ontology" ],
"http://purl.org/dc/terms/contributor" : [ {
"@value" : "Dominik Schlütter"
} ],
"http://purl.org/dc/terms/creator" : [ {
"@value" : "Nicolas Pauen"
} ],
"http://purl.org/dc/terms/description" : [ {
"@language" : "en",
"@value" : "The scope of the TUBES ontology is to explicitly define the topology of interconnected building service system and their relationship to the spatial structure. It has a strong alignment to other ontologies within the W3C community and aims to provide the means to link information at data level within the AEC industry."
} ],
"http://purl.org/dc/terms/issued" : [ {
"@type" : "http://www.w3.org/2001/XMLSchema#dateTime",
"@value" : "2022-02-01T12:00:00"
} ],
"http://purl.org/dc/terms/license" : [ {
"@id" : "https://creativecommons.org/licenses/by/4.0/"
} ],
"http://purl.org/dc/terms/modified" : [ {
"@type" : "http://www.w3.org/2001/XMLSchema#dateTime",
"@value" : "2022-02-01T12:00:00"
} ],
"http://purl.org/dc/terms/title" : [ {
"@language" : "en",
"@value" : "TUBES system ontology"
} ],
"http://www.w3.org/2000/01/rdf-schema#seeAlso" : [ {
"@id" : "https://doi.org/10.1002/bapi.202000027"
} ],
"http://www.w3.org/2002/07/owl#versionIRI" : [ {
"@id" : "https://w3id.org/v0.3/tubes"
} ],
"http://www.w3.org/2002/07/owl#versionInfo" : [ {
"@value" : "0.3.0"
} ]
}, {
"@id" : "https://w3id.org/tso#AutomationSystem",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "A system which distributes/stores/converts data for the purpose of automation and monitoring."
}, {
"@language" : "de",
"@value" : "Ein System, welches Daten zum Zweck der Automation und des Monitorings verteilt/speichert/konvertiert."
} ],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ {
"@id" : "https://w3id.org/tso#"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Automation System"
}, {
"@language" : "de",
"@value" : "Automatisierungssystem"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "https://w3id.org/tso#FunctionalSystem"
} ]
}, {
"@id" : "https://w3id.org/tso#Component",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "A component is a model of a whole which is isolated from the world or a supersystem, which consists of interconnected components or sub-systems and has links between attributes such as inputs, outputs and states. The boundary which isolates the component from the world or a supersystem is defined by the manufacturer with regards to the product aspect."
}, {
"@language" : "de",
"@value" : "Eine Komponente ist das Modell einer Ganzheit welches von ihrer Umgebung bzw. einem Supersystems abgegrenzt ist, welches aus miteinander verknüpften Komponenten oder Subsystemen besteht und Verbindungen zwischen Attributen wie Inputs, Outputs und Zuständen aufweist. Die Grenze, welche die Komponente von ihrer Umgebung bzw. einem Supersystem abgrenzt wird vom Hersteller in Bezug auf den Produktaspekt definiert."
} ],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ {
"@language" : "de",
"@value" : "https://w3id.org/tso#"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Component"
}, {
"@language" : "de",
"@value" : "Komponente"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "https://w3id.org/tso#System"
} ]
}, {
"@id" : "https://w3id.org/tso#Connection",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "A connection between two different connection points."
}, {
"@language" : "de",
"@value" : "Eine Verbindung zwischen verschiedenen Verbindungspunkten."
} ],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ {
"@id" : "https://w3id.org/tso#"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Connection"
}, {
"@language" : "de",
"@value" : "Verbindung"
} ]
}, {
"@id" : "https://w3id.org/tso#ConnectionPoint",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "A connection point refers to an inlet or outlet of a system for a connection to other systems or within the system."
}, {
"@language" : "de",
"@value" : "Ein Verbindungpunkt bezeichnet eine Einlass oder Auslass eines Systems zur Verbindung an andere Systeme oder innerhalb des Systems."
} ],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ {
"@id" : "https://w3id.org/tso#"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Connection point"
}, {
"@language" : "de",
"@value" : "Verbindungspunkt"
} ]
}, {
"@id" : "https://w3id.org/tso#ConversionSystem",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "A system which converts matter, energy and/or data."
}, {
"@language" : "de",
"@value" : "Ein System, welches Materie, Energie und/oder Daten konvertiert."
} ],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ {
"@id" : "https://w3id.org/tso#"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Conversion System"
}, {
"@language" : "de",
"@value" : "Wandlungssystem"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "https://w3id.org/tso#TechnicalSystem"
} ]
}, {
"@id" : "https://w3id.org/tso#CoolingSystem",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "A system which distributes/stores/converts thermal energy for the purpose of cooling."
}, {
"@language" : "de",
"@value" : "Ein System, welches thermische Energie für den Zweck der Kühlung verteilt/speichert/konvertiert."
} ],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ {
"@id" : "https://w3id.org/tso#"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Cooling System"
}, {
"@language" : "de",
"@value" : "Kühlsystem"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "https://w3id.org/tso#FunctionalSystem"
} ]
}, {
"@id" : "https://w3id.org/tso#Data",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "Characters grouped together for the purpose of processing, representing information based on known or implied understandings."
}, {
"@language" : "de",
"@value" : "Zum Zweck der Verarbeitung zusammengefasste Zeichen, die aufgrund bekannter oder unterstellter Abmachungen Informationen darstellen."
} ],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ {
"@id" : "https://w3id.org/tso#"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Data"
}, {
"@language" : "de",
"@value" : "Daten"
} ]
}, {
"@id" : "https://w3id.org/tso#DataConversionSystem",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "A system, which converts data."
}, {
"@language" : "de",
"@value" : "Ein System, welches Daten wandelt."
} ],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ {
"@id" : "https://w3id.org/tso#"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Data Conversion System"
}, {
"@language" : "de",
"@value" : "Datenwandlungssystem"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "https://w3id.org/tso#ConversionSystem"
} ]
}, {
"@id" : "https://w3id.org/tso#DataSystem",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "A system which distributes/stores/converts data."
}, {
"@language" : "de",
"@value" : "Ein System, welches Daten verteilt/speichert/konvertiert."
} ],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ {
"@id" : "https://w3id.org/tso#"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Data System"
}, {
"@language" : "de",
"@value" : "Datensystem"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "https://w3id.org/tso#FunctionalSystem"
} ]
}, {
"@id" : "https://w3id.org/tso#DistributionSystem",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "A system which distributes matter, energy and/or data."
}, {
"@language" : "de",
"@value" : "Ein System, welches Materie, Energie und/oder Daten verteilt."
} ],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ {
"@id" : "https://w3id.org/tso#"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Distribution System"
}, {
"@language" : "de",
"@value" : "Verteilungssystem"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "https://w3id.org/tso#TechnicalSystem"
} ]
}, {
"@id" : "https://w3id.org/tso#DrainageSystem",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "A system which discharges matter."
}, {
"@language" : "de",
"@value" : "Ein System, welches Materie abführt."
} ],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ {
"@id" : "https://w3id.org/tso#"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "de",
"@value" : "Abflusssystem"
}, {
"@language" : "en",
"@value" : "Drainage System"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "https://w3id.org/tso#FunctionalSystem"
} ]
}, {
"@id" : "https://w3id.org/tso#ElectricalEnergy",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "Electrical energy is energy that is transmitted by means of electricity or stored in electrical fields."
}, {
"@language" : "de",
"@value" : "Elektrische Energie bezeichnet die Energie, welche mittels Elektrizität übertragen oder in elektrischen Feldern gespeichert wird."
} ],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ {
"@id" : "https://w3id.org/tso#"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Electrical Energy"
}, {
"@language" : "de",
"@value" : "elektrische Energie"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "https://w3id.org/tso#Energy"
} ]
}, {
"@id" : "https://w3id.org/tso#ElectricalSystem",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "A system which distributes/stores/converts electrical energy."
}, {
"@language" : "de",
"@value" : "Ein System, welches elektrische Energie verteilt/speichert/konvertiert."
} ],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ {
"@id" : "https://w3id.org/tso#"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Electrical System"
}, {
"@language" : "de",
"@value" : "Elektroniksystem"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "https://w3id.org/tso#FunctionalSystem"
} ]
}, {
"@id" : "https://w3id.org/tso#Energy",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "de",
"@value" : "Energie bezeichnet die Fähigkeit unter anderem, Arbeit zu verrichten, Wärme abzugeben oder Licht auszustrahlen."
}, {
"@language" : "en",
"@value" : "Energy refers to the ability, among other things, to do work, give off heat or emit light."
} ],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ {
"@id" : "https://w3id.org/tso#"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "de",
"@value" : "Energie"
}, {
"@language" : "en",
"@value" : "Energy"
} ]
}, {
"@id" : "https://w3id.org/tso#EnergyConversionSystem",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "A system which converts energy to another form of energy and/or data."
}, {
"@language" : "de",
"@value" : "Ein System, welches Energie in eine andere Form von Energie konvertiert."
} ],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ {
"@id" : "https://w3id.org/tso#"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "de",
"@value" : "Energiewandlungssystem"
}, {
"@language" : "en",
"@value" : "Energy Conversion System"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "https://w3id.org/tso#ConversionSystem"
} ]
}, {
"@id" : "https://w3id.org/tso#Fluid",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "de",
"@value" : "Alles was eine flüssige/gasförmige Form hat, Raum einnimmt und eine Masse besitzt."
}, {
"@language" : "en",
"@value" : "Everything which has a fluid form, occupies space and has a mass."
} ],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ {
"@id" : "https://w3id.org/tso#"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Fluid Matter"
}, {
"@language" : "de",
"@value" : "flüssige/gasförmige Materie"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "https://w3id.org/tso#Matter"
} ]
}, {
"@id" : "https://w3id.org/tso#FluidSystem",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "A system which supplies/stores/converts fluid matter."
}, {
"@language" : "de",
"@value" : "Ein System, welches gasförmige/flüssige Materie versorgt/speichert/konvertiert."
} ],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ {
"@id" : "https://w3id.org/tso#"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Fluid System"
}, {
"@language" : "de",
"@value" : "Strömungssystem"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "https://w3id.org/tso#FunctionalSystem"
} ]
}, {
"@id" : "https://w3id.org/tso#FunctionalSystem",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "A system is a model of a whole which is isolated from the world or a supersystem, which consists of interconnected components or subsystems and has links between attributes such as inputs, outputs and states. It is predominantly defined by its overall inherent function."
}, {
"@language" : "de",
"@value" : "Ein funktionales System ist das Modell einer Ganzheit welches von seiner Umgebung bzw. einem Supersystems abgegrenzt ist, welches aus miteinander verknüpften Komponenten oder Subsystemen besteht und Verbindungen zwischen Atrributen wie Inputs, Outputs und Zuständen aufweist. Es ist überwiegend über die inhärente Gesamtfunktion definiert."
} ],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ {
"@id" : "https://w3id.org/tso#"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Functional System"
}, {
"@language" : "de",
"@value" : "Funktionales System"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "https://w3id.org/tso#System"
} ]
}, {
"@id" : "https://w3id.org/tso#Gas",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "de",
"@value" : "Alles was eine gasförmige Form hat, Raum einnimmt und eine Masse besitzt."
}, {
"@language" : "en",
"@value" : "Everything which has a gaseous form, occupies space and has a mass."
} ],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ {
"@id" : "https://w3id.org/tso#"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Gaseous Matter"
}, {
"@language" : "de",
"@value" : "gasförmige Materie"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "https://w3id.org/tso#Fluid"
} ]
}, {
"@id" : "https://w3id.org/tso#HeatingSystem",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "A system which distributes/stores/converts thermal energy for the purpose of heating."
}, {
"@language" : "de",
"@value" : "Ein System, welches thermische Energie für den Zweck der Heizung verteilt/speichert/konvertiert."
} ],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ {
"@id" : "https://w3id.org/tso#"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Heating System"
}, {
"@language" : "de",
"@value" : "Heizsystem"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "https://w3id.org/tso#FunctionalSystem"
} ]
}, {
"@id" : "https://w3id.org/tso#InnerConnection",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "A connection between two different connection points of the same system."
}, {
"@language" : "de",
"@value" : "Eine Verbindung zwischen verschiedenen zwei Verbindungpunkten des selben Systemen."
} ],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ {
"@id" : "https://w3id.org/tso#"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Inner connection"
}, {
"@language" : "de",
"@value" : "innere Verbindung"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "https://w3id.org/tso#Connection"
} ]
}, {
"@id" : "https://w3id.org/tso#IntegratedSystem",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "An integrated system is a model of a whole which is isolated from the world or a supersystem, which consists of interconnected components or subsystems and has links between attributes such as inputs, outputs and states. It represents the coupling of different functional systems with independent inherent functions."
}, {
"@language" : "de",
"@value" : "Ein Systemverbund ist die Kopplung mehrerer funktionaler Systeme mit eigenständigen inhärenten Funktionen und Abhängigkeiten untereinander."
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Integrated System"
}, {
"@language" : "de",
"@value" : "Systemverbund"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "https://w3id.org/tso#System"
} ]
}, {
"@id" : "https://w3id.org/tso#Liquid",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "de",
"@value" : "Alles was eine flüssige Form hat, Raum einnimmt und eine Masse besitzt."
}, {
"@language" : "en",
"@value" : "Everything which has a liquid form, occupies space and has a mass."
} ],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ {
"@id" : "https://w3id.org/tso#"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Liquid Matter"
}, {
"@language" : "de",
"@value" : "flüssige Materie"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "https://w3id.org/tso#Fluid"
} ]
}, {
"@id" : "https://w3id.org/tso#Matter",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "de",
"@value" : "Alles was Raum einnimmt und eine Masse besitzt."
}, {
"@language" : "en",
"@value" : "Everything which occupies space and has a mass."
} ],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ {
"@id" : "https://w3id.org/tso#"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "de",
"@value" : "Materie"
}, {
"@language" : "en",
"@value" : "Matter"
} ]
}, {
"@id" : "https://w3id.org/tso#MatterConversionSystem",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "A system which converts matter."
}, {
"@language" : "de",
"@value" : "Ein System, welches Materie wandelt."
} ],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ {
"@id" : "https://w3id.org/tso#"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "de",
"@value" : "Materienwandlungssystem"
}, {
"@language" : "en",
"@value" : "Matter Conversion System"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "https://w3id.org/tso#ConversionSystem"
} ]
}, {
"@id" : "https://w3id.org/tso#MechanicalEnergy",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "Mechanical energy refers to the energy associated with the motion and position of a body."
}, {
"@language" : "de",
"@value" : "Mechanische Energie bezeichnet die Energie, welche mit der Bewegung und Position eines Körpers verbunden ist."
} ],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ {
"@id" : "https://w3id.org/tso#"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Mechanical Energy"
}, {
"@language" : "de",
"@value" : "mechanische Energie"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "https://w3id.org/tso#Energy"
} ]
}, {
"@id" : "https://w3id.org/tso#OuterConnection",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "A connection between two different connection points of different systems."
} ],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ {
"@id" : "https://w3id.org/tso#"
}, {
"@language" : "de",
"@value" : "Eine Verbindung zwischen verschiedenen zwei Verbindungpunkten verschiedener Systemen."
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Outer Connection"
}, {
"@language" : "de",
"@value" : "äußere Verbindung"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "https://w3id.org/tso#Connection"
} ]
}, {
"@id" : "https://w3id.org/tso#Property",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ {
"@id" : "https://w3id.org/tso#"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "A property defines a alphanumeric value."
}, {
"@language" : "de",
"@value" : "Eigenschaft"
}, {
"@language" : "de",
"@value" : "Eine Eigenschaft bezeichnet einen alphanumerischen Wert."
}, {
"@language" : "en",
"@value" : "property"
} ]
}, {
"@id" : "https://w3id.org/tso#ReturnSystem",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "A system which returns matter, energy and/or data."
}, {
"@language" : "de",
"@value" : "Ein System, welches Materie, Energie und/oder Daten zurückführt."
} ],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ {
"@id" : "https://w3id.org/tso#"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Return System"
}, {
"@language" : "de",
"@value" : "Rückführungssystem"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "https://w3id.org/tso#DistributionSystem"
} ]
}, {
"@id" : "https://w3id.org/tso#SafetySystem",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "A system which protects from danger and damage."
}, {
"@language" : "de",
"@value" : "Ein System, welches vor Gefahr und Schäden schützt."
} ],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ {
"@id" : "https://w3id.org/tso#"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Safety System"
}, {
"@language" : "de",
"@value" : "Sicherheitssystem"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "https://w3id.org/tso#FunctionalSystem"
} ]
}, {
"@id" : "https://w3id.org/tso#SanitarySystem",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "A system, which converts, stores and distributes a matter for the purpose of hygiene and human health."
}, {
"@language" : "de",
"@value" : "Ein System, welches Materie zu Zweck der Hygiene und Gesundheit des Menschens wandelt, versogt und speichert."
} ],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ {
"@id" : "https://w3id.org/tso#"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Sanitary System"
}, {
"@language" : "de",
"@value" : "Sanitärsystem"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "https://w3id.org/tso#FunctionalSystem"
} ]
}, {
"@id" : "https://w3id.org/tso#Solid",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "de",
"@value" : "Alles was eine feste Form hat, Raum einnimmt und eine Masse besitzt."
}, {
"@language" : "en",
"@value" : "Everything which has a solid form, occupies space and has a mass."
} ],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ {
"@id" : "https://w3id.org/tso#"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Solid Matter"
}, {
"@language" : "de",
"@value" : "feste Materie"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "https://w3id.org/tso#Matter"
} ]
}, {
"@id" : "https://w3id.org/tso#State",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "A state defines the internal condition of a planned or abstract system. This includes specific aspects as on, off, open or closed as well as general aspects such as outdoor-air-operation, mixed-air-operation or heating-operation."
}, {
"@language" : "de",
"@value" : "Ein Zustand beschreibt die innere Verfassung eines geplanten oder abstrakten Systems. Dies umfasst spezifische Aspekte wie an, aus, offen oder geschlossen als auch übergreifende Aspekte wie zum Beispiel Frischluftbetrieb, Mischluftbetrieb oder Heizbetrieb."
} ],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ {
"@id" : "https://w3id.org/tso#"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "State"
}, {
"@language" : "de",
"@value" : "Zustand"
} ],
"http://www.w3.org/2002/07/owl#disjointWith" : [ {
"@id" : "https://w3id.org/tso#System"
}, {
"@id" : "https://w3id.org/tso#Zone"
} ]
}, {
"@id" : "https://w3id.org/tso#StorageSystem",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "A system which stores matter, energy and/or data."
}, {
"@language" : "de",
"@value" : "Ein System, welches Materie, Energie und/oder Daten speichert"
} ],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ {
"@id" : "https://w3id.org/tso#"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "de",
"@value" : "Speichersystem"
}, {
"@language" : "en",
"@value" : "Storage System"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "https://w3id.org/tso#TechnicalSystem"
} ]
}, {
"@id" : "https://w3id.org/tso#SupplySystem",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "A system which supplies matter, energy and/or data."
}, {
"@language" : "de",
"@value" : "Ein System, welches Materie, Energie und/oder Daten versorgt."
} ],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ {
"@id" : "https://w3id.org/tso#"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@language" : "en",
"@value" : "Supply System"
}, {
"@language" : "de",
"@value" : "Versorgungssystem"
} ],
"http://www.w3.org/2000/01/rdf-schema#subClassOf" : [ {
"@id" : "https://w3id.org/tso#DistributionSystem"
} ]
}, {
"@id" : "https://w3id.org/tso#System",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "A system is a model of a whole which is isolated from the world or a supersystem, which consists of interconnected components or subsystems and has links between attributes such as inputs, outputs and states."