Closed gre-42 closed 2 years ago
The parameters ax_pos_safe and ax_neg_safe are both squared (see code below), meaning that the sign of ax_neg_safe is thrown away. ax_neg_safe therefore behaves identically to ax_pos_safe.
ax_pos_safe
ax_neg_safe
https://github.com/TUMFTM/global_racetrajectory_optimization/blob/a9995e2f5407f22eb7fb9dceac2b71a35276bb41/opt_mintime_traj/src/opt_mintime.py#L781-L784
I just saw the fmaxand fmin difference in both equations, closing the issue because it is therefore invalid.
fmax
fmin
The parameters
ax_pos_safe
andax_neg_safe
are both squared (see code below), meaning that the sign ofax_neg_safe
is thrown away.ax_neg_safe
therefore behaves identically toax_pos_safe
.https://github.com/TUMFTM/global_racetrajectory_optimization/blob/a9995e2f5407f22eb7fb9dceac2b71a35276bb41/opt_mintime_traj/src/opt_mintime.py#L781-L784