-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEnergyMeasureOntology-1.3.ttl
1697 lines (1471 loc) · 80.2 KB
/
EnergyMeasureOntology-1.3.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
# Copyright 2020 Platoon Project.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix voaf: <http://purl.org/vocommons/voaf#> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix cc: <http://creativecommons.org/ns#>.
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
@prefix saref: <https://saref.etsi.org/core/> .
@prefix seas: <https://w3id.org/seas/> .
@prefix time: <http://www.w3.org/2006/time#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix pep: <https://w3id.org/pep/>.
@prefix cim: <http://ontology.tno.nl/cerise/cim-profile#> .
@prefix fiemser: <http://sites.google.com/site/smartappliancesproject/ontologies/fiemser#> .
@prefix plt: <https://w3id.org/platoon/>.
@base <https://w3id.org/platoon/>.
voaf:Vocabulary a owl:Class .
dcterms:title a owl:AnnotationProperty .
dcterms:description a owl:AnnotationProperty .
dcterms:issued a owl:AnnotationProperty .
dcterms:modified a owl:AnnotationProperty .
dcterms:creator a owl:AnnotationProperty .
dcterms:contributor a owl:AnnotationProperty .
dcterms:license a owl:AnnotationProperty .
vann:preferredNamespacePrefix a owl:AnnotationProperty .
vann:preferredNamespaceUri a owl:AnnotationProperty .
vs:term_status a owl:AnnotationProperty .
foaf:Person a owl:Class .
foaf:name a owl:DatatypeProperty .
plt:EnergyMeasureOntology rdf:type voaf:Vocabulary , owl:Ontology ;
dcterms:title "Platoon energy ontology"@en ;
dcterms:description "Links the platoon Energy vocabulary for the Platoon project."@en ;
dcterms:issued "2020-11-17"^^xsd:date ;
dcterms:modified "2021-07-08"^^xsd:date ;
dcterms:creator "Sarra BEN ABBES and Lynda TEMAL and Oumy SEYE" ;
dcterms:license <https://www.apache.org/licenses/LICENSE-2.0> ;
vann:preferredNamespacePrefix "plt" ;
vann:preferredNamespaceUri <https://w3id.org/platoon/> ;
owl:versionIRI <https://w3id.org/platoon/EnergyMeasureOntology-1.2> ;
owl:imports <https://w3id.org/saref> ,
seas:ElectricPowerSystemOntology,
plt:ForecastingOntology,
seas:SmartMeterOntology;
owl:versionInfo "v1.2" .
#######################################
# Energy Consumption #
#######################################
plt:EnergyProperty a owl:Class ;
rdfs:label "Energy Property"@en ;
rdfs:comment "The class of properties that are quantifiable and have a quantity kind of energy consumption."@en ;
owl:equivalentClass saref:Energy;
rdfs:subClassOf seas:Property;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:EnergyEvaluation a owl:Class ;
rdfs:label "Energy Evaluation"@en ;
rdfs:comment """"The class of evaluation for energy properties"""@en ;
rdfs:subClassOf seas:Evaluation;
rdfs:subClassOf [ owl:onProperty seas:evaluationOf ; owl:someValuesFrom plt:EnergyProperty ] ;
owl:equivalentClass [ owl:onProperty seas:evaluationOf ; owl:someValuesFrom plt:EnergyProperty ] ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasActiveWork a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has active work "@en ;
rdfs:comment """Link the feature of interest to its active work."""@en ;
rdfs:subPropertyOf seas:hasProperty ;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range plt:EnergyProperty;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:GenericPropertyOntology.
plt:hasNegativeActiveWork a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has negative active work "@en ;
rdfs:comment """Link the feature of interest to its active work."""@en ;
rdfs:subPropertyOf plt:hasActiveWork ;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range plt:EnergyProperty;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:GenericPropertyOntology.
plt:hasPositiveActivework a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has active work "@en ;
rdfs:comment """Link the feature of interest to its active work."""@en ;
rdfs:subPropertyOf plt:hasActiveWork ;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range plt:EnergyProperty;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:GenericPropertyOntology.
plt:hasReactiveWork a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has reactive work "@en ;
rdfs:comment """Link the feature of interest to its active work."""@en ;
rdfs:subPropertyOf seas:hasProperty ;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range plt:EnergyProperty;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:GenericPropertyOntology.
plt:hasNegativeReactiveWork a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has active work "@en ;
rdfs:comment """Link the feature of interest to its active work."""@en ;
rdfs:subPropertyOf plt:hasReactiveWork ;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range plt:EnergyProperty;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:GenericPropertyOntology.
plt:hasPositiveReactiveWork a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has active work "@en ;
rdfs:comment """Link the feature of interest to its active work."""@en ;
rdfs:subPropertyOf plt:hasReactiveWorkÒ ;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range plt:EnergyProperty;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:GenericPropertyOntology.
plt:hasLightingEnergyConsumption a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has lighting energy consumption"@en ;
rdfs:comment """Links the feature of interest to its electric energy consumption for lighting."""@en ;
rdfs:subPropertyOf plt:hasElectricEnergyConsumption ;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range plt:ElectricEnergyConsumptionProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:EnergyConsumptionProperty a owl:Class ;
rdfs:label "Energy Consumption Property"@en ;
rdfs:comment "The class of properties that are quantifiable and have a quantity kind of energy consumption."@en ;
rdfs:subClassOf plt:EnergyProperty,
seas:ConsumptionProperty;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:EnergyConsumptionEvaluation a owl:Class ;
rdfs:label "Energy Consumption Evaluation"@en ;
rdfs:comment "The class of evaluation for energy consumption."@en ;
rdfs:subClassOf plt:EnergyEvaluation;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasEnergy a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has energy "@en ;
rdfs:comment """Links the feature of interest to its energy ."""@en ;
rdfs:subPropertyOf seas:hasProperty;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range plt:EnergyProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology.
plt:hasEnergyConsumption a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has energy consumption"@en ;
rdfs:comment """Links the feature of interest to its energy consumption."""@en ;
rdfs:subPropertyOf seas:consumption,plt:hasEnergy;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range plt:EnergyConsumptionProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasSelfEnergyConsumption a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has self energy consumption"@en ;
rdfs:comment """Links the feature of interest to its self energy consumption."""@en ;
rdfs:subPropertyOf plt:hasEnergyConsumption;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range plt:EnergyConsumptionProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:ElectricEnergyConsumptionProperty a owl:Class ;
rdfs:label "Electric Energy Consumption Property"@en ;
rdfs:comment "The class of properties that are quantifiable and have a quantity kind of electric energy consumption."@en ;
rdfs:subClassOf seas:ElectricEnergyProperty;
rdfs:subClassOf plt:EnergyConsumptionProperty;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:ElectricEnergyConsumptionEvaluation a owl:Class ;
rdfs:label "Electric Energy Consumption Evaluation"@en ;
rdfs:comment """"The class of evaluation for electric energy consumption properties"""@en ;
rdfs:subClassOf seas:ElectricEnergyEvaluation;
rdfs:subClassOf [ owl:onProperty seas:evaluationOf ; owl:someValuesFrom plt:ElectricEnergyConsumptionProperty ] ;
owl:equivalentClass [ owl:onProperty seas:evaluationOf ; owl:someValuesFrom plt:ElectricEnergyConsumptionProperty ] ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasEstimatedLightingEnergyConsumption a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has estimated lighting energy consumption"@en ;
rdfs:comment """Links the feature of interest to its estimated electric energy consumption for lighting."""@en ;
rdfs:subPropertyOf plt:hasLightingEnergyConsumption ;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range plt:ElectricEnergyConsumptionProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasElectricEnergyConsumption a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has electric energy consumption"@en ;
rdfs:comment """Links the feature of interest to its electric energy consumption ."""@en ;
rdfs:subPropertyOf plt:hasEnergyConsumption;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range plt:ElectricEnergyConsumptionProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:HeatingElectricEnergyConsumptionProperty a owl:Class ;
rdfs:label "Heating Electric Energy Consumption Property"@en ;
rdfs:comment "The class of properties that are quantifiable and have a quantity kind of electric energy consumption for heating."@en ;
rdfs:subClassOf plt:ElectricEnergyConsumptionProperty,plt:ThermalEnergyProperty;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:HeatingElectricEnergyConsumptionEvaluation a owl:Class ;
rdfs:label "Heating Electric Energy Consumption Evaluation"@en ;
rdfs:comment "The class of evaluation for heating energy consumption properties"@en ;
rdfs:subClassOf plt:ElectricEnergyConsumptionEvaluation;
owl:equivalentClass [ owl:onProperty seas:evaluationOf ; owl:someValuesFrom plt:HeatingElectricEnergyConsumptionProperty ] ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasHeatingElectricEnergyConsumption a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has Heating Electric Energy Consumption"@en ;
rdfs:comment """Links the feature of interest to its heating electric energy consumption."""@en ;
rdfs:subPropertyOf plt:hasElectricEnergyConsumption ;
rdfs:domain seas:FeatureOfInterest;
rdfs:range plt:HeatingElectricEnergyConsumptionProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:DomesticHotWaterElectricEnergyConsumptionProperty a owl:Class ;
rdfs:label "Domestic Hot Water Electric Energy Consumption Property"@en ;
rdfs:comment "The class of properties that are quantifiable and have a quantity kind of domestic hot water electric energy consumption property"@en ;
rdfs:subClassOf plt:ElectricEnergyConsumptionProperty;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:DomesticHotWaterElectricEnergyConsumptionEvaluation a owl:Class ;
rdfs:label "Heating Electric Energy Consumption Evaluation"@en ;
rdfs:comment "The class of evaluation for domestic hot water electric energy consumption properties"@en ;
rdfs:subClassOf plt:ElectricEnergyConsumptionEvaluation;
owl:equivalentClass [ owl:onProperty seas:evaluationOf ; owl:someValuesFrom plt:DomesticHotWaterElectricEnergyConsumptionProperty ] ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasDomesticHotWaterElectricEnergyConsumption a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has domestic hot water electric energy consumption"@en ;
rdfs:comment """Links the feature of interest to its domestic hot water electric energy consumption."""@en ;
rdfs:subPropertyOf plt:hasElectricEnergyConsumption ;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range plt:DomesticHotWaterElectricEnergyConsumptionProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology.
plt:CoolingElectricEnergyConsumptionProperty a owl:Class ;
rdfs:label "Cooling Energy Consumption Property"@en ;
rdfs:comment "The class of properties that are quantifiable and have a quantity kind of electric energy consumption for cooling"@en ;
rdfs:subClassOf plt:ElectricEnergyConsumptionProperty;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:CoolingElectricEnergyConsumptionEvaluation a owl:Class ;
rdfs:label "Cooling Electric Energy Consumption Evaluation"@en ;
rdfs:comment "The class of evaluation for cooling energy consumption properties"@en ;
rdfs:subClassOf plt:ElectricEnergyConsumptionEvaluation;
rdfs:subClassOf [ a owl:Restriction ; owl:onProperty seas:evaluationOf ; owl:someValuesFrom plt:CoolingElectricEnergyConsumptionProperty ] ;
rdfs:subClassOf [ a owl:Restriction ; owl:onProperty seas:evaluatedSimpleValue; owl:someValuesFrom xsd:decimal] ;
owl:equivalentClass [ owl:onProperty seas:evaluationOf ; owl:someValuesFrom plt:CoolingElectricEnergyConsumptionProperty ] ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasCoolingEnergyConsumption a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has cooling electric energy consumption"@en ;
rdfs:comment """Links the feature of interest to its climate corrected cooling electric energy consumption ."""@en ;
rdfs:subPropertyOf plt:hasEnergyConsumption ;
rdfs:domain seas:FeatureOfInterest;
rdfs:range plt:CoolingElectricEnergyConsumptionProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasCoolingElectricEnergyConsumption a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has cooling electric energy consumption"@en ;
rdfs:comment """Links the feature of interest to its cooling electric energy consumption ."""@en ;
rdfs:subPropertyOf plt:hasElectricEnergyConsumption, plt:hasCoolingEnergyConsumption;
rdfs:domain seas:FeatureOfInterest;
rdfs:range plt:CoolingElectricEnergyConsumptionProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasClimateCorrectedCoolingEnergyConsumption a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has climate corrected cooling energy consumption"@en ;
rdfs:comment """Links the feature of interest to its climate corrected cooling energy consumption ."""@en ;
rdfs:subPropertyOf plt:hasCoolingEnergyConsumption ;
rdfs:domain seas:FeatureOfInterest;
rdfs:range plt:CoolingEnergyConsumptionProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:ForecastOfEnergyProperty a owl:Class ;
rdfs:label "Forecast Of Energy Property"@en ;
rdfs:comment "The class for forecast of energy properties"@en ;
rdfs:subClassOf seas:Forecast;
rdfs:subClassOf[ owl:onProperty seas:forecastsProperty ; owl:someValuesFrom plt:EnergyProperty ] ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:ForecastOfEnergyConsumptionProperty a owl:Class ;
rdfs:label "Forecast Of Energy Consumption Property"@en ;
rdfs:comment "The class for forecast of energy consumption properties"@en ;
rdfs:subClassOf plt:ForecastOfEnergyProperty;
rdfs:subClassOf[ owl:onProperty seas:forecastsProperty ; owl:someValuesFrom plt:EnergyConsumptionProperty ] ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasForecastOfEnergyConsumptionProperty a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has forecast of energy consumption property"@en ;
rdfs:comment """Links the feature of interest to its forecast of energy consumption property."""@en ;
rdfs:subPropertyOf plt:hasForecastOfProperty ;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range plt:ForecastOfEnergyConsumptionProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:ForecastOfCoolingElectricEnergyConsumptionProperty a owl:Class ;
rdfs:label "Forecast Of Cooling Electric Energy Consumption Property"@en ;
rdfs:comment "The class for forecast of cooling Electric energy consumption properties"@en ;
rdfs:subClassOf plt:ForecastOfEnergyConsumptionProperty;
rdfs:subClassOf[ owl:onProperty seas:forecastsProperty ; owl:someValuesFrom plt:CoolingElectricEnergyConsumptionProperty ] ;
rdfs:subClassOf[ owl:onProperty pep:hasResult ; owl:someValuesFrom owl:individual ] ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasForecastOfCoolingElectricEnergyConsumptionProperty a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has forecast Cooling Electric Energy Consumption Property"@en ;
rdfs:comment """Links the feature of interest to its forecast of electric energy consumption property ."""@en ;
rdfs:subPropertyOf plt:hasForecastOfEnergyConsumptionProperty,plt:hasForecastOfElectricEnergyProperty;
rdfs:domain seas:FeatureOfInterest;
rdfs:range plt:ForecastOfCoolingElectricEnergyConsumptionProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:ForecastOfHeatingElectricEnergyConsumptionProperty a owl:Class ;
rdfs:label "Forecast Of Heating Electric Energy Consumption Property"@en ;
rdfs:comment "The class for forecast of heating Electric energy consumption properties"@en ;
rdfs:subClassOf plt:ForecastOfEnergyConsumptionProperty;
rdfs:subClassOf[ owl:onProperty seas:forecastsProperty ; owl:someValuesFrom plt:HeatingElectricEnergyConsumptionProperty ] ;
rdfs:subClassOf[ owl:onProperty pep:hasResult ; owl:someValuesFrom owl:individual ] ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasForecastOfHeatingElectricEnergyConsumptionProperty a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has forecast of heating electric energy consumption property"@en ;
rdfs:comment """Links the feature of interest to its forecast of electric energy consumption property."""@en ;
rdfs:subPropertyOf plt:hasForecastOfEnergyConsumptionProperty,plt:hasForecastOfElectricEnergyProperty;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range plt:ForecastOfHeatingElectricEnergyConsumptionProperty ,plt:hasForecastOfElectricEnergyProperty;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
#######################################
# thermmal energy Consumption #
#######################################
plt:ThermalEnergyConsumptionProperty a owl:Class ;
rdfs:label "Thermal Energy Consumption Property"@en ;
skos:altLabel "ThermalEnergy";
rdfs:comment "The class of properties that are quantifiable and have a quantity kind of thermmal energy consumption"@en ;
rdfs:subClassOf plt:EnergyConsumptionProperty, plt:ThermalEnergyProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:ThermalEnergyConsumptionEvaluation a owl:Class ;
rdfs:label "Thermal Energy Consumption Evaluation"@en ;
rdfs:comment "The class of evaluation for thermmal energy consumption properties"@en ;
rdfs:subClassOf plt:EnergyEvaluation;
rdfs:subClassOf [ a owl:Restriction ; owl:onProperty seas:evaluationOf ; owl:someValuesFrom plt:ThermalEnergyConsumptionProperty ] ;
rdfs:subClassOf [ a owl:Restriction ; owl:onProperty seas:evaluatedSimpleValue; owl:someValuesFrom xsd:decimal] ;
owl:equivalentClass [ owl:onProperty seas:evaluationOf ; owl:someValuesFrom plt:ThermalEnergyConsumptionProperty ] ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasThermalEnergyConsumption a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has thermmal energy consumption"@en ;
rdfs:comment """Links the feature of interest to its thermmal energy consumption property."""@en ;
rdfs:subPropertyOf plt:hasEnergyConsumption ;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range plt:ThermalEnergyConsumptionProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology.
#######################################
# Gas energy Consumption #
#######################################
plt:GasEnergyProperty a owl:Class ;
rdfs:label "Gas energy Property"@en ;
rdfs:comment "The class of properties that are quantifiable and have a quantity kind of gas energy "@en ;
rdfs:subClassOf plt:EnergyProperty;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:GasEnergyEvaluation a owl:Class ;
rdfs:label " Gas Energy Evaluation"@en ;
rdfs:comment "The class of evaluation for gas energy properties"@en ;
rdfs:subClassOf plt:EnergyEvaluation;
rdfs:subClassOf [ a owl:Restriction ; owl:onProperty seas:evaluationOf ; owl:someValuesFrom plt:GasEnergyProperty ] ;
owl:equivalentClass [ owl:onProperty seas:evaluationOf ; owl:someValuesFrom plt:GasEnergyProperty ] ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:GasEnergyConsumptionProperty a owl:Class ;
rdfs:label "Gas Energy Consumption Property"@en ;
rdfs:comment "The class of properties that are quantifiable and have a quantity kind of gas energy consumption "@en ;
rdfs:subClassOf plt:GasEnergyProperty,plt:EnergyConsumptionProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:GasEnergyConsumptionEvaluation a owl:Class ;
rdfs:label " Gas Energy Consumption Evaluation"@en ;
rdfs:comment "The class of evaluation for gas energy properties"@en ;
rdfs:subClassOf plt:GasEnergyEvaluation;
rdfs:subClassOf [ a owl:Restriction ; owl:onProperty seas:evaluationOf ; owl:someValuesFrom plt:GasEnergyProperty ] ;
owl:equivalentClass [ owl:onProperty seas:evaluationOf ; owl:someValuesFrom plt:GasEnergyProperty ] ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasGasEnergyConsumption a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has gas energy consumption"@en ;
rdfs:comment """Links the feature of interest to its gas energy consumption property."""@en ;
rdfs:subPropertyOf plt:hasEnergyConsumption ;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range plt:GasEnergyConsumptionProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology.
plt:hasTotalGasEnergyConsumption a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has total gas energy consumption"@en ;
rdfs:comment """Links the feature of interest to its total gas energy consumption property."""@en ;
rdfs:subPropertyOf plt:hasGasEnergyConsumption ;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range plt:GasEnergyConsumptionProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology.
plt:HeatingGasEnergyConsumptionProperty a owl:Class ;
rdfs:label "Heating Gas Energy Consumption Property"@en ;
rdfs:comment "The class of properties that are quantifiable and have a quantity kind of gas energy consumption for heating"@en ;
rdfs:subClassOf plt:GasEnergyConsumptionProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:HeatingGasEnergyConsumptionEvaluation a owl:Class ;
rdfs:label "Heating Gas Energy Consumption Evaluation"@en ;
rdfs:comment "The class of evaluation for heating gas energy consumption properties"@en ;
rdfs:subClassOf plt:GasEnergyConsumptionEvaluation;
rdfs:subClassOf [ a owl:Restriction ; owl:onProperty seas:evaluationOf ; owl:someValuesFrom plt:HeatingGasEnergyConsumptionProperty ] ;
owl:equivalentClass [ owl:onProperty seas:evaluationOf ; owl:someValuesFrom plt:HeatingGasEnergyConsumptionProperty ] ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasHeatingGasEnergyConsumption a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has heating gas energy consumption"@en ;
rdfs:comment """Links the feature of interest to its heating gas energy consumption property."""@en ;
rdfs:subPropertyOf plt:hasGasEnergyConsumption ;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range plt:HeatingGasEnergyConsumptionProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology.
plt:CoolingGasEnergyConsumptionProperty a owl:Class ;
rdfs:label "Cooling Gas Energy Consumption Property"@en ;
rdfs:comment "The class of properties that are quantifiable and have a quantity kind of cooling gas energy consumption for heating"@en ;
rdfs:subClassOf plt:GasEnergyConsumptionProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:CoolingGasEnergyConsumptionEvaluation a owl:Class ;
rdfs:label "Cooling Gas Energy Consumption Evaluation"@en ;
rdfs:comment "The class of evaluation for heating gas energy consumption properties"@en ;
rdfs:subClassOf plt:GasEnergyConsumptionEvaluation;
rdfs:subClassOf [ a owl:Restriction ; owl:onProperty seas:evaluationOf ; owl:someValuesFrom plt:HeatingGasEnergyConsumptionProperty ] ;
owl:equivalentClass [ owl:onProperty seas:evaluationOf ; owl:someValuesFrom plt:HeatingGasEnergyConsumptionProperty ] ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasCoolingGasEnergyConsumption a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has Cooling gas energy consumption"@en ;
rdfs:comment """Links the feature of interest to its cooling gas energy consumption property."""@en ;
rdfs:subPropertyOf plt:hasGasEnergyConsumption ;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range plt:CoolingGasEnergyConsumptionProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology.
plt:DomesticHotWaterGasEnergyConsumptionProperty a owl:Class ;
rdfs:label "Domestic Hot Water Gas Energy Consumption Property"@en ;
rdfs:comment "The class of properties that are quantifiable and have a quantity kind of domestic hot water gas energy consumption property"@en ;
rdfs:subClassOf plt:GasEnergyConsumptionProperty;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:DomesticHotWaterGasEnergyConsumptionEvaluation a owl:Class ;
rdfs:label "Heating Gas Energy Consumption Evaluation"@en ;
rdfs:comment "The class of evaluation for domestic hot water gas energy consumption properties"@en ;
rdfs:subClassOf plt:GasEnergyConsumptionEvaluation;
owl:equivalentClass [ owl:onProperty seas:evaluationOf ; owl:someValuesFrom plt:DomesticHotWaterElectricEnergyConsumptionProperty ] ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasDomesticHotWaterGasEnergyConsumption a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has domestic hot water gas energy consumption"@en ;
rdfs:comment """Links the feature of interest to its domestic hot water gas energy consumption."""@en ;
rdfs:subPropertyOf plt:hasGasEnergyConsumption ;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range plt:DomesticHotWaterGasEnergyConsumptionProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology.
#######################################
# Energy Production #
#######################################
plt:EnergyProductionProperty a owl:Class ;
rdfs:label "Energy Production Property"@en ;
rdfs:comment "The class of properties that are quantifiable and have a quantity kind of energy production."@en ;
rdfs:subClassOf plt:EnergyProperty,
seas:ProductionProperty;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:EnergyProductionEvaluation a owl:Class ;
rdfs:label "Energy Production Evaluation"@en ;
rdfs:comment "The class of evaluation for energy production properties"@en ;
rdfs:subClassOf seas:Evaluation;
rdfs:subClassOf [ a owl:Restriction ; owl:onProperty seas:evaluationOf ; owl:someValuesFrom plt:EnergyProductionProperty ] ;
owl:equivalentClass [ owl:onProperty seas:evaluationOf ; owl:someValuesFrom plt:EnergyProductionProperty ] ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasEnergyProduction a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has energy production"@en ;
rdfs:comment """Links the FeatureOfInterest to its energy production property."""@en ;
rdfs:subPropertyOf seas:production ;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range plt:EnergyProductionProperty;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:ElectricEnergyProductionProperty a owl:Class ;
rdfs:label "Electric Energy Production Property"@en ;
rdfs:comment """The class of properties that are quantifiable and have a quantity kind electric energy production."""@en ;
rdfs:subClassOf plt:EnergyProductionProperty ,
seas:ElectricEnergyProperty;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:ElectricEnergyProductionEvaluation a owl:Class ;
rdfs:label "Electric Energy Production Evaluation"@en ;
rdfs:comment "The class of evaluation for electric energy production properties"@en ;
rdfs:subClassOf seas:ElectricEnergyEvaluation,plt:EnergyProductionEvaluation;
owl:equivalentClass [ owl:onProperty seas:evaluationOf ; owl:someValuesFrom plt:ElectricEnergyProductionProperty ] ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:PhotovoltaicEnergyProductionProperty a owl:Class ;
rdfs:label "Photovoltaic Energy Production Property"@en ;
rdfs:comment "The class of properties that are quantifiable and have a quantity kind of photovoltaic energy production."@en ;
rdfs:subClassOf plt:EnergyProductionProperty;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:PhotovoltaicEnergyProductionEvaluation a owl:Class ;
rdfs:label "Photovoltaic Energy Production Evaluation"@en ;
rdfs:comment """"The class of evaluation for photovoltaic energy production properties"""@en ;
rdfs:subClassOf plt:EnergyProductionEvaluation;
rdfs:subClassOf [ a owl:Restriction ; owl:onProperty seas:evaluationOf ; owl:someValuesFrom plt:PhotovoltaicEnergyProductionProperty ] ;
owl:equivalentClass [ owl:onProperty seas:evaluationOf ; owl:someValuesFrom plt:PhotovoltaicEnergyProductionProperty ] ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasPhotovoltaicEnergyProduction a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has Photovoltaic energy Production"@en ;
rdfs:comment """Links the FeatureOfInterest to its photovoltaic energy production."""@en ;
rdfs:subPropertyOf plt:hasEnergyProduction ;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range plt:PhotovoltaicEnergyProductionProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:ForecastOfPhotovoltaicEnergyProductionProperty a owl:Class ;
rdfs:label "Forecast Of Photovoltaic Energy Production Property"@en ;
rdfs:comment "The class for forecast of photovoltaic energy production properties"@en ;
rdfs:subClassOf plt:ForecastOfEnergyProperty;
rdfs:subClassOf[ owl:onProperty seas:forecastsProperty ; owl:someValuesFrom plt:PhotovoltaicEnergyProductionProperty ] ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasForecastOfPhotovoltaicEnergyProductionProperty a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has forecast of photovoltaic energy production property"@en ;
rdfs:comment """Links the FeatureOfInterest to its forecast of photovoltaic energy production."""@en ;
rdfs:subPropertyOf plt:hasForecastOfProperty ;
rdfs:domain seas:FeatureOfInterest: ;
rdfs:range plt:ForecastOfPhotovoltaicEnergyProductionProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
#######################################
# Power #
#######################################
plt:ForecastOfElectricPowerProperty a owl:Class ;
rdfs:label "Forecast Of Photovoltaic Electric Power Property"@en ;
rdfs:comment "The class for forecast of electric power properties"@en ;
rdfs:subClassOf seas:Forecast;
rdfs:subClassOf[ owl:onProperty seas:forecastsProperty ; owl:someValuesFrom seas:ElectricPowerProperty ] ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasForecastOfElectricPowerProperty a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has forecast of electric power property"@en ;
rdfs:comment """Links the FeatureOfInterest to its forecast of electric power."""@en ;
rdfs:subPropertyOf plt:hasForecastOfProperty ;
rdfs:domain seas:FeatureOfInterest: ;
rdfs:range plt:ForecastOfElectricPowerProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasForecastOfPowerProduction a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has forecast of electric power production property"@en ;
rdfs:comment """Links the FeatureOfInterest to its forecast of electric power production."""@en ;
rdfs:subPropertyOf plt:hasForecastOfProperty;
rdfs:domain seas:FeatureOfInterest: ;
rdfs:range plt:ForecastOfElectricPowerProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasOutputPower a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has output power"@en ;
rdfs:comment """Links the feature of interest to its output power."""@en ;
rdfs:subPropertyOf seas:electricPower ;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range seas:ElectricPowerProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology.
plt:hasOutputActivePower a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has output active power"@en ;
rdfs:comment """Links the feature of interest to its output active power."""@en ;
rdfs:subPropertyOf plt:hasOutputPower , seas:activePower;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range seas:ElectricPowerProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology.
plt:hasRatedePower a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has rated power"@en ;
rdfs:comment """Links the feature of interest to its rated power."""@en ;
rdfs:subPropertyOf seas:electricPower;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range seas:ElectricPowerProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology.
plt:hasInputActivePower a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has input active power"@en ;
rdfs:comment """Links the feature of interest to its input active power."""@en ;
rdfs:subPropertyOf plt:hasInputPower, seas:activePower ;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range seas:ElectricPowerProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology.
plt:hasReactiveOutputPower a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has reactive output power"@en ;
rdfs:comment """Links the feature of interest to its output reactive power."""@en ;
rdfs:subPropertyOf plt:hasOutputPower,seas:reactivePower ;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range seas:ElectricPowerProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology.
plt:hasOutputApparentPower a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has output apparent power"@en ;
rdfs:comment """Links the feature of interest to its output apparent power."""@en ;
rdfs:subPropertyOf plt:hasOutputPower,seas:apparentPower ;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range seas:ElectricPowerProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology.
plt:hasNominalPower a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has nominal power"@en ;
rdfs:comment """Links the feature of interest to its nominal power."""@en ;
owl:equivalentProperty fiemser:hasNominalPower ;
rdfs:subPropertyOf seas:hasProperty ;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range seas:ElectricPowerProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology.
plt:hasInputPower a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has input power"@en ;
rdfs:comment """Links the feature of interest to its input power."""@en ;
rdfs:subPropertyOf seas:electricPower;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range seas:ElectricPowerProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology.
plt:hasPowerProduction a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has power production"@en ;
rdfs:comment """Links the feature of interest to its power production."""@en ;
rdfs:subPropertyOf seas:electricPower,seas:production ;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range seas:ElectricPowerProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology.
plt:hasActivePowerProduction a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has active power production"@en ;
rdfs:comment """Links the feature of interest to its active power production."""@en ;
rdfs:subPropertyOf plt:hasPowerProduction , seas:activePower;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range seas:ElectricPowerProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology.
plt:hasReactivePowerProduction a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has reactive power production"@en ;
rdfs:comment """Links the feature of interest to its reactive power production."""@en ;
rdfs:subPropertyOf plt:hasPowerProduction , seas:reactivePower;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range seas:ElectricPowerProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology.
plt:hasApparentPowerProduction a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has apparent power production"@en ;
rdfs:comment """Links the feature of interest to its apparent power production."""@en ;
rdfs:subPropertyOf plt:hasPowerProduction , seas:apparentPower;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range seas:ElectricPowerProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology.
plt:hasPowerConsumption a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has power consumption"@en ;
rdfs:comment """Links the feature of interest to its power consumption."""@en ;
rdfs:subPropertyOf seas:electricPower ;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range seas:ElectricPowerProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology.
#######################################
# Energy Load #
#######################################
plt:LoadProperty a owl:Class ;
rdfs:label "Electric Load Property"@en ;
rdfs:comment """The class of properties that are quantifiable and have a quantity kind of consumed electric power."""@en ;
rdfs:subClassOf seas:Property;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:ElectricEnergyLoadProperty a owl:Class ;
rdfs:label "Electric Energy Load Property"@en ;
rdfs:comment """The class of properties that are quantifiable and have a quantity kind of consumed electric power."""@en ;
rdfs:subClassOf seas:ElectricEnergyProperty,plt:LoadProperty;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:ElectricEnergyLoadEvaluation a owl:Class ;
rdfs:label "Electric Energy Load Evaluation"@en ;
rdfs:comment "The class of evaluation for electric energy load properties"@en ;
rdfs:subClassOf seas:ElectricEnergyEvaluation;
rdfs:subClassOf [ a owl:Restriction ; owl:onProperty seas:evaluationOf ; owl:someValuesFrom plt:ElectricEnergyLoadProperty ] ;
owl:equivalentClass [ a owl:Restriction ; owl:onProperty seas:evaluationOf ; owl:someValuesFrom plt:ElectricEnergyLoadProperty ] ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasActivePowerReference a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has active power reference"@en ;
rdfs:comment """Links the FeatureOfInterest to its active electric power reference property."""@en ;
rdfs:subPropertyOf seas:activePower ;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range seas:ElectricPowerProperty;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasMinimumActivePower a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has minimum active power"@en ;
rdfs:comment """Links the FeatureOfInterest to its active electric power property."""@en ;
rdfs:subPropertyOf seas:activePower ;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range seas:ElectricPowerProperty;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasMaximumActivePower a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has maximum active power"@en ;
rdfs:comment """Links the FeatureOfInterest to its active electric power property."""@en ;
rdfs:subPropertyOf seas:activePower ;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range seas:ElectricPowerProperty;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasAverageActivePower a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has average active power"@en ;
rdfs:comment """Links the FeatureOfInterest to its active electric power property."""@en ;
rdfs:subPropertyOf seas:activePower ;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range seas:ElectricPowerProperty;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasStandardDeviationActivePower a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has standard deviation active power"@en ;
rdfs:comment """Links the FeatureOfInterest to its active electric power property."""@en ;
rdfs:subPropertyOf seas:activePower ;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range seas:ElectricPowerProperty;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasApparentPower a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has apparent power"@en ;
rdfs:comment """Links the FeatureOfInterest to its active electric power property."""@en ;
rdfs:subPropertyOf seas:apparentPower ;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range seas:ElectricPowerProperty;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasMinimumApparentPower a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has minimum apparent power "@en ;
rdfs:comment """Links the FeatureOfInterest to its active electric power property."""@en ;
rdfs:subPropertyOf seas:apparentPower ;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range seas:ElectricPowerProperty;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasMaximumApparentPower a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has maximum apparent power"@en ;
rdfs:comment """Links the FeatureOfInterest to its apparent electric power property."""@en ;
rdfs:subPropertyOf seas:apparentPower ;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range seas:ElectricPowerProperty;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasAverageApparentPower a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has average apparent power"@en ;
rdfs:comment """Links the FeatureOfInterest to its apparent electric power property."""@en ;
rdfs:subPropertyOf seas:apparentPower ;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range seas:ElectricPowerProperty;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasStandardDeviationApparentPower a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has standard deviation apparent power"@en ;
rdfs:comment """Links the FeatureOfInterest to its apparent electric power property."""@en ;
rdfs:subPropertyOf seas:apparentPower ;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range seas:ElectricPowerProperty;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasElectricEnergyLoad a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has electric energy load"@en ;
rdfs:comment """Links feature of interest to its electric energy load."""@en ;
rdfs:subPropertyOf plt:hasEnergyLoad;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range plt:ElectricEnergyLoadProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasNominalElectricEnergy a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has nominal electric energy"@en ;
rdfs:comment """Links feature of interest to its nominal electric energy."""@en ;
rdfs:subPropertyOf seas:electricEnergy ;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range seas:ElectricEnergyProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasElectricEnergyLoadDeviation a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has electric energy load deviation"@en ;
rdfs:comment """Links the featureOfInterest to its electric energy load deviation."""@en ;
rdfs:subPropertyOf plt:hasElectricEnergyLoad ;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range plt:ElectricEnergyLoadProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:HeatingElectricEnergyLoadProperty a owl:Class ;
rdfs:label "Heating Electric Energy Load Property"@en ;
rdfs:comment """The class of properties that are quantifiable and have a quantity kind of consumed electric power for heating"""@en ;
rdfs:subClassOf plt:ElectricEnergyLoadProperty;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:HeatingElectricEnergyLoadEvaluation a owl:Class ;
rdfs:label "Heating Electric Energy Load Evaluation"@en ;
rdfs:comment "The class of evaluation for heating electric energy load properties"@en ;
rdfs:subClassOf plt:ElectricEnergyLoadEvaluation;
rdfs:subClassOf [ a owl:Restriction ; owl:onProperty seas:evaluationOf ; owl:someValuesFrom plt:HeatingElectricEnergyLoadProperty ] ;
owl:equivalentClass [ owl:onProperty seas:evaluationOf ; owl:someValuesFrom plt:HeatingElectricEnergyLoadProperty ] ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasHeatingElectricEnergyLoad a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has Heating Electric Energy Load"@en ;
rdfs:comment """Links the featureOfInterest to its electric energy load for heating."""@en ;
rdfs:subPropertyOf plt:hasElectricEnergyLoad;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range plt:HeatingElectricEnergyLoadProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:CoolingElectricEnergyLoadProperty a owl:Class ;
rdfs:label "Cooling Electric Energy Load Property"@en ;
rdfs:comment """The class of properties that are quantifiable and have a quantity kind of consumed electric power for cooling"""@en ;
rdfs:subClassOf plt:ElectricEnergyLoadProperty;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:CoolingElectricEnergyLoadEvaluation a owl:Class ;
rdfs:label "Cooling Energy Load Evaluation"@en ;
rdfs:comment "The class of evaluation for cooling electric energy load properties"@en ;
rdfs:subClassOf plt:ElectricEnergyLoadEvaluation;
rdfs:subClassOf [ a owl:Restriction ; owl:onProperty seas:evaluationOf ; owl:someValuesFrom plt:CoolingElectricEnergyLoadProperty ] ;
owl:equivalentClass [ owl:onProperty seas:evaluationOf ; owl:someValuesFrom plt:CoolingElectricEnergyLoadProperty ] ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasCoolingElectricEnergyLoad a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has Cooling Electric Energy Load"@en ;
rdfs:comment """Links the feature of interest to its electric energy load."""@en ;
rdfs:subPropertyOf plt:hasElectricEnergyLoad;
rdfs:domain seas:FeatureOfInterest ;
rdfs:range plt:CoolingElectricEnergyLoadProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
#######################################
# Forecasting Of Electric Energy Load #
#######################################
plt:ForecastOfElectricEnergyProperty a owl:Class ;
rdfs:label "Forecast Of Electric Energy Property"@en ;
rdfs:comment "The class for forecast of electric energy properties"@en ;
rdfs:subClassOf seas:Forecast;
rdfs:subClassOf[ owl:onProperty seas:forecastsProperty ; owl:someValuesFrom seas:ElectricEnergyProperty ] ;
rdfs:subClassOf[ owl:onProperty pep:madeBy ; owl:someValuesFrom plt:ForecasterOfElectricEnergyProperty ] ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:ForecasterOfElectricEnergyProperty a owl:Class ;
rdfs:label "Forecaster Of Energy Property"@en ;
rdfs:comment "The class for forecaster of energy properties"@en ;
rdfs:subClassOf seas:Forecaster;
rdfs:subClassOf[ owl:onProperty seas:forecastsProperty ; owl:someValuesFrom seas:ElectricEnergyProperty ] ;
rdfs:subClassOf[ owl:onProperty pep:implements ; owl:someValuesFrom plt:ForecastingOfElectricEnergyProperty ] ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:ForecastingOfElectricEnergyProperty a owl:Class ;
rdfs:label "Forecasting Of Electric Energy Property"@en ;
rdfs:comment "The class for forecasting of electric energy properties"@en ;
rdfs:subClassOf seas:Forecasting;
rdfs:subClassOf[ owl:onProperty seas:forecastsProperty ; owl:someValuesFrom seas:ElectricEnergyProperty ] ;
vs:term_status "testing" ;
rdfs:isDefinedBy plt:EnergyMeasureOntology .
plt:hasForecastOfElectricEnergyProperty a owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has forecast of electric energy property"@en ;