Skip to content
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

Singleaxis tracking with non-parallel slope #823

Merged
merged 46 commits into from
Sep 5, 2020
Merged
Show file tree
Hide file tree
Changes from 42 commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
e2b7314
add trackers on non-parallel slopes
mikofski Nov 22, 2019
8e18f54
reverse sign for test
mikofski Nov 22, 2019
68dc85a
update test data for sat w/slope
mikofski Nov 22, 2019
3268f26
fix stickler issues
mikofski Nov 22, 2019
b97e2c8
Merge branch 'master' into singleaxis_tracking_wslope
mikofski Nov 27, 2019
e6f679f
add side_slope argument to docstring
mikofski Dec 3, 2019
ff62aa9
change max_angle to conform to convention
mikofski Dec 4, 2019
3ea0dcf
stickler fixes: L459 whitespace, L456 long-line
mikofski Dec 4, 2019
f46d85d
Merge branch 'master' into singleaxis_tracking_wslope
mikofski Dec 4, 2019
202f14e
update test data for max_angle convention
mikofski Dec 4, 2019
8fb75bb
update to numpy-1.12.0
mikofski Dec 4, 2019
c88f061
Merge branch 'numpy-1.12.0' into singleaxis_tracking_wslope
mikofski Dec 4, 2019
287a57e
Merge branch 'master' into singleaxis_tracking_wslope
mikofski Dec 17, 2019
8c00037
use horizontal distance between rows
mikofski Jan 7, 2020
1e42857
update api docs for trackers on side slope
mikofski Jan 7, 2020
1796ff6
Merge branch 'master' into singleaxis_tracking_wslope
mikofski Jan 7, 2020
5dc2c54
update what's new for v0.7.1 for trackers with side-slope
mikofski Jan 7, 2020
7704ae7
Merge branch 'master' into singleaxis_tracking_wslope
mikofski Feb 9, 2020
306c194
use DATA_DIR from conftest
mikofski Feb 9, 2020
316ae7a
use axis tilt instead of tracker zenith
mikofski Feb 9, 2020
24e19f2
change calc tracker axis tilt to degrees
mikofski Feb 9, 2020
4fdc94d
clarify side slope relative to horizontal
mikofski Feb 9, 2020
91f3405
Merge branch 'master' into singleaxis_tracking_wslope
mikofski Aug 27, 2020
ec1adff
update side slope angle convention
mikofski Aug 31, 2020
a27e7ce
fix stickler space complaints, see if indent helps docstring code blocks
mikofski Aug 31, 2020
8e85f77
apply suggested comments:
mikofski Sep 1, 2020
7f6f65e
Merge branch 'master' into singleaxis_tracking_wslope
mikofski Sep 1, 2020
b9c6d00
resolve conflict in what's new v0.8.0
mikofski Sep 1, 2020
b8ed847
use implementation procedure outline in NREL tech report
mikofski Sep 1, 2020
0be974f
fix #824 update tests
mikofski Sep 1, 2020
140e9b8
add units to side slope
mikofski Sep 1, 2020
2e54ba3
add see alsos
mikofski Sep 1, 2020
3f5af19
fix docstring for calc_tracker_side_slope, rm rel_rot
mikofski Sep 1, 2020
658060b
improve side-slope docstring, define rh rotation convention
mikofski Sep 1, 2020
b74120c
Merge branch 'master' into singleaxis_tracking_wslope
mikofski Sep 2, 2020
96362f6
fix arg order in calc side slope
mikofski Sep 3, 2020
e0dfb08
update SingleAxisTracker class with side-slope
mikofski Sep 3, 2020
e210b82
add missing whitespace after comma in test_tracking.py
mikofski Sep 3, 2020
6ed62ff
catch invalid warnings for arccos in singleaxis
mikofski Sep 3, 2020
80c4491
update whats new v0.8.0
mikofski Sep 3, 2020
9e397ff
close #1041 prune old comments
mikofski Sep 3, 2020
879ba91
remove redundant "tracker" from new sat funcs
mikofski Sep 3, 2020
b94f60e
code review suggestions to clarify docs/comments
mikofski Sep 3, 2020
827fb1a
revise slope-aware tracker terms for clarity:
mikofski Sep 4, 2020
3ec39c0
improve docstrings
mikofski Sep 4, 2020
3058f8f
fix typos, py:class, not pv:class, in localized single-axis tracker
mikofski Sep 4, 2020
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
2 changes: 2 additions & 0 deletions docs/sphinx/source/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,8 @@ Functions
:toctree: generated/

tracking.singleaxis
tracking.calc_axis_tilt
tracking.calc_system_side_slope


.. _iotools:
Expand Down
10 changes: 10 additions & 0 deletions docs/sphinx/source/whatsnew/v0.8.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,23 @@ Enhancements
* Added *racking_model*, *module_type*, and *temperature_model_parameters* to
PVSystem, LocalizedPVSystem, SingleAxisTracker, and
LocalizedSingleAxisTracker repr methods. (:issue:`1027`)
* Added :py:func:`~pvlib.tracking.calc_axis_tilt` and
:py:func:`~pvlib.tracking.calc_system_side_slope` to calculate the
tracker axes tilt and the side-slope angle, which is perpendicular to the
tracker axes for trackers on sloped terrain that is not parallel to the axes,
such as a north-south tracker on an south-east slope. (:pull:`823`)
* Added ``side_slope`` argument to :py:func:`~pvlib.tracking.singleaxis` and
:py:func:`~pvlib.tracking.SingleAxisTracker` which defaults to zero. Use
:py:func:`~pvlib.tracking.calc_system_side_slope` to calculate the
side-slope angle if necessary. (:pull:`823`)
* Added ability for :py:func:`pvlib.soiling.hsu` to accept arbitrary time intervals. (:pull:`980`)

Bug fixes
~~~~~~~~~
* Fixed unit and default value errors in :py:func:`pvlib.soiling.hsu`. (:pull:`977`, :pull:`980`)
* Handle NUL characters and fix version column dtype in
:py:func:`~pvlib.iotools.crn.read_crn`. (:issue:`1025`)
* Fix low sun angle tracker rotation calculation. (:issue:`824`)

Testing
~~~~~~~
Expand Down
Loading