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
We can improve vehicle response in control regions where we desire little force (<10 N) by making Azi aware of the lower constraints on thrust.
Current schema:
u < u_max = 100
u > u_min = -70
New schema:
u < u_max = 100
u > u_min = -70
abs(u) > 10
if norm(wrench.xyz == 0): u = 0
With this, if you command a force less than 10 N, what the thrusters typically bottom out at, Azi will angle the thrusters further out to allow smaller forces, instead of commanding un-achievable small thrusts.
The text was updated successfully, but these errors were encountered:
- Allows very low force ( < 10 Newtons) manuevering
- Accomplished with addition of absolute value constraints
Conflicts:
azi_drive/src/azimuth_drive/azimuth_drive.py
We can improve vehicle response in control regions where we desire little force (<10 N) by making Azi aware of the lower constraints on thrust.
Current schema:
New schema:
With this, if you command a force less than 10 N, what the thrusters typically bottom out at, Azi will angle the thrusters further out to allow smaller forces, instead of commanding un-achievable small thrusts.
The text was updated successfully, but these errors were encountered: