Skip to content

Commit 7e13249

Browse files
committed
Update irradiance.py
1 parent 94ea3ab commit 7e13249

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

pvlib/irradiance.py

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ def get_ground_diffuse(surface_tilt, ghi, albedo=.25, surface_type=None):
534534
(e.g. surface facing up = 0, surface facing horizon = 90).
535535
536536
ghi : numeric
537-
Global horizontal irradiance. [Wm⁻²]
537+
Global horizontal irradiance. [Wm⁻²]
538538
539539
albedo : numeric, default 0.25
540540
Ground reflectance, typically 0.1-0.4 for surfaces on Earth
@@ -602,12 +602,13 @@ def isotropic(surface_tilt, dhi):
602602
Parameters
603603
----------
604604
surface_tilt : numeric
605-
Surface tilt angle in decimal degrees. Tilt must be >=0 and
605+
Surface tilt angle. [°] Tilt must be >=0 and
606606
<=180. The tilt angle is defined as degrees from horizontal
607-
(e.g. surface facing up = 0, surface facing horizon = 90)
607+
(e.g. surface facing up = 0, surface facing horizon = 90).
608+
See :term:`surface_tilt`.
608609
609610
dhi : numeric
610-
Diffuse horizontal irradiance. [Wm⁻²] DHI must be >=0.
611+
Diffuse horizontal irradiance. [Wm⁻²] DHI must be >=0. See :term:`dhi`.
611612
612613
Returns
613614
-------
@@ -656,8 +657,8 @@ def klucher(surface_tilt, surface_azimuth, dhi, ghi, solar_zenith,
656657
Global horizontal irradiance, must be >=0. [Wm⁻²]
657658
658659
solar_zenith : numeric
659-
Apparent (refraction-corrected) zenith angles in decimal
660-
degrees. ``solar_zenith`` must be >=0 and <=180.
660+
Apparent (refraction-corrected) zenith angles. [°]
661+
``solar_zenith`` must be >=0 and <=180. See :term:`solar_zenith`.
661662
662663
solar_azimuth : numeric
663664
Sun azimuth angles. [°] ``solar_azimuth`` must be >=0
@@ -745,22 +746,21 @@ def haydavies(surface_tilt, surface_azimuth, dhi, dni, dni_extra,
745746
Parameters
746747
----------
747748
surface_tilt : numeric
748-
Panel tilt from the horizontal, in decimal degrees, see
749-
:term:`surface_tilt`.
749+
Panel tilt from the horizontal. [°] See :term:`surface_tilt`.
750750
751751
surface_azimuth : numeric
752752
Surface azimuth angles. [°] The azimuth
753753
convention is defined as degrees east of north (e.g. North=0,
754-
South=180, East=90, West=270).
754+
South=180, East=90, West=270). See :term:`surface_azimuth`.
755755
756756
dhi : numeric
757-
Diffuse horizontal irradiance. [Wm⁻²]
757+
Diffuse horizontal irradiance. [Wm⁻²] See :term:`dhi`.
758758
759759
dni : numeric
760760
Direct normal irradiance, see :term:`dni`. [Wm⁻²]
761761
762762
dni_extra : numeric
763-
Extraterrestrial normal irradiance. [Wm⁻²]
763+
Extraterrestrial normal irradiance, see :term:`dni_extra`. [Wm⁻²]
764764
765765
solar_zenith : numeric, optional
766766
Solar apparent (refraction-corrected) zenith angles in decimal
@@ -3660,17 +3660,17 @@ def dni(ghi, dhi, zenith, dni_clear=None, clearsky_tolerance=1.1,
36603660
Parameters
36613661
----------
36623662
ghi : Series
3663-
Global horizontal irradiance.
3663+
Global horizontal irradiance. [Wm⁻²] See :term:`ghi`.
36643664
36653665
dhi : Series
3666-
Diffuse horizontal irradiance.
3666+
Diffuse horizontal irradiance. [Wm⁻²] See :term:`dhi`.
36673667
36683668
zenith : Series
36693669
True (not refraction-corrected) zenith angles in decimal
36703670
degrees. Angles must be >=0 and <=180.
36713671
36723672
dni_clear : Series, optional
3673-
Clearsky direct normal irradiance. [Wm⁻²]
3673+
Clearsky direct normal irradiance. [Wm⁻²] See :term:`dni_clear`.
36743674
36753675
.. versionchanged:: 0.11.2
36763676
Renamed from ``clearsky_dni`` to ``dni_clear``.

0 commit comments

Comments
 (0)