Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 0 additions & 6 deletions benchmarks/benchmarks/tracking.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ def setup(self):
self.solar_position = solarposition.get_solarposition(self.times,
self.lat,
self.lon)
self.tracker = tracking.SingleAxisTracker()

def time_singleaxis(self):
with np.errstate(invalid='ignore'):
Expand All @@ -28,8 +27,3 @@ def time_singleaxis(self):
max_angle=60,
backtrack=True,
gcr=0.45)

def time_tracker_singleaxis(self):
with np.errstate(invalid='ignore'):
self.tracker.singleaxis(self.solar_position.apparent_zenith,
self.solar_position.azimuth)
3 changes: 3 additions & 0 deletions docs/sphinx/source/whatsnew/v0.9.4.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ Documentation

Benchmarking
~~~~~~~~~~~~~
* Removed ``time_tracker_singleaxis`` function from tracking.py (:issue:`1508`, :pull:`1535`)


Requirements
Expand All @@ -43,3 +44,5 @@ Contributors
* Christian Orner (:ghuser:`chrisorner`)
* Saurabh Aneja (:ghuser:`spaneja`)
* Marcus Boumans (:ghuser:`bowie2211`)
* Naman Priyadarshi (:ghuser:`Naman-Priyadarshi`)