File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/frequenz/sdk/timeseries/formula_engine Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -169,8 +169,8 @@ the component graph are:
169169[ ` grid_power ` ] [ frequenz.sdk.timeseries.logical_meter.LogicalMeter.grid_power ] ,
170170[ ` consumer_power ` ] [ frequenz.sdk.timeseries.logical_meter.LogicalMeter.consumer_power ] ,
171171etc. for a microgrid, using the available components.
172- - identify the available batteries or ev chargers at a site that can be
173- controlled.
172+ - identify the available {{glossary("battery", " batteries")}} or
173+ {{glossary("EV charger", "EV chargers")}} at a site that can be controlled.
174174
175175### Island
176176
Original file line number Diff line number Diff line change @@ -239,7 +239,7 @@ class FormulaEngine(
239239 Composite `FormulaEngine`s can be built using arithmetic operations on
240240 `FormulaEngine`s streaming the same type of data.
241241
242- For example, if you're interested in particular composite metric that can be
242+ For example, if you're interested in a particular composite metric that can be
243243 calculated by subtracting
244244 [`battery_pool().power`][frequenz.sdk.timeseries.battery_pool.BatteryPool.power] and
245245 [`ev_charger_pool().power`][frequenz.sdk.timeseries.ev_charger_pool.EVChargerPool]
@@ -452,7 +452,7 @@ class FormulaEngine3Phase(
452452 logical_meter = microgrid.logical_meter()
453453 ev_charger_pool = microgrid.ev_charger_pool()
454454
455- # Calculate grid consumption current that's not used by the ev chargers
455+ # Calculate grid consumption current that's not used by the EV chargers
456456 other_current = (logical_meter.grid_current - ev_charger_pool.current).build("other_current")
457457
458458 async for sample in other_current.new_receiver():
You can’t perform that action at this time.
0 commit comments