Statistic Signals example

IRI
https://saref.etsi.org/saref4lift/v1.1.1/example/TS103735_Clause_6_8_StatisticSignals#
Conforms to ontologies
Download serialization
License
Example demonstrating how to represent information from group name StatisticSignals as in ETSI TS 103 735, Clause 6.8

Turtle

@prefix ex: <https://saref.etsi.org/saref4lift/v1.1.1/example/TS103735_Clause_6_8_StatisticSignals/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix time: <http://www.w3.org/2006/time#> .
@prefix saref: <https://saref.etsi.org/core/> .
@prefix s4syst: <https://saref.etsi.org/saref4syst/> .
@prefix s4bldg: <https://saref.etsi.org/saref4bldg/> .
@prefix s4lift: <https://saref.etsi.org/saref4lift/> .
@prefix dctype: <http://purl.org/dc/dcmitype/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix cdt: <http://w3id.org/lindt/custom_datatypes#>.


<https://saref.etsi.org/saref4lift/v1.1.1/example/TS103735_Clause_6_8_StatisticSignals#> a dctype:Dataset ;
  dcterms:license <https://forge.etsi.org/etsi-software-license> ;
  dcterms:conformsTo <https://saref.etsi.org/saref4lift/v1.1.1/> ;
  dcterms:title "Statistic Signals example"@en ;
  dcterms:description "Example demonstrating how to represent information from group name StatisticSignals as in ETSI TS 103 735, Clause 6.8"@en .

# The statistics signals convey statistics measurements over a period of time. usually from the last reset. Sometimes the statistics are about the number of executions of a command.


# numberOfCalls, upwardTravels, downwardTravels, totalFloorsCovered, numberOfResetSequences, totalReversalDirection

## s4lift:StatisticSignal are signals that convey measurement of some statistics of a feature of interest

<mailto:lift.1415@company1.com> a s4lift:SmartLiftInstallation .

_:NumberOfCallsSignal a s4lift:StatisticSignal .
_:NumberOfCallsSignal rdfs:comment "example of a signal that conveys a s4lift:NumberOfCallsStatistics of a s4lift:SmartLiftInstallation"@en .
_:NumberOfCallsSignal saref:isAbout <mailto:lift.1415@company1.com> .
_:NumberOfCallsSignal s4lift:conveys _:NumberOfCallsStatistics .

_:NumberOfCallsStatistics a s4lift:NumberOfCallsStatistics .
_:NumberOfCallsStatistics saref:hasValue 137 .
_:NumberOfCallsStatistics saref:isMeasurementOf <mailto:lift.1415@company1.com> .
_:NumberOfCallsStatistics saref:hasTimestamp "2021-03-15T12:00:00Z"^^xsd:dateTime . 

_:UpwardTravelsStatistics a s4lift:UpwardTravelsStatistics .
_:UpwardTravelsStatistics saref:hasValue 124 .
_:UpwardTravelsStatistics saref:isMeasurementOf <mailto:lift.1415@company1.com> .
_:UpwardTravelsStatistics saref:hasTimestamp "2021-03-15T12:00:00Z"^^xsd:dateTime . 

_:DownwardTravelsStatistics a s4lift:DownwardTravelsStatistics .
_:DownwardTravelsStatistics saref:hasValue 125 .
_:DownwardTravelsStatistics saref:isMeasurementOf <mailto:lift.1415@company1.com> .
_:DownwardTravelsStatistics saref:hasTimestamp "2021-03-15T12:00:00Z"^^xsd:dateTime . 

_:TotalFloorsCoveredStatistics a s4lift:TotalFloorsCoveredStatistics .
_:TotalFloorsCoveredStatistics saref:hasValue 357 .
_:TotalFloorsCoveredStatistics saref:isMeasurementOf <mailto:lift.1415@company1.com> .
_:TotalFloorsCoveredStatistics saref:hasTimestamp "2021-03-15T12:00:00Z"^^xsd:dateTime . 

