You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/sphinx/source/whatsnew/v0.7.0.rst
+19-11Lines changed: 19 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
.. _whatsnew_0700:
2
2
3
3
v0.7.0 (MONTH DAY, YEAR)
4
-
---------------------
4
+
------------------------
5
5
6
6
This is a major release that drops support for Python 2 and Python 3.4. We
7
7
recommend all users of v0.6.3 upgrade to this release after checking API
@@ -12,9 +12,8 @@ compatibility notes.
12
12
13
13
API Changes
14
14
~~~~~~~~~~~
15
-
* Changes to functions and methods for cell temperature models:
16
-
(:issue:`678')
17
-
- Moved functions for cell temperature and constant
15
+
* Changes to functions and methods for cell temperature models (:issue:`678`):
16
+
- Moved functions for cell temperature and constant
18
17
`TEMP_MODEL_PARAMS` from `pvsystem.py` to `temperature.py`.
19
18
- Renamed `pvsystem.sapm_celltemp` and `pvsystem.pvsyst_celltemp`
20
19
to `temperature.sapm_cell` and `temperature.pvsyst_cell`.
@@ -28,23 +27,32 @@ API Changes
28
27
`temperature.pvsyst_cell`. These functions now require model-specific parameters.
29
28
- Added the argument `irrad_ref`, default value 1000, to `temperature.sapm_cell`.
30
29
- Renamed `pvsystem.TEMP_MODEL_PARAMS` to `temperature.TEMPERATURE_MODEL_PARAMETERS`.
31
-
- `temperature.TEMPERATURE_MODEL_PARAMETERS` uses dict rather than tuple for a parameter set.
30
+
- `temperature.TEMPERATURE_MODEL_PARAMETERS` uses dict rather than
31
+
tuple for a parameter set.
32
32
- Parameter set names for `temperature.TEMPERATURE_MODEL_PARAMETERS` have changed.
33
-
- Parameter sets for the SAPM cell temperature model named 'open_rack_polymer_thinfilm_steel' and '22x_concentrator_tracker' are considered obsolete and have been removed.
33
+
- Parameter sets for the SAPM cell temperature model named
34
+
'open_rack_polymer_thinfilm_steel' and '22x_concentrator_tracker'
35
+
are considered obsolete and have been removed.
36
+
- `temperature.TEMPERATURE_MODEL_PARAMETERS` uses dict rather than tuple for a parameter set.
34
37
- Added attribute `PVSystem.module_type` (str) to record module
35
38
front and back materials, default is `glass_polymer`.
- Changed meaning of `PVSystem.racking_model` to describe racking
39
42
only, e.g., default is `open_rack`.
40
-
- In `PVSystem.sapm_celltemp` and `PVSystem.pvsyst_celltemp`, changed kwarg `model` to `parameter_set`. `parameter_set` expects a str which is a valid key for `temperature.TEMPERATURE_MODEL_PARAMETERS` for the corresponding temperature model.
43
+
- In `PVSystem.sapm_celltemp` and `PVSystem.pvsyst_celltemp`,
44
+
changed kwarg `model` to `parameter_set`. `parameter_set` expects
45
+
a str which is a valid key for
46
+
`temperature.TEMPERATURE_MODEL_PARAMETERS` for the corresponding
47
+
temperature model.
41
48
- `ModelChain.temp_model` renamed to `ModelChain.temperature_model`.
42
49
- `ModelChain.temps` attribute renamed to `ModelChain.cell_temperature`, and its datatype is now `numeric` rather than `DataFrame`.
43
-
- Implemented `pvsyst` as an option for `ModelChain.temperature_model`.
44
50
- `ModelChain.temperature_model` now defaults to `None`. The temperature
45
-
model can be inferred from
46
-
`PVSystem.temperature_model_parameters`.
47
-
- `modelchain.basic_chain` has a new required argument `temperature_model_parameters`.
51
+
model can be inferred from `PVSystem.temperature_model_parameters`.
52
+
- Implemented `pvsyst` as an option for `ModelChain.temperature_model`.
53
+
- `modelchain.basic_chain` has a new required argument
0 commit comments