Skip to content

Commit

Permalink
Revert "Fix: assume small increase for shaded inverter"
Browse files Browse the repository at this point in the history
This reverts commit 77083bb.
  • Loading branch information
AndreasBoehm authored and schlimmchen committed Jan 16, 2025
1 parent 73fded1 commit 0a9a856
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/PowerLimiterSolarInverter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,8 @@ uint16_t PowerLimiterSolarInverter::getMaxIncreaseWatts() const
}

if (dcNonShadedMppts == 0) {
// all mppts are shaded according to our calculation.
// but because we can not be sure we assume that we can
// increase the power by 3% of the max power.
return getConfiguredMaxPowerWatts() / 33;
// all mppts are shaded, we can't increase the power
return 0;
}

if (dcNonShadedMppts == dcTotalMppts) {
Expand Down

0 comments on commit 0a9a856

Please sign in to comment.