_:NumberOfResetSequencesStatistics a s4lift:NumberOfResetSequencesStatistics .
_:NumberOfResetSequencesStatistics saref:hasValue 8 .
_:NumberOfResetSequencesStatistics saref:isMeasurementOf <mailto:lift.1415@company1.com> .
_:NumberOfResetSequencesStatistics saref:hasTimestamp "2021-03-15T12:00:00Z"^^xsd:dateTime . 

_:TotalReversalDirectionStatistics a s4lift:TotalReversalDirectionStatistics .
_:TotalReversalDirectionStatistics saref:hasValue 167 .
_:TotalReversalDirectionStatistics saref:isMeasurementOf <mailto:lift.1415@company1.com> .
_:TotalReversalDirectionStatistics saref:hasTimestamp "2021-03-15T12:00:00Z"^^xsd:dateTime . 


# callsPerService

## s4lift:NumberOfCallsStatistics can be applied to a possible car service.

ex:carservice1 a s4lift:SmartLiftCarService .

_:NumberOfCallsPerServiceStatistics a s4lift:NumberOfCallsStatistics .
_:NumberOfCallsPerServiceStatistics saref:hasValue 35 .
_:NumberOfCallsPerServiceStatistics saref:isMeasurementOf ex:carservice1 .
_:NumberOfCallsPerServiceStatistics saref:hasTimestamp "2021-03-15T12:00:00Z"^^xsd:dateTime . 


# carTemperature, engineRoomTemperature, shaftTemperature

# s4lift:hasCarTemperature rdfs:subPropertyOf saref:hasProperty
# s4lift:hasEngineRoomTemperature rdfs:subPropertyOf saref:hasProperty
# s4lift:hasShaftTemperature rdfs:subPropertyOf saref:hasProperty
# use saref:Temperature property

<mailto:lift.1415@company1.com> s4lift:hasCarTemperature <mailto:lift.1415@company1.com+carTemperature> .
<mailto:lift.1415@company1.com+carTemperature> a saref:Temperature .
_:carTemperatureMeasure a saref:Measurement ;
  saref:hasValue "34 Cel"^^cdt:ucum ;
  saref:relatesToProperty <mailto:lift.1415@company1.com+carTemperature> .

<mailto:lift.1415@company1.com> s4lift:hasEngineRoomTemperature <mailto:lift.1415@company1.com+engineRoomTemperature> .
<mailto:lift.1415@company1.com+engineRoomTemperature> a saref:Temperature .
_:engineRoomTemperatureMeasure a saref:Measurement ;
  saref:hasValue "42 Cel"^^cdt:ucum ;
  saref:relatesToProperty <mailto:lift.1415@company1.com+engineRoomTemperature> .

<mailto:lift.1415@company1.com> s4lift:hasShaftTemperature <mailto:lift.1415@company1.com+shaftTemperature> .
<mailto:lift.1415@company1.com+shaftTemperature> a saref:Temperature .
_:shaftTemperatureMeasure a saref:Measurement ;
  saref:hasValue "34 Cel"^^cdt:ucum ;
  saref:relatesToProperty <mailto:lift.1415@company1.com+shaftTemperature> .


# threephasePowerConsumption, singlephasePowerConsumption, servicesPowerConsumption

## only s4lift:hasElectricPowerConsumption, attached to the appropriate feature of interest: the three-phase connection point, a system that groups lights, etc.

<mailto:lift.1415@company1.com> a s4lift:SmartLiftInstallation ;
  s4lift:hasElectricPowerConsumption <mailto:lift.1415@company1.com+consumption> .
<mailto:lift.1415@company1.com+consumption> a saref:Energy .
_:consumptionMeasure a saref:Measurement ;
  saref:hasValue "127 kWh"^^cdt:ucum ;
  saref:relatesToProperty <mailto:lift.1415@company1.com+consumption> .