Skip to content

Commit 6759eda

Browse files
Rename INVERTER_TYPE_SOLAR to INVERTER_TYPE_PHOTOVOLTAIC
This commit renames the enum variant `InverterType.INVERTER_TYPE_SOLAR` to `InverterType.INVERTER_TYPE_PHOTOVOLTAIC` in the `inverter.proto` file. This change is made to align with the more colloquial term "PV inverter", while avoiding the use of an abbreviation. Signed-off-by: Tiyash Basu <[email protected]>
1 parent 4bbcdc8 commit 6759eda

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

RELEASE_NOTES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333

3434
+ `COMPONENT_CATEGORY_GRID` to `ELECTRICAL_COMPONENT_CATEGORY_GRID_CONNECTION_POINT`
3535
+ `ComponentCategoryMetadataVariant.metadata.grid` to `ElectricalComponentCategorySpecificInfo.kind.grid_connection_point`
36+
* `InverterType.INVERTER_TYPE_SOLAR` to `InverterType.INVERTER_TYPE_PHOTOVOLTAIC` (to align with the more colloquial term "PV inverter", but without using abbreviations)
3637

3738
+ `microgrid.sensors`:
3839

proto/frequenz/api/common/v1/microgrid/electrical_components/inverter.proto

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ enum InverterType {
1818
// Battery inverter.
1919
INVERTER_TYPE_BATTERY = 1;
2020

21-
// Solar inverter.
22-
INVERTER_TYPE_SOLAR = 2;
21+
// Photovoltaic (PV) inverter.
22+
INVERTER_TYPE_PHOTOVOLTAIC = 2;
2323

2424
// Hybrid inverter.
2525
INVERTER_TYPE_HYBRID = 3;

0 commit comments

Comments
 (0)