You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
recently a question was posed, given backside module temperature, how to include them in the model chain? Looking at the temperature models available, there isn't one that takes module temperature as input and returns cell temperature. SAPM has a formula for adjusting module temperature to obtain cell temperature based on irradiance and constant "delta-T" parameter that is characteristic of the module. However this formula is bundled into pvlib.temperature.sapm_cellas Eq (2) and the function doesn't take module temperature as input
Describe the solution you'd like
add an optional kwarg to pvlib.temperature.sapm_cell that allows it to bypass the module temperature calculation.
+1 for pvlib.temperature.sapm_cell_from_module rather than sapm_module_to_cell, I'd prefer to keep the output earlier in the name string
mikofski
changed the title
cell temperature from backside of module temperature measurements
[ENH] cell temperature from backside of module temperature measurements
Mar 10, 2020
Is your feature request related to a problem? Please describe.
recently a question was posed, given backside module temperature, how to include them in the model chain? Looking at the temperature models available, there isn't one that takes module temperature as input and returns cell temperature. SAPM has a formula for adjusting module temperature to obtain cell temperature based on irradiance and constant "delta-T" parameter that is characteristic of the module. However this formula is bundled into
pvlib.temperature.sapm_cell
as Eq (2) and the function doesn't take module temperature as inputDescribe the solution you'd like
add an optional kwarg to
pvlib.temperature.sapm_cell
that allows it to bypass the module temperature calculation.pvlib-python/pvlib/temperature.py
Line 117 in ae98bf9
option 1:
add
module_temperature
as kwargoption 2:
add new
pvlib.temperature.sapm_module_to_cell
funcnote: if option 2, then
pvlib.temperature.sapm_cell
could be updated to callpvlib.temperature.sapm_module_to_cell
Describe alternatives you've considered
pvlib.temperature.sapm_cell
pvlib.temperature.sapm_module_to_cell
?Additional context
related to this post on the Google group
The text was updated successfully, but these errors were encountered: