-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ensure that deprecated concepts are not always asserted to be owl:Class * adding some evse concepts * add evse example * add directionality and expand enumerations * working on more EVSe rules; put directionality on the port * implement inference rules for charging directionality * add test for EVSE example * fix EVSE property definitions * add inverse property rule * fix datatypes on evse example * use topquadrant reasoning on test * use specialized logger * final changes
- Loading branch information
Showing
11 changed files
with
251 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
@prefix brick: <https://brickschema.org/schema/Brick#> . | ||
@prefix unit: <http://qudt.org/vocab/unit/> . | ||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
@prefix : <urn:evse#> . | ||
|
||
:parking_lot a brick:Parking_Structure ; | ||
brick:isLocationOf :hub . | ||
|
||
:hub a brick:Electric_Vehicle_Charging_Hub ; | ||
brick:hasPart :station1, :station2 . | ||
|
||
:station1 a brick:Electric_Vehicle_Charging_Station ; | ||
brick:electricVehicleChargerType [ brick:value "Level 1" ] ; | ||
brick:hasPart :port1-1, :port1-2 ; | ||
. | ||
|
||
:port1-1 a brick:Electric_Vehicle_Charging_Port ; | ||
brick:electricVehicleChargerDirectionality [ brick:value "bidirectional" ] ; | ||
brick:electricVehicleConnectorType [ brick:value "Level 1 (SAE J1772)" ] ; | ||
brick:currentFlowType [ brick:value "AC" ] ; | ||
brick:electricalPhaseCount [ brick:value 1 ] ; | ||
brick:hasPoint :port1-1-voltage ; | ||
. | ||
:port1-1-voltage a brick:Battery_Voltage_Sensor ; | ||
brick:hasUnit unit:PERCENT ; | ||
. | ||
|
||
:port1-2 a brick:Electric_Vehicle_Charging_Port ; | ||
brick:electricVehicleChargerDirectionality [ brick:value "bidirectional" ] ; | ||
brick:electricVehicleConnectorType [ brick:value "Level 1 (SAE J1772)" ] ; | ||
brick:currentFlowType [ brick:value "AC" ] ; | ||
brick:electricalPhaseCount [ brick:value 1 ] ; | ||
brick:hasPoint :port1-2-voltage ; | ||
. | ||
:port1-2-voltage a brick:Battery_Voltage_Sensor ; | ||
brick:hasUnit unit:PERCENT ; | ||
. | ||
|
||
:station2 a brick:Electric_Vehicle_Charging_Station ; | ||
brick:electricVehicleChargerDirectionality [ brick:value "unidirectional" ] ; | ||
brick:electricVehicleChargerType [ brick:value "Level 2" ] ; | ||
brick:hasPart :port2-1 ; | ||
. | ||
|
||
:port2-1 a brick:Electric_Vehicle_Charging_Port ; | ||
# this should inherit 'unidirectional' from the station | ||
brick:electricVehicleConnectorType [ brick:value "Level 2 (IEC 62196)" ] ; | ||
brick:currentFlowType [ brick:value "AC" ] ; | ||
brick:electricalPhaseCount [ brick:value 3 ] ; | ||
brick:hasPoint :port2-1-voltage ; | ||
. | ||
|
||
:port2-1-voltage a brick:Battery_Voltage_Sensor ; | ||
brick:hasUnit unit:PERCENT ; | ||
. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.