Skip to content

Commit a9ebd92

Browse files
cedricleroywholmgren
authored andcommitted
Add note clearksky Ineichen term b (#814)
Thanks!
1 parent c420395 commit a9ebd92

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pvlib/clearsky.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,10 @@ def ineichen(apparent_zenith, airmass_absolute, linke_turbidity,
114114
# reinsert tl nans
115115
ghi = cg1 * dni_extra * cos_zenith * tl / tl * np.fmax(ghi, 0)
116116

117-
# BncI = "normal beam clear sky radiation"
117+
# From [1] (Following [2] leads to 0.664 + 0.16268 / fh1)
118+
# See https://github.com/pvlib/pvlib-python/pull/808
118119
b = 0.664 + 0.163/fh1
120+
# BncI = "normal beam clear sky radiation"
119121
bnci = b * np.exp(-0.09 * airmass_absolute * (tl - 1))
120122
bnci = dni_extra * np.fmax(bnci, 0)
121123

0 commit comments

Comments
 (0)