get_total_irradiance vs single_axis_tracker.get_irradiance #1555
-
Hey all, I'm trying to generate some time series POA. For fixed tilt, I've been using Is Thanks everyone! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Howdy @cpullium, it's always important make sure that the values you're passing in match the required parameters. For example, the docs page for get_total_irradiance lists As for whether to use |
Beta Was this translation helpful? Give feedback.
Howdy @cpullium, it's always important make sure that the values you're passing in match the required parameters. For example, the docs page for get_total_irradiance lists
surface_tilt
andsurface_azimuth
(nottracker_theta
) as parameters. Conceptually,get_total_irradiance
is agnostic to any mounting strategy -- what matters for transposition is the collector surface's tilt & azimuth, and it doesn't make any difference whether that orientation came from a fixed rack or a SAT. Note that the dataframe returned fromtracking.singleaxis()
containssurface_tilt
andsurface_azimuth
in addition totracker_theta
.As for whether to use
tracking.singleaxis
orSingleAxisTracker
-- pvlib's foundatio…