File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed
proto/frequenz/api/common/v1/market Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 1+ // Frequenz definitions of power.
2+ //
3+ // Copyright 2024 Frequenz Energy-as-a-Service GmbH
4+ //
5+ // Licensed under the MIT License (the "License");
6+ // you may not use this file except in compliance with the License.
7+
8+ syntax = "proto3" ;
9+
10+ package frequenz.api.common.v1.market ;
11+
12+ import "frequenz/api/common/v1/types/decimal.proto" ;
13+
14+ // Represents a single unit of power.
15+ //
16+ // !!! note
17+ // The power unit is denominated in MW (Megawatts), which is a unit of
18+ // power representing the rate of energy production or consumption at any
19+ // given moment. This differs from MWh (Megawatt-hours), which measures
20+ // the total amount of energy delivered or consumed over a period.
21+ //
22+ // Example:
23+ // A power plant running at 10 MW for 1 hour generates 10 MWh of energy.
24+ //
25+ // This message standardizes the representation of power in MW across all
26+ // market applications.
27+ message Power {
28+ // Power amount in Megawatts (MW).
29+ frequenz.api.common.v1.types.Decimal mw = 1 ;
30+ }
You can’t perform that action at this time.
0 commit comments