@@ -21,6 +21,13 @@ API Breaking Changes
21
21
an exception instead of displaying a dialog.
22
22
* The `modelchain.ModelChain.diode_params ` attribute is now formatted in
23
23
a pandas.DataFrame with `DatetimeIndex `, rather than in a tuple.
24
+ * ``PVSystem.pvwatts_ac `` now uses inverter DC input limit
25
+ ``PVSystem.inverter_parameters['pdc0'] `` instead of module nameplate
26
+ capacity ``PVSystem.module_parameters['pdc0'] ``. (:issue: `734 `)
27
+ * ``ModelChain.infer_ac_model `` now uses the presence of the key ``'pdc0' ``
28
+ ``PVSystem.inverter_parameters `` to determine if the `pvwatts_ac `
29
+ inverter model should be used. The inference method previously looked
30
+ for the key in ``PVSystem.module_parameters ``. (:issue: `734 `)
24
31
25
32
API Changes with Deprecations
26
33
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -30,7 +37,7 @@ API Changes with Deprecations
30
37
- Renamed `pvsystem.sapm_celltemp ` and `pvsystem.pvsyst_celltemp `
31
38
to `temperature.sapm_cell ` and `temperature.pvsyst_cell `.
32
39
- `temperature.sapm_cell ` returns only the cell temperature, whereas the
33
- old `pvsystem.sapm_celltemp ` returned a `DataFrame ` with both cell and module temperatures.
40
+ old `pvsystem.sapm_celltemp ` returned a `DataFrame ` with both cell and module temperatures.
34
41
- Created `temperature.sapm_module ` to return module temperature using the SAPM temperature model.
35
42
- Changed the order of arguments for `pvsystem.sapm_celltemp `,
36
43
`pvsystem.pvsyst_celltemp ` and `PVSystem.sapm_celltemp ` to be consistent
@@ -71,7 +78,7 @@ API Changes with Deprecations
71
78
- `ModelChain.temperature_model_parameters ` now defaults to `None `. The temperature
72
79
model can be inferred from `PVSystem.temperature_model_parameters `.
73
80
- `ModelChain.temps ` attribute renamed to `ModelChain.cell_temperature `,
74
- and its datatype is now `numeric ` rather than `DataFrame `.
81
+ and its datatype is now `numeric ` rather than `DataFrame `.
75
82
- If `PVSystem.temperature_model_parameters ` is not specified, `ModelChain `
76
83
defaults to old behavior, using the SAPM temperature model with parameter
77
84
set `open_rack_glass_glass `. This behavior is deprecated, and will be
@@ -158,6 +165,11 @@ Bug fixes
158
165
(:issue: `754 `)
159
166
* Fix reading raw MIDC CSV files from NREL where the number of header
160
167
columns does not match the number of data columns.
168
+ * Fix installation issue due to missing ``requests `` dependency.
169
+ (:issue: `725 `)
170
+ * ``PVSystem.pvwatts_ac `` now uses inverter DC input limit
171
+ ``PVSystem.inverter_parameters['pdc0'] `` instead of module nameplate
172
+ capacity ``PVSystem.module_parameters['pdc0'] ``. (:issue: `734 `)
161
173
162
174
Testing
163
175
~~~~~~~
0 commit comments