8000 Implement dynamic faiman model and function to fit this to measurements by adriesse · Pull Request #1878 · pvlib/pvlib-python · GitHub
[go: up one dir, main page]

Skip to content

Implement dynamic faiman model and function to fit this to measurements #1878

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

Closed
wants to merge 25 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Flake again.
  • Loading branch information
adriesse committed Oct 5, 2023
commit 9f0a1d70e23b6a10bc50a67666f4e879aa4d0731
7 changes: 4 additions & 3 deletions pvlib/temperature.py
Original file line number Diff line number Diff line change
Expand Up @@ -320,8 +320,7 @@ def pvsyst_cell(poa_global, temp_air, wind_speed=1.0, u_c=29.0, u_v=0.0,
u_v : float, default 0.0
Combined heat loss factor influenced by wind. Parameter :math:`U_{v}`
in :eq:`pvsyst`.
:math:`\left[ \frac{\text{W}/\text{m}^2}
{\text{C}\ \left( \text{m/s} \right)} \right]`
:math:`\left[ \frac{\text{W}/\text{m}^2}{\text{C}\ \left( \text{m/s} \right)} \right]`

module_efficiency : numeric, default 0.1
Module external efficiency as a fraction. Parameter :math:`\eta_{m}`
Expand Down Expand Up @@ -534,7 +533,9 @@ def faiman_dyn(poa_global, temp_air, wind_speed=1.0, u0=25.0, u1=6.84,
--------
pvlib.temperature.fit_faiman_dyn
pvlib.temperature.faiman
'''

''' # noQA: E501

if not isinstance(poa_global, pd.Series):
raise ValueError('poa_global must be a pandas Series')

Expand Down
0