Skip to content

Commit

Permalink
Merge pull request #468 from WillowInc/2024-06-10-adding-line-current…
Browse files Browse the repository at this point in the history
…-models

Add line current sensor models and line n-g voltage sensor model
  • Loading branch information
wroantree-willow authored Jun 10, 2024
2 parents 432ae23 + 7b8c0ce commit c5e90d5
Show file tree
Hide file tree
Showing 7 changed files with 119 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"@id": "dtmi:com:willowinc:LineACurrentDemandSensor;1",
"@type": "Interface",
"displayName": {
"en": "Line A Current Demand Sensor"
},
"description": {"en": "The current demand feedback from a sensor associated with line a"},
"extends" : [
"dtmi:com:willowinc:LineACurrentMagnitudeSensor;1"
],
"contents": [

],
"@context": [
"dtmi:dtdl:context;3"
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"@id": "dtmi:com:willowinc:LineACurrentMagnitudeSensor;1",
"@type": "Interface",
"displayName": {
"en": "Line A Current Magnitude Sensor"
},
"description": {"en": "The current magnitude feedback from a sensor associated with line a"},
"extends" : [
"dtmi:com:willowinc:CurrentMagnitudeSensor;1"
],
"contents": [

],
"@context": [
"dtmi:dtdl:context;3"
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"@id": "dtmi:com:willowinc:LineBCurrentDemandSensor;1",
"@type": "Interface",
"displayName": {
"en": "Line B Current Demand Sensor"
},
"description": {"en": "The current demand feedback from a sensor associated with line b"},
"extends" : [
"dtmi:com:willowinc:LineBCurrentMagnitudeSensor;1"
],
"contents": [

],
"@context": [
"dtmi:dtdl:context;3"
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"@id": "dtmi:com:willowinc:LineBCurrentMagnitudeSensor;1",
"@type": "Interface",
"displayName": {
"en": "Line B Current Magnitude Sensor"
},
"description": {"en": "The current magnitude feedback from a sensor associated with line b"},
"extends" : [
"dtmi:com:willowinc:CurrentMagnitudeSensor;1"
],
"contents": [

],
"@context": [
"dtmi:dtdl:context;3"
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"@id": "dtmi:com:willowinc:LineCCurrentDemandSensor;1",
"@type": "Interface",
"displayName": {
"en": "Line C Current Demand Sensor"
},
"description": {"en": "The current demand feedback from a sensor associated with line c"},
"extends" : [
"dtmi:com:willowinc:LineCCurrentMagnitudeSensor;1"
],
"contents": [

],
"@context": [
"dtmi:dtdl:context;3"
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"@id": "dtmi:com:willowinc:LineCCurrentMagnitudeSensor;1",
"@type": "Interface",
"displayName": {
"en": "Line C Current Magnitude Sensor"
},
"description": {"en": "The current magnitude feedback from a sensor associated with line c"},
"extends" : [
"dtmi:com:willowinc:CurrentMagnitudeSensor;1"
],
"contents": [

],
"@context": [
"dtmi:dtdl:context;3"
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"@id": "dtmi:com:willowinc:LineNGVoltageMagnitudeSensor;1",
"@type": "Interface",
"displayName": {
"en": "Line N-G Voltage Magnitude Sensor"
},
"description": {"en": "The voltage magnitude feedback from a sensor associated with line n-g, neutral to ground"},
"extends" : [
"dtmi:com:willowinc:VoltageMagnitudeSensor;1"
],
"contents": [

],
"@context": [
"dtmi:dtdl:context;3"
]
}

0 comments on commit c5e90d5

Please sign in to comment.