Skip to content

Commit

Permalink
fix: Do not clamp the relative limit of inverters to 100%: some inver…
Browse files Browse the repository at this point in the history
…ters accept more than 100%.

Inverters have a % of tolerance and can output more than their nominal power, especially with good conditions like in winter and/or when used with a ratio of 1.2-1.3 (solar panel power/ inverter power). My HM400 can output spikes at 415-425W AC in Winter.
  • Loading branch information
mathieucarbou committed Jan 24, 2025
1 parent 7d4d56f commit 005e851
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions lib/Hoymiles/src/inverters/HM_Abstract.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,6 @@ bool HM_Abstract::sendActivePowerControlRequest(float limit, const PowerLimitCon
return false;
}

if (type == PowerLimitControlType::RelativNonPersistent || type == PowerLimitControlType::RelativPersistent) {
limit = min<float>(100, limit);
}

_activePowerControlLimit = limit;
_activePowerControlType = type;

Expand Down

0 comments on commit 005e851

Please sign in to comment.