8000 More docs build fixes by echedey-ls · Pull Request #2030 · pvlib/pvlib-python · GitHub
[go: up one dir, main page]

Skip to content

More docs build fixes #2030

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 10 commits into from
May 1, 2024
Merged
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
add missing ref to bishop88_* funcs
  • Loading branch information
echedey-ls committed May 1, 2024
commit 0618913353ad76970e4211a51f705e15432ea4ce
18 changes: 18 additions & 0 deletions pvlib/singlediode.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,12 @@ def bishop88_i_from_v(voltage, photocurrent, saturation_current,

>>> i, method_output = bishop88_i_from_v(0.0, **args, method='newton',
... method_kwargs={'full_output': True})

References
----------
.. [1] "Computer simulation of the effects of electrical mismatches in
photovoltaic cell interconnection circuits" JW Bishop, Solar Cell (1988)
:doi:`10.1016/0379-6787(88)90059-2`
"""
# collect args
args = (photocurrent, saturation_current,
Expand Down Expand Up @@ -417,6 +423,12 @@ def bishop88_v_from_i(current, photocurrent, saturation_current,

>>> v, method_output = bishop88_v_from_i(0.0, **args, method='newton',
... method_kwargs={'full_output': True})

References
----------
.. [1] "Computer simulation of the effects of electrical mismatches in
photovoltaic cell interconnection circuits" JW Bishop, Solar Cell (1988)
:doi:`10.1016/0379-6787(88)90059-2`
"""
# collect args
args = (photocurrent, saturation_current,
Expand Down Expand Up @@ -547,6 +559,12 @@ def bishop88_mpp(photocurrent, saturation_current, resistance_series,

>>> (i_mp, v_mp, p_mp), method_output = bishop88_mpp(**args,
... method='newton', method_kwargs={'full_output': True})

References
----------
.. [1] "Computer simulation of the effects of electrical mismatches in
photovoltaic cell interconnection circuits" JW Bishop, Solar Cell (1988)
:doi:`10.1016/0379-6787(88)90059-2`
"""
# collect args
args = (photocurrent, saturation_current,
Expand Down
0