8000 NREL bird clearsky by mikofski · Pull Request #276 · pvlib/pvlib-python · GitHub
[go: up one dir, main page]

Skip to content

NREL bird clearsky #276

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 35 commits into from
May 26, 2017
Merged
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
9d192ba
add requirements.txt to install into virtualenv and ignore venv/
mikofski Dec 3, 2016
457615d
add Bird clearsky model
mikofski Dec 3, 2016
048a837
move test_bird to test_clearsky and move bird to clearsky core module
mikofski Dec 15, 2016
1324267
revert api changes
mikofski Dec 15, 2016
f985b15
add spencer and pvcdron eot to solarposition, fix test and 2pi
mikofski Dec 17, 2016
3ace2a8
add equation of time test
mikofski Jan 7, 2017
850b604
addressing comments in PR 276
mikofski Jan 10, 2017
3b86fd8
add declination formulas to solarposition.py
mikofski Jan 10, 2017
dc4eba6
make bird function signature similar to other clearsky methods
mikofski Jan 11, 2017
ba7eb1e
add all parameters to docstring for bird clearsky
mikofski Jan 11, 2017
e6dcdac
add all parameters to docstring for bird clearsky
mikofski Jan 11, 2017
8877fb0
set night values to zero
mikofski Jan 11, 2017
de0eb33
calculate diffuse_horiz return value prior to return line
mikofski Jan 11, 2017
da8e292
update test_bird() with new function signature
mikofski Jan 14, 2017
b8d93cf
Merge branch 'master' into nrel_bird_clearsky
mikofski Jan 14, 2017
0e69eca
Merge branch 'master' into nrel_bird_clearsky
mikofski Jan 14, 2017
dd97ecc
update docs
mikofski Jan 14, 2017
96af6a7
add missing requirements
mikofski Jan 14, 2017
926c28b
add it to min build too
mikofski Jan 14, 2017
ca7649e
remove dependence on xlrd
mikofski Jan 21, 2017
f2fc729
move low precision solar position correlations to new api section
mikofski Jan 23, 2017
977bc8f
test keywords in bird clear sky model
mikofski Jan 23, 2017
09d0b7e
test scalars in bird model
mikofski Jan 23, 2017
cb562ef
add test data file
mikofski Jan 23, 2017
1976721
Merge branch 'master' into nrel_bird_clearsky
mikofski Feb 4, 2017
bc5eb18
lower case Spencer71 in docs and solarposition
mikofski Feb 4, 2017
a4b9edd
Merge branch 'master' into nrel_bird_clearsky
mikofski Feb 7, 2017
76db3c7
Merge branch 'master' into nrel_bird_clearsky
mikofski May 17, 2017
513cd95
fix lower case 's' in spencer71
mikofski May 17, 2017
dc528be
output OrderedDict or DataFrame
mikofski May 17, 2017
ca8adf8
fix link
mikofski May 17, 2017
1e14e5f
update docstring returns to OrderedDict/DataFrame
mikofski May 18, 2017
b4e5cce
provide note on solar vs apparent zenith and testing
mikofski May 18, 2017
2a0458a
quotes for 'direct_horizontal' in docstring returns
mikofski May 18, 2017
eafb9cd
add tests for solarposition low-accuracy formulas
mikofski May 25, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update docstring returns to OrderedDict/DataFrame
  • Loading branch information
mikofski committed May 18, 2017
commit 1e14e5fc19aa1af1a6cb0a52bc6d9f84beab4ba7
11 changes: 3 additions & 8 deletions pvlib/clearsky.py
Original file line number Diff line number Diff line change
Expand Up @@ -755,14 +755,9 @@ def bird(zenith, airmass_relative, aod380, aod500, precipitable_water,

Returns
-------
direct_beam : numeric
Direct beam [W/m^2]
direct_horiz : numeric
Direct horizontal [W/m^2]
global_horiz : numeric
Global horizontal [W/m^2]
diffuse_horiz : numeric
Diffuse horizontal [W/m^2]
clearsky : DataFrame (if Series input) or OrderedDict of arrays
DataFrame/OrderedDict contains the columns/keys
``'dhi', 'dni', 'ghi', direct_horizontal`` in [W/m^2].

See also
--------
Expand Down
0