EffectiveMinPower returns the effective min power for the minimum active phases
()
| 221 | |
| 222 | // EffectiveMinPower returns the effective min power for the minimum active phases |
| 223 | func (lp *Loadpoint) EffectiveMinPower() float64 { |
| 224 | lp.RLock() |
| 225 | defer lp.RUnlock() |
| 226 | return Voltage * lp.effectiveMinCurrent() * float64(lp.minActivePhases()) |
| 227 | } |
| 228 | |
| 229 | // EffectiveMaxPower returns the effective max power taking vehicle capabilities, |
| 230 | // phase scaling and load management power limits into account |
no test coverage detected