Inverter Temperature Derate based on Pmax ratio#471
Merged
Conversation
than inv. efficiency
mjprilliman
commented
Oct 27, 2020
temp derate test results in pvsamv1
Collaborator
|
See also NatLabRockies/SAM#412 |
dguittet
reviewed
Oct 30, 2020
| for (size_t i = 0; i < DCStringVoltage.size(); i++) | ||
| avgDCVoltage += DCStringVoltage[i]; | ||
| avgDCVoltage /= DCStringVoltage.size(); | ||
| calculateTempDerate(avgDCVoltage, tempC, powerAC_Watts, power_ratio, tempLoss); |
Collaborator
There was a problem hiding this comment.
tempLoss will now be in DC. So any comments and the var_info table label should specify that
| } | ||
| double power_ratio = 1.0; | ||
| if (m_tempEnabled) { | ||
| calculateTempDerate(DCStringVoltage, tempC, powerAC_Watts, power_ratio, tempLoss); |
Collaborator
There was a problem hiding this comment.
Since this code is now working to potentially clip the input DC power, this should be done before the calls to acpower.
…to inv_temp_derate_pmax
clipping comparison for thermal derate, updated tests and documentation
mjprilliman
commented
Nov 2, 2020
mjprilliman
left a comment
Collaborator
Author
There was a problem hiding this comment.
@dguittet Need input on how to handle PVYield inverter derate
| double startT2 = 0.0; | ||
| double Vdc2 = 0.0; | ||
|
|
||
| double p_dc_max = getInverterDCMaxPower(p_dc_rated); |
Collaborator
Author
There was a problem hiding this comment.
Added function to get rated DC power from inverter.
dguittet
reviewed
Nov 2, 2020
dguittet
approved these changes
Nov 6, 2020
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
-Changed inverter derate table to be based on ratio of max output power to rated power rather than efficiency
-Update Y-axis label to reflect the ratio rather than the percentage
-Update default inverter temperature derate table to reflect more realistic examples (resource provided by Will Hobbs from Southern Company: https://files.sma.de/downloads/Temp-Derating-TI-en-15.pdf)
-Closes #442