You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (tauz >= 0) { if (fx >= 0) { //forward thrust on the left thruster will be limiting factor max_fx = (MAX_FWD_THRUST - left_thrust) * 2; fx = std::min(max_fx,fx); }
hello, when the tauz is larger than zero, the left_thrust will be negative, so why is the max_fx larger than MAX_FWD_THRUST
The text was updated successfully, but these errors were encountered:
if (tauz >= 0) { if (fx >= 0) { //forward thrust on the left thruster will be limiting factor max_fx = (MAX_FWD_THRUST - left_thrust) * 2; fx = std::min(max_fx,fx); }
hello, when the tauz is larger than zero, the left_thrust will be negative, so why is the max_fx larger than MAX_FWD_THRUST
The text was updated successfully, but these errors were encountered: