pvlib.tracking.calc_surface_orientation#
- pvlib.tracking.calc_surface_orientation(tracker_theta, axis_tilt=0, axis_azimuth=0)[source]#
Calculate the surface tilt and azimuth angles for a given tracker rotation.
- Parameters:
tracker_theta (numeric) – Tracker rotation angle as a right-handed rotation around the axis defined by
axis_tilt
andaxis_azimuth
. For example, withaxis_tilt=0
andaxis_azimuth=180
,tracker_theta > 0
results insurface_azimuth
to the West whiletracker_theta < 0
results insurface_azimuth
to the East. [degree]axis_tilt (float, default 0) – The tilt of the axis of rotation with respect to horizontal.
axis_tilt
must be >= 0 and <= 90. [degree]axis_azimuth (float, default 0) – A value denoting the compass direction along which the axis of rotation lies. Measured east of north. [degree]
- Returns:
dict or DataFrame – Contains keys
'surface_tilt'
and'surface_azimuth'
representing the module orientation accounting for tracker rotation and axis orientation. [degree]
References