Skip to content

Commit

Permalink
Merge pull request #42 from toppers/fix-no41
Browse files Browse the repository at this point in the history
fix #41
  • Loading branch information
tmori committed Dec 8, 2023
2 parents 890f464 + 1f10bd3 commit 01ad1ce
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ void DroneDynamicsGroundFrame::run_y(const DroneThrustType &thrust, const DroneT
this->next_velocity.data.y =
this->delta_time_sec *
(
- (thrust.data / this->param_mass ) * ( this->cache.cos_phi * this->cache.sin_theta * this->cache.sin_psi - this->cache.sin_phi * this->cache.sin_psi )
- (thrust.data / this->param_mass ) * ( this->cache.cos_phi * this->cache.sin_theta * this->cache.sin_psi - this->cache.sin_phi * this->cache.cos_psi )
- this->param_drag * this->velocity.data.y
)
+
Expand Down

0 comments on commit 01ad1ce

Please sign in to comment.