Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

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

+ `microgrid.sensors`:

Expand Down
4 changes: 2 additions & 2 deletions proto/frequenz/api/common/v1/metrics/metrics.proto
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,8 @@ enum MetricConnectionCategory {
// A connection to a metric representing a battery.
METRIC_CONNECTION_CATEGORY_BATTERY = 2;

// A connection to a metric representing a photovoltaic (PV) array or string.
METRIC_CONNECTION_CATEGORY_PHOTOVOLTAIC = 3;
// A connection to a metric representing a PV (photovoltaic) array or string.
METRIC_CONNECTION_CATEGORY_PV = 3;

// A connection to a metric representing ambient conditions.
METRIC_CONNECTION_CATEGORY_AMBIENT = 10;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ enum InverterType {
// Battery inverter.
INVERTER_TYPE_BATTERY = 1;

// Photovoltaic (PV) inverter.
INVERTER_TYPE_PHOTOVOLTAIC = 2;
// PV (photovoltaic) inverter.
INVERTER_TYPE_PV = 2;

// Hybrid inverter.
INVERTER_TYPE_HYBRID = 3;
Expand Down
Loading