Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Solar Inverter #560

Merged
merged 2 commits into from
Sep 25, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions bricksrc/definitions.csv
Original file line number Diff line number Diff line change
Expand Up @@ -932,6 +932,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#Solar_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": {
"Solar_Inverter": {
"tags": [TAG.Solar, 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