Skip to content

Commit 8f8fabb

Browse files
Add inverter type INVERTER_TYPE_WIND_TURBINE (#337)
closes #272
2 parents 9495123 + 1602a2b commit 8f8fabb

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

RELEASE_NOTES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
- Renamed `metric_sample.proto` to `metrics.proto` to better reflect its content.
2929
- Renamed electrical component category `COMPONENT_CATEGORY_GRID` to `ELECTRICAL_COMPONENT_CATEGORY_GRID_CONNECTION_POINT` to clarify its meaning. Note that the change in the enum change is a part of a larger refactoring of the electrical component category enum.
3030
- The oneof variant `ComponentCategoryMetadataVariant.metadata.grid` has been renamed to `ElectricalComponentCategorySpecificInfo.info.grid_connection_point` to better reflect its purpose.
31+
- A new inverter type `INVERTER_TYPE_WIND_TURBINE` has been added to the `InverterType` enum.
3132

3233
## Bug Fixes
3334

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ enum InverterType {
2323

2424
// Hybrid inverter.
2525
INVERTER_TYPE_HYBRID = 3;
26+
27+
// Wind turbine inverter.
28+
INVERTER_TYPE_WIND_TURBINE = 4;
2629
}
2730

2831
// A representation of an inverter.

0 commit comments

Comments
 (0)