IMU alignment code progress

We received our IMU!Brian is busy making it talk to the Arduino board. Meanwhile, I have been working on the alignment code. The alignment proccess uses the IMU's sensors to determine its orientation (roll, pitch, and heading) while stationary. I spent the last few days writing code based upon this document. Sorry, it's not free. Based upon the equations given in the paper, I wrote a Kalman filter that iteratively converges to the true orientation while the IMU is stationary. I wrote the Kalman code in Matlab and created a Simulink model to provide the sensor inputs. But that is as far as I got. Apparently, the student version of Simulink has a limit of 300 blocks.So I spent all that time and was so excited to see this thing run, and I got nothing. I wanted to pitch my laptop off the balcony.So now I need to do a bunch of work to turn complicated sets of Simulink blocks into a single Matlab block just to get the number of blocks below 300. I have also asked for a quote to upgrade to a new version of Matlab/Simulink, but I already know that is out of my budget.I hope to upload some simulation results as soon as I get the code running.Tom
E-mail me when people leave their comments –

You need to be a member of diydrones to add comments!

Join diydrones

Comments

  • The good news is that the equations of motion and environmental data are really good candidates for S-functions, since one they are tested, you can treat them as block boxes that don't require all the flexibility you get with Simulink blocks. Good luck!
  • Pat,

    Thanks for the reply. I did write the Kalman as an S-block. The 300 blocks is coming from the 6-DOF, environmental data, etc that are all implemented as Simulink blocks. I'm going to have to convert some of those to S-functions, and I am not looking forward to that!
  • Tom,
    If you already wrote the Kalman filter in Matlab, you could implement it in Simulink in an S-function block. You should be able to do the whole thing with very few blocks if you do most of the work in the S-function. You could also write it in C for the S-function, which should hopefully make it more portable for the Arduino.
    Pat
This reply was deleted.