Skip to content

Run ModelChain from POA irradiance #943

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 29 commits into from
Sep 5, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
70ef8ee
add _from_poa, _from_effective_irradiance methods
cwhanse Mar 27, 2020
4bdbb42
indentation, lint
cwhanse Mar 28, 2020
49e2275
sort out weather, total_irrad, effective_irradiance
cwhanse Mar 29, 2020
49f3c47
Merge branch 'master' of https://github.com/pvlib/pvlib-python into poa
cwhanse May 15, 2020
c524921
Merge branch 'master' of https://github.com/pvlib/pvlib-python into poa
cwhanse Jul 30, 2020
d678978
fix _prep_inputs_solar_pos
cwhanse Jul 30, 2020
ad23a37
press_temp
cwhanse Aug 4, 2020
c30f26b
Merge branch 'master' of https://github.com/pvlib/pvlib-python into poa
cwhanse Aug 12, 2020
6e91a78
reorganize code that assigns weather and total_irrad
cwhanse Aug 17, 2020
b8d9c3d
add prepare_temperature
cwhanse Aug 24, 2020
8149cda
merge master
cwhanse Sep 1, 2020
73854a7
start fixing tests
cwhanse Sep 1, 2020
7452d6b
start on tests
cwhanse Sep 2, 2020
8bda69a
split run_model_from_effective_irradiance
cwhanse Sep 2, 2020
018c2e9
fix tests, sticker
cwhanse Sep 2, 2020
1cb712c
more test fixes
cwhanse Sep 2, 2020
07b8c4d
another test fix
cwhanse Sep 2, 2020
4b947ee
add test for prepare_temperature
cwhanse Sep 3, 2020
169a28e
don't replace missing poa_global with effective_irradiance
cwhanse Sep 3, 2020
a67d268
make _prepare_temperature private
cwhanse Sep 3, 2020
de54801
add _assign_weather() to test
cwhanse Sep 3, 2020
436b689
method name to sapm_temp
cwhanse Sep 3, 2020
ea38d99
use the correct class
cwhanse Sep 3, 2020
74c12bb
Merge branch 'master' of https://github.com/pvlib/pvlib-python into poa
cwhanse Sep 3, 2020
1477138
api, whatsnew
cwhanse Sep 3, 2020
9113da9
docstring improvements, use assert_frame_equal
cwhanse Sep 3, 2020
c72e3d0
delete [k]
cwhanse Sep 3, 2020
91b7c7d
Merge branch 'master' of https://github.com/pvlib/pvlib-python into poa
cwhanse Sep 5, 2020
11cb93b
add issue to whatsnew
cwhanse Sep 5, 2020
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
13 changes: 12 additions & 1 deletion docs/sphinx/source/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -547,14 +547,25 @@ Creating a ModelChain object.
Running
-------

Running a ModelChain.
A ModelChain can be run from a number of starting points, depending on the
input data available.

.. autosummary::
:toctree: generated/

modelchain.ModelChain.run_model
modelchain.ModelChain.run_model_from_poa
modelchain.ModelChain.run_model_from_effective_irradiance

Functions to assist with setting up ModelChains to run

.. autosummary::
:toctree: generated/

modelchain.ModelChain.complete_irradiance
modelchain.ModelChain.prepare_inputs
modelchain.ModelChain.prepare_inputs_from_poa


Attributes
----------
Expand Down
5 changes: 5 additions & 0 deletions docs/sphinx/source/whatsnew/v0.8.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,11 @@ Enhancements
* Add :py:func:`pvlib.pvsystem.combine_loss_factors` as general purpose
function to combine loss factors with a common index.
Partialy addresses :issue:`988`. Contributed by Brock Taute :ghuser:`btaute`
* Add capability to run a ModelChain starting with plane-of-array or effective
irradiance, or with back-of-module or cell temperature data. New methods are
:py:meth:`pvlib.modelchain.ModelChain.run_model_from_poa`,
:py:meth:`pvlib.modelchain.ModelChain.run_model_from_effective_irradiance`,
and :py:meth:`pvlib.modelchain.ModelChain.prepare_inputs_from_poa` (:issue:`536`, :pull:`943`)

Bug fixes
~~~~~~~~~
Expand Down
Loading