Skip to content

Commit 158588d

Browse files
committed
clarify that modelchain currently only supports sapm
1 parent 4073821 commit 158588d

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

docs/sphinx/source/whatsnew/v0.3.3.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ Bug fixes
2121

2222
* Fix another bug with the Appveyor continuous integration builds.
2323
(:issue:`170`)
24+
* Clarify that ``ModelChain`` and ``basic_chain`` currently only
25+
supports SAPM. (:issue:`177`)
2426

2527

2628
Contributors

pvlib/modelchain.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ def basic_chain(times, latitude, longitude,
4444
Use decimal degrees notation.
4545
4646
module_parameters : None, dict or Series
47-
Module parameters as defined by the SAPM, CEC, or other.
47+
Module parameters as defined by the SAPM.
4848
4949
inverter_parameters : None, dict or Series
50-
Inverter parameters as defined by the SAPM, CEC, or other.
50+
Inverter parameters as defined by the CEC.
5151
5252
irradiance : None or DataFrame
5353
If None, calculates clear sky data.
@@ -213,7 +213,10 @@ class ModelChain(object):
213213
"""
214214
An experimental class that represents all of the modeling steps
215215
necessary for calculating power or energy for a PV system at a given
216-
location.
216+
location using the SAPM.
217+
218+
CEC module specifications and the single diode model are not yet
219+
supported.
217220
218221
Parameters
219222
----------

0 commit comments

Comments
 (0)