-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #541 from WillowInc/2024-11-14-dehumidifier-and-kp…
…i-points Add dehumidier, fan KPIs
- Loading branch information
Showing
6 changed files
with
106 additions
and
0 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
...pability/Actuator/Binary Actuator/OnOff Actuator/Dehumidifier/DehumidifierOnActuator.json
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,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" | ||
] | ||
} |
17 changes: 17 additions & 0 deletions
17
...vel Actuator/On Level Actuator/Dehumidifier Level Actuator/DehumidifierLevelActuator.json
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,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" | ||
] | ||
} |
19 changes: 19 additions & 0 deletions
19
Ontology/Willow/Capability/Performance Indicator/Percent/FanEfficiency.json
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,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" | ||
] | ||
} |
19 changes: 19 additions & 0 deletions
19
Ontology/Willow/Capability/Performance Indicator/Percent/FanLoadLevel.json
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,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" | ||
] | ||
} |
19 changes: 19 additions & 0 deletions
19
...Willow/Capability/Performance Indicator/Quantity/Specific Fan Power/SpecificFanPower.json
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,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" | ||
] | ||
} |
16 changes: 16 additions & 0 deletions
16
...gy/Willow/Capability/State/Binary State/OnOff State/Dehumidifier/DehumidifierOnState.json
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,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" | ||
] | ||
} |