From 1602a2b996094b09506304e2fefc5cfd56175f90 Mon Sep 17 00:00:00 2001 From: Tiyash Basu Date: Tue, 20 May 2025 14:56:01 +0200 Subject: [PATCH] Add inverter type `INVERTER_TYPE_WIND_TURBINE` Signed-off-by: Tiyash Basu # Conflicts: # RELEASE_NOTES.md --- RELEASE_NOTES.md | 1 + .../common/v1/microgrid/electrical_components/inverter.proto | 3 +++ 2 files changed, 4 insertions(+) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 0fc84863..fa75f569 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -28,6 +28,7 @@ - Renamed `metric_sample.proto` to `metrics.proto` to better reflect its content. - 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. - The oneof variant `ComponentCategoryMetadataVariant.metadata.grid` has been renamed to `ElectricalComponentCategorySpecificInfo.info.grid_connection_point` to better reflect its purpose. +- A new inverter type `INVERTER_TYPE_WIND_TURBINE` has been added to the `InverterType` enum. ## Bug Fixes diff --git a/proto/frequenz/api/common/v1/microgrid/electrical_components/inverter.proto b/proto/frequenz/api/common/v1/microgrid/electrical_components/inverter.proto index 3f99572b..7371e40c 100644 --- a/proto/frequenz/api/common/v1/microgrid/electrical_components/inverter.proto +++ b/proto/frequenz/api/common/v1/microgrid/electrical_components/inverter.proto @@ -23,6 +23,9 @@ enum InverterType { // Hybrid inverter. INVERTER_TYPE_HYBRID = 3; + + // Wind turbine inverter. + INVERTER_TYPE_WIND_TURBINE = 4; } // A representation of an inverter.