Skip to content

Commit

Permalink
updated forces and moments to max new mixing
Browse files Browse the repository at this point in the history
  • Loading branch information
bsutherland333 committed Aug 1, 2024
1 parent 554b450 commit 6e3b24e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rosflight_sim/src/fixedwing_forces_and_moments.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -401,8 +401,8 @@ Eigen::Matrix<double, 6, 1> Fixedwing::update_forces_and_torques(CurrentState x,
{
delta_.a = (act_cmds[0] - 1500.0) / 500.0;
delta_.e = -(act_cmds[1] - 1500.0) / 500.0;
delta_.t = (act_cmds[2] - 1000.0) / 1000.0;
delta_.r = -(act_cmds[3] - 1500.0) / 500.0;
delta_.t = (act_cmds[4] - 1000.0) / 1000.0;
delta_.r = -(act_cmds[2] - 1500.0) / 500.0;

Actuators delta_curr;

Expand Down

0 comments on commit 6e3b24e

Please sign in to comment.