Closed
Description
In tracking.singleaxis
the minimum angle of the tracker is assumed to be opposite of the maximum angle, although in some cases the minimum angle could be different. NREL SAM doesn't support that but PVsyst does.
In order to support non symmetrical limiting angles, tracking.singleaxis
should have another, optional, input, min_angle
. By default, if not supplied (i.e. value is None
), the current behavior (min_angle = -max_angle
) would apply.
Can I propose a PR for this, with modifications to tracking.singleaxis
, tracking.SingleAxisTracker
and to pvsystem.SingleAxisTrackerMount
+ corresponding tests?