udacity / dlnd-issue-reports

5 stars 0 forks source link

[Quadcopter Project ] equation of angular position equation is wrongly given in physics_sim.py #549

Closed Vivekkmr91 closed 6 years ago

Vivekkmr91 commented 6 years ago

equation of angular position equation is wrongly given in physics_sim.py: It is given as angles = self.pose[3:] + self.angular_v self.dt + 0.5 self.angular_accels self.angular_accels self.dt However it should be angles = self.pose[3:] + self.angular_v self.dt + 0.5 self.angular_accels * self.dt**2

lcrucks commented 6 years ago

Internal ticket: https://udacity.atlassian.net/browse/MLND-1309

lcrucks commented 6 years ago

Fixed