@@ -21,6 +21,13 @@ API Breaking Changes
2121 an exception instead of displaying a dialog.
2222* The `modelchain.ModelChain.diode_params ` attribute is now formatted in
2323 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 `)
2431
2532API Changes with Deprecations
2633~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -30,7 +37,7 @@ API Changes with Deprecations
3037 - Renamed `pvsystem.sapm_celltemp ` and `pvsystem.pvsyst_celltemp `
3138 to `temperature.sapm_cell ` and `temperature.pvsyst_cell `.
3239 - `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.
3441 - Created `temperature.sapm_module ` to return module temperature using the SAPM temperature model.
3542 - Changed the order of arguments for `pvsystem.sapm_celltemp `,
3643 `pvsystem.pvsyst_celltemp ` and `PVSystem.sapm_celltemp ` to be consistent
@@ -71,7 +78,7 @@ API Changes with Deprecations
7178 - `ModelChain.temperature_model_parameters ` now defaults to `None `. The temperature
7279 model can be inferred from `PVSystem.temperature_model_parameters `.
7380 - `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 `.
7582 - If `PVSystem.temperature_model_parameters ` is not specified, `ModelChain `
7683 defaults to old behavior, using the SAPM temperature model with parameter
7784 set `open_rack_glass_glass `. This behavior is deprecated, and will be
@@ -158,6 +165,11 @@ Bug fixes
158165 (:issue: `754 `)
159166* Fix reading raw MIDC CSV files from NREL where the number of header
160167 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 `)
161173
162174Testing
163175~~~~~~~
0 commit comments