My work is primarily focused on applying numerical methods to closed-form equations involving spaceflight parameters. This repository is composed of a writeup and its associated code and static files.
.
├── output CPDF of writeup, compiled frequently
├── plots Plots included in the writeup, generated using matplotlib or GNU Octave
├── presentation Initial writeup TeX code and PDF
├── src Python module (NumericalAnalysis) + some Octave codes
├── static Static PDFs
├── tex TeX source files for the writeup
└── writeup.tex Master TeX source file for writeup
You will need the following to play around with the code and writeup sources:
- GNU Octave
- Python 3 and the following modules
numpy
scipy
matplotlib
- A LaTeX distribution
Below are some resources and methods I found useful.
- Curve fitting: https://www.dam.brown.edu/people/alcyew/handouts/leastsq.pdf
- Bisection method: https://en.wikipedia.org/wiki/Bisection_method
- Newton's method: https://en.wikipedia.org/wiki/Newton%27s_method
- Lagrange interpolation: https://www.neelsomani.com/blog/chebyshev-points-for-lagrange-interpolation.php