Icarus Rocket Calculator App
I have started working on my next project, which is an Android App. Basically, I have decided to take some of the equations from the Icarus Project Report, and add them to an app. Users would be able to select an equations from a list, (filtered by equations type) and then they will be given the equation itself, in mathematical form, as well as text fields, where they will be able to input the required parameters to the app, and it will display the result.
I have a similar type of app on the play store, called “Power Wizard“, which calculates a variety of equations for electrical science, renewable energy, battery charging, etc. This app is now several years old and yet it is still selling well, so I think a new type of calculator app is worth trying. This app could be useful for not just rocketry hobbyists, but physics students, game developers, etc etc.
The hardest part so far has been trying to display mathematical formula in java for Android. I have learned that there is really no native way to do this, one must use a library. I used mathJax. This library, and in fact all of the libraries I have seen for Android, allow Tex commands to be used in android to display mathematical formulae. This works out very well for me because I have already got a Tex file full of the equations from the Icarus Project, so I should be able to just copy and paste them in. Of course, this will just display the equations, I won’t be able to perform calculations with them in this form.
To get mathJax to work, I followed THIS very useful tutorial.






























