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
The def thruster is used ' thrust_decrease_mask = torch.sign(self.curr_thrust) * torch.sign(des_thrust - self.curr_thrust)' to determine whether the drone is ascending or descending.This assumes that the value of 'self.curr_thrust' is positive.But when we try to descending the drone at a large acceleration,the value of 'self.curr_thrust' is negative.In this situation,the judgement is wrong.
Is my understanding correct?I hope you’ll share your thoughts.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
class thruster:
......
def compute(self, control_action: MultiRotorActions) -> MultiRotorActions:
"""Advance the thruster state one step.
The def thruster is used ' thrust_decrease_mask = torch.sign(self.curr_thrust) * torch.sign(des_thrust - self.curr_thrust)' to determine whether the drone is ascending or descending.This assumes that the value of 'self.curr_thrust' is positive.But when we try to descending the drone at a large acceleration,the value of 'self.curr_thrust' is negative.In this situation,the judgement is wrong.
Is my understanding correct?I hope you’ll share your thoughts.
Beta Was this translation helpful? Give feedback.
All reactions