Skip to content

Commit

Permalink
Add Solar Inverter (#560)
Browse files Browse the repository at this point in the history
* Add Solar Inverter

* Replace Solar with Photovoltaic
  • Loading branch information
connorjcantrell committed Sep 25, 2023
1 parent c7c6a67 commit 07c7e7b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions bricksrc/definitions.csv
Original file line number Diff line number Diff line change
Expand Up @@ -930,6 +930,7 @@ https://brickschema.org/schema/Brick#Site,A geographic region containing 0 or mo
https://brickschema.org/schema/Brick#Smoke_Alarm,An alarm that indicates the off-normal conditions associated with smoke.,
https://brickschema.org/schema/Brick#Soil_Temperature_Sensor,Measures the temperature of soil,
https://brickschema.org/schema/Brick#Solar_Azimuth_Angle_Sensor,Measures the azimuth angle of the sun,
https://brickschema.org/schema/Brick#Photovoltaic_Inverter," Converts direct current electricity generated by solar panels into alternating current",
https://brickschema.org/schema/Brick#Solar_Irradiance,The power per unit area of solar electromagnetic radiation incident on a surface,
https://brickschema.org/schema/Brick#Solar_Irradiance_Sensor,Measures solar irradiance levels for photovoltaic systems,
https://brickschema.org/schema/Brick#Solar_Radiance,The amount of light that passes through or is emitted from the sun and falls within a given solid angle in a specified direction,
Expand Down
9 changes: 8 additions & 1 deletion bricksrc/equipment.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,14 @@
},
},
},
"Inverter": {"tags": [TAG.Inverter, TAG.Equipment]},
"Inverter": {
"tags": [TAG.Inverter, TAG.Equipment],
"subclasses": {
"Photovoltaic_Inverter": {
"tags": [TAG.Photovoltaic, TAG.Inverter, TAG.Equipment]
}
}
},
"PlugStrip": {"tags": [TAG.PlugStrip, TAG.Equipment]},
"Disconnect_Switch": {"tags": [TAG.Disconnect, TAG.Switch, TAG.Equipment]},
"Switchgear": {"tags": [TAG.Switchgear, TAG.Equipment]},
Expand Down

0 comments on commit 07c7e7b

Please sign in to comment.