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/user_guide/installation.rst
+1-1
Original file line number
Diff line number
Diff line change
@@ -116,7 +116,7 @@ Alternative Installation: Windows Subsystem for Linux:
116
116
117
117
PYTHON
118
118
-------
119
-
You will need python installed to run bifacial_radiance. We suggest using the latest release of `Anaconda with Python 3.9<https://www.anaconda.com/distribution/>`_ (Python 3.7 is still supported but in the process of being deprecated). Anaconda will install ``Spyder`` to work with the python scripts, and also it will install ``Jupyter``, which is the tool we use for our `tutorial trainings <https://github.com/NREL/bifacial_radiance/tree/master/docs/tutorials>`_
119
+
You will need python installed to run bifacial_radiance. We suggest using the latest release of `Anaconda with Python 3.11<https://www.anaconda.com/download/>`_ . Anaconda will install ``Spyder`` to work with the python scripts, and also it will install ``Jupyter``, which is the tool we use for our `tutorial trainings <https://github.com/NREL/bifacial_radiance/tree/master/docs/tutorials>`_
120
120
121
121
122
122
Alternative Installation: Windows Subsystem for Linux:
Copy file name to clipboardExpand all lines: docs/sphinx/source/whatsnew/v0.4.3.rst
+11-11
Original file line number
Diff line number
Diff line change
@@ -2,42 +2,42 @@
2
2
3
3
v0.4.3 (Aug 27 2024)
4
4
------------------------
5
-
Bugfix Release ...
5
+
Bugfix Release
6
6
7
7
8
8
API Changes
9
9
~~~~~~~~~~~~
10
-
* A new function can now be called to compile results and report out final irradiance and performance data: :func:`bifacial_radiance.RadianceObj.compileResults`. (This is a temporary function soon to be deprecated)
10
+
* A new function can now be called to compile results and report out final irradiance and performance data: ``RadianceObj.compileResults``. (This is a temporary function soon to be deprecated)
11
11
* Multiple modules and rows can now be selected in a single analysis scan. ``modWanted`` and ``rowWanted`` inputs in :py:class:`~bifacial_radiance.RadianceObj.analysis1axis` can now be a list, to select multiple rows and modules for scans. (:issue:`405`)(:pull:`408`)
12
-
* To support multiple modules and row scans for 1axis simulations, outputs like Wm2Front are now stored in ``trackerdict``.``Results`` (:issue:`405`)(:pull:`408`)
13
-
* :func:`.mismatch.mad_fn` has new functionality and input parameter `axis`. If a 2D matrix or dataframe is passed in as data, MAD is calculated along the row (default) or along the columns by passing 'axis=1'
14
-
* :func:`bifacial_radiance.mismatch.mismatch_fit3` has been deprecated in favour of :func:`bifacial_radiance.mismatch.mismatch_fit2` which has a greater agreement with anual energy yield data (:issue:`520`)
12
+
* To support multiple modules and row scans for 1axis simulations, outputs like Wm2Front are now stored in ``trackerdict.Results`` (:issue:`405`)(:pull:`408`)
13
+
* ``mismatch.mismatch.mad_fn`` has new functionality and input parameter ``axis``. If a 2D matrix or dataframe is passed in as data, MAD is calculated along the row (default) or along the columns by passing 'axis=1'
14
+
* ``mismatch.mismatch_fit3`` has been deprecated in favour of ``mismatch.mismatch_fit2`` which has a greater agreement with anual energy yield data (:issue:`520`)
15
15
16
16
Enhancements
17
17
~~~~~~~~~~~~
18
-
* Added :func:`bifacial_radiance.mismatch.mismatch_fit2`, similar to :func:`bifacial_radiance.mismatch.mismatch_fit3`, with the recommended coefficients of the original publication. (:pull:`520`)
18
+
* Added ``mismatch.mismatch_fit2``, similar to ``mismatch.mismatch_fit3``, with the recommended coefficients of the original publication. (:pull:`520`)
19
19
* Including `pyRadiance` as a requirement to help streamline RADIANCE installation and calls in a future release. (:pull:`532`)
20
20
21
21
Bug fixes
22
22
~~~~~~~~~
23
-
* Fixed error passing all of `sceneDict` into :func:`~bifacial_radiance.RadianceObj.makeScene1axis`. (:issue:`502`)
24
-
* Fixed Pandas 2.0 errors by re-factoring :func:`.mismatch.mad_fn` (:issue:`449`)
23
+
* Fixed error passing all of ``sceneDict`` into py:class:`~bifacial_radiance.RadianceObj.makeScene1axis`. (:issue:`502`)
24
+
* Fixed Pandas 2.0 errors by re-factoring py:class:`bifacial_radiance.mismatch.mad_fn` (:issue:`449`)
25
25
* Switch from un-supported Versioneer to setuptools_scm (:issue:`519`)
26
26
* Numpy 2.0 compatibility bug (:issue:`521`)
27
-
* Fixed bug in :func:`bifacial_radiance.mismatch.mismatch_fit3` where the function was not returning the correct values. It has also been deprecated in favour of :func:`bifacial_radiance.mismatch.mismatch_fit2` which has a greater agreement with anual energy yield data (:issue:`520`)
27
+
* Fixed bug in ``mismatch.mismatch_fit3`` where the function was not returning the correct values. It has also been deprecated in favour of ``mismatch.mismatch_fit2`` which has a greater agreement with anual energy yield data (:issue:`520`)
28
28
* Updated Github Actions to use Node20: checkout@v4, setup-python@v5, coactions/setup-xvfb, setup-buildx-action@v3 (:pull:`517`)
29
29
* Updated Github Actions to make Coveralls fail silently if it has an internal server error (:pull:`517`)
30
30
* Fix PerformanceWarning and SettingWithCopyWarning (:issue:`515`)
31
31
* Switch from Versioneer to setuptools_scm (:pull:`522`)
32
-
* Enable `coerce_year`=None if the TMYfile is all the same year (:issue:`526`)
32
+
* Enable ``coerce_year=None`` if the TMYfile is all the same year (:issue:`526`)
33
33
34
34
Documentation
35
35
~~~~~~~~~~~~~~
36
36
* Edge effects evaluation tutorial 23, with the new functionality of multiple modules/rows on the same analysis scan.
37
37
* Updates to example notebooks
38
38
* Reduce number of digits in makeScene .rad file titles. (:pull:`503`)
39
39
* Reduce number of digits saved to files in \results (:pull:`534`)
40
-
* In the sceneDict reported in the trackerdict, save both `clearance_height` and `hub_height` parameters. (:pull:`503`)
40
+
* In the sceneDict reported in the trackerdict, save both ``clearance_height`` and ``hub_height`` parameters. (:pull:`503`)
0 commit comments