8000 Add noct_sam cell temperature model to PVSystem, ModelChain by cwhanse · Pull Request #1195 · pvlib/pvlib-python · GitHub
[go: up one dir, main page]

Skip to content

Add noct_sam cell temperature model to PVSystem, ModelChain #1195

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
Mar 15, 2021
Merged
Prev Previous commit
Next Next commit
derp
  • Loading branch information
cwhanse committed Mar 13, 2021
commit 64b16bf26be575af83aa09e142ffc513703d6ee6
2 changes: 1 addition & 1 deletion pvlib/pvsystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -824,7 +824,7 @@ def noct_sam_celltemp(self, poa_global, temp_air, wind_speed,

# need effective_irradiance to be an iterable
if effective_irradiance is None:
effective_irradiance = tuple([None for a in self.num_arrays])
effective_irradiance = tuple([None] * self.num_arrays)

def _build_kwargs_noct_sam(array):
temp_model_kwargs = _build_kwargs([
Expand Down
0