diff --git a/docs/examples/bifacial/plot_irradiance_nonuniformity_loss.py b/docs/examples/bifacial/plot_irradiance_nonuniformity_loss.py index 8b19ebeb79..9b02bfb58e 100644 --- a/docs/examples/bifacial/plot_irradiance_nonuniformity_loss.py +++ b/docs/examples/bifacial/plot_irradiance_nonuniformity_loss.py @@ -40,30 +40,31 @@ # # .. sectionauthor:: Echedey Luis -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.cm import ScalarMappable -from matplotlib.colors import Normalize - -from pvlib.bifacial import power_mismatch_deline - # %% # Problem description # ------------------- # Let's set a fixed irradiance to each cell row of the PV array with the values # described in Figure 1 (A), [1]_. We will cover this case for educational # purposes, although it can be achieved with the packages -# :ref:`solarfactors ` and -# :ref:`bifacial_radiance `. +# `solarfactors `_ and +# `bifacial_radiance `_. # # Here we set and plot the global irradiance level of each cell. +import numpy as np +import matplotlib.pyplot as plt +from matplotlib.cm import ScalarMappable +from matplotlib.colors import Normalize + +from pvlib.bifacial import power_mismatch_deline + x = np.arange(12, 0, -1) y = np.arange(6, 0, -1) cells_irrad = np.repeat([1059, 976, 967, 986, 1034, 1128], len(x)).reshape( len(y), len(x) ) +# plot the irradiance levels of each cell color_map = "gray" color_norm = Normalize(930, 1150) diff --git a/docs/examples/floating-pv/plot_floating_pv_cell_temperature.py b/docs/examples/floating-pv/plot_floating_pv_cell_temperature.py index c288b30856..c1b7c93f97 100644 --- a/docs/examples/floating-pv/plot_floating_pv_cell_temperature.py +++ b/docs/examples/floating-pv/plot_floating_pv_cell_temperature.py @@ -19,7 +19,6 @@ The PVSyst model for cell temperature :math:`T_{C}` is given by: .. math:: - :label: pvsyst T_{C} = T_{a} + \frac{\alpha \cdot E \cdot (1 - \eta_{m})}{U_{c} + U_{v} \cdot WS}, diff --git a/docs/sphinx/source/_static/version-alert.js b/docs/sphinx/source/_static/version-alert.js index e8179a6c2f..09f142d3d0 100644 --- a/docs/sphinx/source/_static/version-alert.js +++ b/docs/sphinx/source/_static/version-alert.js @@ -47,7 +47,7 @@ function warnOnLatestVersion() { "

" + "This document is for an unreleased development version. " + "Documentation is available for the current stable release, " + - "or for older versions through the “v:” menu at bottom right." + + "or for older versions through the “v:” menu at bottom left." + "

"; warning.querySelector('a').href = window.location.pathname.replace('/latest', '/stable'); diff --git a/docs/sphinx/source/user_guide/faq.rst b/docs/sphinx/source/user_guide/faq.rst index 39e3bec841..f87fa101b5 100644 --- a/docs/sphinx/source/user_guide/faq.rst +++ b/docs/sphinx/source/user_guide/faq.rst @@ -123,7 +123,7 @@ If you see a function in the pvlib documentation that doesn't seem to exist in your pvlib installation, the documentation is likely for a different version of pvlib. You can check your installed pvlib version by running ``print(pvlib.__version__)`` in python. To switch documentation versions, use -the `v:` version switcher widget in the bottom right corner of this page. +the `v:` version switcher widget in the bottom left corner of this page. You can also upgrade your installed pvlib to the latest compatible version with ``pip install -U pvlib``, but be sure to check the :ref:`whatsnew`