Skip to content

Commit

Permalink
Merge pull request #541 from WillowInc/2024-11-14-dehumidifier-and-kp…
Browse files Browse the repository at this point in the history
…i-points

Add dehumidier, fan KPIs
  • Loading branch information
tbendavid-willow authored Nov 15, 2024
2 parents 2829ad2 + 03e5249 commit 9cb9bec
Show file tree
Hide file tree
Showing 6 changed files with 106 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"@id": "dtmi:com:willowinc:DehumidifierOnActuator;1",
"@type": "Interface",
"displayName": {
"en": "Dehumidifier On Actuator"
},
"description": {"en": "The Boolean command which turns on an equipment's dehumidifier function when 'true'"},
"extends" : [
"dtmi:com:willowinc:OnActuator;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:DehumidifierLevelActuator;1",
"@type": "Interface",
"displayName": {
"en": "Dehumidifier Level Actuator"
},
"description": {"en": "The percent command which sets the dehumidifier level of the equipment"},
"extends" : [
"dtmi:com:willowinc:OnLevelActuator;1"
],
"contents": [

],
"@context": [
"dtmi:dtdl:context;3"
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"@id": "dtmi:com:willowinc:FanEfficiency;1",
"@type": "Interface",
"displayName": {
"en": "Fan Efficiency Ratio"
},
"description": {
"en": "A percent performance indicator for a fan which is the ratio of the power imparted to the airstream (airflow x total pressure) to its electrical power input."
},
"extends" : [
"dtmi:com:willowinc:PercentPerformanceIndicator;1"
],
"contents": [

],
"@context": [
"dtmi:dtdl:context;3"
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"@id": "dtmi:com:willowinc:FanLoadLevel;1",
"@type": "Interface",
"displayName": {
"en": "Fan Load Level"
},
"description": {
"en": "A performance indicator for a fan which is the ratio of its electrical power input (kW) to its nameplate motor power rating (HP) converted to a percent."
},
"extends" : [
"dtmi:com:willowinc:PercentPerformanceIndicator;1"
],
"contents": [

],
"@context": [
"dtmi:dtdl:context;3"
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"@id": "dtmi:com:willowinc:SpecificFanPower;1",
"@type": "Interface",
"displayName": {
"en": "Specific Fan Power"
},
"description": {
"en": "A performance indicator for a fan which is the ratio of its electrical power input (kW) to the amount of air it moves (CFM), a.k.a. SFP."
},
"extends" : [
"dtmi:com:willowinc:RatioPerformanceIndicator;1"
],
"contents": [

],
"@context": [
"dtmi:dtdl:context;3"
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"@id": "dtmi:com:willowinc:DehumidifierOnState;1",
"@type": "Interface",
"displayName": {
"en": "Dehumidifier On State"
},
"description": {"en": "The Boolean state of an equipment's dehumidifier function which is 'on' when 'true'"},
"extends" : [
"dtmi:com:willowinc:OnState;1"
],
"contents": [
],
"@context": [
"dtmi:dtdl:context;3"
]
}

0 comments on commit 9cb9bec

Please sign in to comment.