We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7caf6f9 commit eea9926Copy full SHA for eea9926
RELEASE_NOTES.md
@@ -6,6 +6,13 @@
6
7
## Upgrading
8
9
++ Battery power is no longer available through the `LogicalMeter`, but
10
+ through the `BatteryPool` (#338)
11
+
12
+ ``` python
13
+ battery_power_receiver = microgrid.battery_pool().power.new_receiver()
14
+ ```
15
16
+ Formulas composition has changed (#327) -
17
- receivers from formulas are no longer composable.
18
- formula composition is now done by composing FormulaEngine instances.
@@ -18,7 +25,7 @@
25
19
26
self._inverter_power = (
20
27
microgrid.logical_meter().pv_power
21
- + microgrid.logical_meter().battery_power
28
+ + microgrid.battery_pool().power
22
29
).build("inverter_power")
23
30
24
31
inverter_power_receiver = self._inverter_power.new_receiver()
0 commit comments