-
Notifications
You must be signed in to change notification settings - Fork 1.1k
fix erbs near zenith=90 #683
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2152,7 +2152,7 @@ def _gti_dirint_gte_90_kt_prime(aoi, solar_zenith, solar_azimuth, times, | |
return kt_prime_gte_90 | ||
|
||
|
||
def erbs(ghi, zenith, doy): | ||
def erbs(ghi, zenith, datetime_or_doy, min_cos_zenith=0.065, max_zenith=87): | ||
r""" | ||
Estimate DNI and DHI from GHI using the Erbs model. | ||
|
||
|
@@ -2179,8 +2179,15 @@ def erbs(ghi, zenith, doy): | |
Global horizontal irradiance in W/m^2. | ||
zenith: numeric | ||
True (not refraction-corrected) zenith angles in decimal degrees. | ||
doy: scalar, array or DatetimeIndex | ||
The day of the year. | ||
datetime_or_doy : int, float, array, pd.DatetimeIndex | ||
Day of year or array of days of year e.g. | ||
pd.DatetimeIndex.dayofyear, or pd.DatetimeIndex. | ||
min_cos_zenith : numeric, default 0.065 | ||
Minimum value of cos(zenith) to allow when calculating global | ||
clearness index `kt`. Equivalent to zenith = 86.273 degrees. | ||
max_zenith : numeric, default 87 | ||
Maximum value of zenith to allow in DNI calculation. DNI will be | ||
set to 0 for times with zenith values greater than `max_zenith`. | ||
|
||
Returns | ||
------- | ||
|
@@ -2205,14 +2212,10 @@ def erbs(ghi, zenith, doy): | |
disc | ||
""" | ||
|
||
dni_extra = get_extra_radiation(doy) | ||
dni_extra = get_extra_radiation(datetime_or_doy) | ||
|
||
# This Z needs to be the true Zenith angle, not apparent, | ||
# to get extraterrestrial horizontal radiation) | ||
i0_h = dni_extra * tools.cosd(zenith) | ||
|
||
kt = ghi / i0_h | ||
kt = np.maximum(kt, 0) | ||
kt = clearness_index(ghi, zenith, dni_extra, min_cos_zenith=min_cos_zenith, | ||
max_clearness_index=1) | ||
|
||
# For Kt <= 0.22, set the diffuse fraction | ||
df = 1 - 0.09*kt | ||
|
@@ -2229,14 +2232,18 @@ def erbs(ghi, zenith, doy): | |
dhi = df * ghi | ||
|
||
dni = (ghi - dhi) / tools.cosd(zenith) | ||
bad_values = (zenith > max_zenith) | (ghi < 0) | (dni < 0) | ||
dni = np.where(bad_values, 0, dni) | ||
# ensure that closure relationship remains valid | ||
dhi = np.where(bad_values, ghi, dhi) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. very nice! 🚀 |
||
|
||
data = OrderedDict() | ||
data['dni'] = dni | ||
data['dhi'] = dhi | ||
data['kt'] = kt | ||
|
||
if isinstance(dni, pd.Series): | ||
data = pd.DataFrame(data) | ||
if isinstance(datetime_or_doy, pd.DatetimeIndex): | ||
data = pd.DataFrame(data, index=datetime_or_doy) | ||
|
||
return data | ||
|
||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice 🚀