Skip to content

Commit

Permalink
remove target/threshold setpoints for dewpoint and enthalpy
Browse files Browse the repository at this point in the history
  • Loading branch information
connorjcantrell committed May 30, 2024
1 parent 62a6a1e commit cd65643
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions bricksrc/setpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,32 +18,30 @@
"Current_Ratio_Setpoint": {
BRICK.hasQuantity: BRICK.Electric_Current,
"tags": [TAG.Point, TAG.Setpoint, TAG.Current, TAG.Electric, TAG.Ratio],
"parents": [BRICK.Target_Setpoint],
},
"Voltage_Ratio_Setpoint": {
BRICK.hasQuantity: BRICK.Voltage,
"tags": [TAG.Point, TAG.Setpoint, TAG.Voltage, TAG.Electric, TAG.Ratio],
"parents": [BRICK.Target_Setpoint],
},
"Frequency_Setpoint": {
"tags": [TAG.Point, TAG.Setpoint, TAG.Frequency],
BRICK.hasQuantity: BRICK.Frequency,
"parents": [BRICK.Target_Setpoint],
},
"Illuminance_Setpoint": {
BRICK.hasQuantity: QUDTQK.Illuminance,
"tags": [TAG.Point, TAG.Setpoint, TAG.Illuminance],
"parents": [BRICK.Target_Setpoint],
},
"Enthalpy_Setpoint": {
BRICK.hasQuantity: QUDTQK.Enthalpy,
"tags": [TAG.Point, TAG.Setpoint, TAG.Enthalpy],
"parents": [
BRICK.Target_Setpoint,
],
},
"Dewpoint_Setpoint": {
BRICK.hasQuantity: QUDTQK.DewPointTemperature,
"tags": [TAG.Point, TAG.Dewpoint, TAG.Setpoint],
"parents": [
BRICK.Target_Setpoint,
],
},
"Demand_Setpoint": {
"tags": [TAG.Point, TAG.Demand, TAG.Setpoint],
Expand Down Expand Up @@ -1042,6 +1040,7 @@
"Reset_Setpoint": {
"tags": [TAG.Point, TAG.Reset, TAG.Setpoint],
BRICK.hasQuantity: QUDTQK.Dimensionless,
"parents": [BRICK.Threshold_Setpoint],
"subclasses": {
"Supply_Air_Flow_Reset_Setpoint": {
"aliases": [BRICK["Discharge_Air_Flow_Reset_Setpoint"]],
Expand Down

0 comments on commit cd65643

Please sign in to comment.