@@ -35,25 +35,30 @@ def get_extra_radiation(datetime_or_doy, solar_constant=1366.1,
35
35
"""
36
36
Determine extraterrestrial radiation from day of year.
37
37
38
+ Specific references for each method are cited in the parameter descriptions
39
+ below, while a more general discussion of the different models may also be
40
+ found in [1]_ and [2]_.
41
+
38
42
Parameters
39
43
----------
40
44
datetime_or_doy : numeric, array, date, datetime, Timestamp, DatetimeIndex
41
45
Day of year, array of days of year, or datetime-like object
42
46
43
47
solar_constant : float, default 1366.1
44
- The solar constant.
48
+ The solar constant. [Wm⁻²]
45
49
46
- method : string, default 'spencer'
47
- The method by which the ET radiation should be calculated.
48
- Options include ``'pyephem', 'spencer', 'asce', 'nrel'``.
50
+ method : string, default `spencer`
51
+ The method by which the extraterrestrial radiation should be
52
+ calculated. Options include: `pyephem`, `spencer` [3]_, `asce` [4]_,
53
+ 'nrel' [6]_.
49
54
50
55
epoch_year : int, default 2014
51
56
The year in which a day of year input will be calculated. Only
52
- applies to day of year input used with the pyephem or nrel
57
+ applies to day of year input used with the ` pyephem` or ` nrel`
53
58
methods.
54
59
55
60
kwargs :
56
- Passed to solarposition.nrel_earthsun_distance
61
+ Passed to :py:func:`~pvlib. solarposition.nrel_earthsun_distance`.
57
62
58
63
Returns
59
64
-------
@@ -68,19 +73,23 @@ def get_extra_radiation(datetime_or_doy, solar_constant=1366.1,
68
73
.. [1] M. Reno, C. Hansen, and J. Stein, "Global Horizontal Irradiance
69
74
Clear Sky Models: Implementation and Analysis", Sandia National
70
75
Laboratories, SAND2012-2389, 2012.
76
+ :doi:`10.2172/1039404`
71
77
72
- .. [2] http://solardata.uoregon.edu/SolarRadiationBasics.html, Eqs.
73
- SR1 and SR2
78
+ .. [2] J. A. Duffie, W. A. Beckman, N. Blair, "Solar Radiation", in Solar
79
+ Engineering of Thermal Processes, Photovoltaics and Wind, 5th ed,
80
+ New York, USA: J. Wiley and Sons, 2020, pp. 3-44.
81
+ :doi:`10.1002/9781119540328`
74
82
75
- .. [3] Partridge, G . W. and Platt, C. M. R. 1976. Radiative Processes
76
- in Meteorology and Climatology .
83
+ .. [3] J . W. Spencer, "Fourier series representation of the sun," Search,
84
+ vol. 2, p. 172, 1971 .
77
85
78
- .. [4] Duffie, J. A. and Beckman, W. A. 1991. Solar Engineering of
79
- Thermal Processes, 2nd edn. J. Wiley and Sons, New York.
86
+ .. [4] R. G. Allen et al., Eds. The ASCE standardized reference
87
+ evapotranspiration equation. Reston, Va.: American Society of Civil
88
+ Engineers, 2005. :doi:`10.1061/9780784408056`
80
89
81
- .. [5] ASCE, 2005. The ASCE Standardized Reference Evapotranspiration
82
- Equation, Environmental and Water Resources Institute of the American
83
- Civil Engineers, Ed. R. G. Allen et al.
90
+ .. [6] I. Reda, A. Andreas, "Solar position algorithm for solar
91
+ radiation applications" NREL Golden, USA. NREL/TP-560-34302,
92
+ Revised 2008. :doi:`10.2172/15003974`
84
93
"""
85
94
86
95
to_doy , to_datetimeindex , to_output = \
0 commit comments