A digital control system model of the pixhawk quadrotor was constructed in scicoslab along with a continuous model of the quadrotor dynamics (the visual model is an arducopter). The user can input the guidance commands to the autopilot through sliders. As the video shows, the yaw response it not optimal, which also happens in the actual system. Using the mavsim Scicoslab toolbox (https://github.com/openmav/mavsim/) , the model can be simulated and then, once the system has been correctly identified, the dynamics can be linearized. The linear model of the system makes the problematic modes clear and aids in designing an improved controller.
You need to be a member of diydrones to add comments!
Comments
Hi James. Will play a bit with it and probably test without the openscenegraph (replace that with a scope).I havent had much time to test the JSBSim demos unfortunately.
I don't have experience with DLLs and cmake so I cant contribute there.
What I am looking for is a free alternative to Matlab for running simulations. Scicos / mavsim looks like it might be a candidate.
Here are the options I see for running mavsim on windows:
1. You can delete the openscenegraph visualization block and replace it with a scope for now.
2. We can get the jsbsimcomm block properly working for the quadrotors. I have an arducopter jsbsim model that I created for this but haven't checked everything is working. I did add the 4 motor rpm inputs, but might take some more work. With this you could use the udp as you suggested. Have you had a chance to try this with the JSBSim demos?
3. If you have some idea how to get windows dll's to work properly with cmake we can try to tackle the windows cmake build.
Hi again James.
Thanks for the advice regarding the package. I skipped that and ran sciscoslab from the directory where the ini file resides.
I now got it running on my Virtual Box running Ubuntu. However running on the Virtual Box is very slow. I think that a native Linux box or a native Windows box will be required for proper execution speed. When trying the yaw slider, it literally takes minutes for something to happen in the 3D view window showing the helicopter (on my box) .
I also got some malloc errors when trying to run the analysis as well when I ran the simulation.
Will it be a lot of work to get this running on Windows altogether? I may install cmake and give it a try. However time is limited.
I've improved the wiki to address these issues and help you guys out:
https://github.com/openmav/mavsim/wiki/Tutorials
https://github.com/openmav/mavsim/wiki/Build-from-Source
I've added the pixhawk quadrotor example to the Tutorial page and added the hint about creating the /usr/local/share directory if it doesn't exist for package installation. As you are going through this process if you feel anything is unclear or would help other people feel free to contribute to the wiki.
Try this before installing the package:
sudo mkdir -p /usr/local/share
You really are better off not installing the package. Since the quad stuff is in development right now not all of the demos will be accessible through the installed toolbox. The recommended way is to run:
./autobuild.sh -> in source build
Then after it finishes building:
From within the mavsim top source direction where the scilab.ini file is:
scicoslab
This will start scicoslab using the ini file and automatically load the toolbox.
It will also start you in the quadrotor project as this is what I have set in the scilab.ini file.
To start the pixhawk example type:
exec pixhawkLinearAnalysis.sce
This will show you the analysis that we've done so far on the design.
To see the scicoslab simulation type:
scicos pixhawk.cos
This will start scicos, the block diagram and simulation environment.
When scicos loads click run at the top of the diagram.
@James
Thank you very much. I'll try to install.
I'm trying to build it from src but seems their git server is down..