Quadcopter_simulator icon indicating copy to clipboard operation
Quadcopter_simulator copied to clipboard

A quadcopter simulator with single and multi-quad simulations

Results 6 Quadcopter_simulator issues
Sort by recently updated
recently updated
newest added

I run the code, then "QEventDispatcherWin32::wakeUp:Failed to post a message"

I couldn't run the code as you described in ReadMe and terminal in Pycharm gives errors like in the screenshot below. Do you know what might be the problem? (I...

Hi there, Just a quick note that if you give the controller a fixed goal and let it run for a while you get pretty good x-y control, but very...

Hi, I noticed the implementation of the state space is not correct, in particular you take the time derivative of angular velocity vector to be equal to the second derivative...

In the file "quadcopter.py",line 73: `x_dotdot = np.array([0,0,-self.quads[key]['weight']*self.g]) + np.dot(self.rotation_matrix(self.quads[key]['state'][6:9]),np.array([0,0,(self.quads[key]['m1'].thrust + self.quads[key]['m2'].thrust + self.quads[key]['m3'].thrust + self.quads[key]['m4'].thrust)]))/self.quads[key]['weight'] ` I think it should be : `x_dotdot = np.array([0,0,-self.g]) + np.dot(self.rotation_matrix(self.quads[key]['state'][6:9]),np.array([0,0,(self.quads[key]['m1'].thrust + self.quads[key]['m2'].thrust...

Hey I'm using your code for an AI project. I thought I'd let you know that I fixed your ctrl+c issue when killing threads.