I am currently working on a project for a Lego Mindstorms EV3 autopilot using Matlab/Simulink. Basically, I am using a closed loop control system with a PID controller for the control of the control surfaces. I'm using Simulink to construct the autopilot block diagram. The feedback loop consists of the gyro sensor. Now the gyro sensor is not accurate in the sense that it has some offset. It does not have any bias or noise. I need to get rid of the offset to give me the actual angle of the device. How could I solve this problem? I could use a low pass filter but how do I know what transfer function to use in Simulink?
Asked
Active
Viewed 581 times
2 Answers
1
Not sure about matlab/simulink, but siply substracting the offset is not possible? I would solve it in code, just
...
dx=readDx();
dx=dx-offsetdx;
...
gilhad
- 453
- 1
- 3
- 12
0
One reason is that the gyro is not being software reset. A hardware reset(unplugging and plugging in gyro) might help too
NikolaPi
- 33
- 6
Thanks for you reply. This project is required to use simulink. I just don't know how to achieve this in simulink.
– Mason Apr 30 '17 at 14:37-offsetdx] and numerator [1] – gilhad Apr 30 '17 at 21:21