Simulating the performace of an air propulsion system as an alternative to solid rocket motors.
Simulating the performance of an air propulsion system as an alternative to solid rocket motors.
author:
- name: Anson Biggs
url: https://ansonbiggs.com
@ -18,13 +18,12 @@ categories:
bibliography: ../../citations.bib
---
Boilerplate intro about why all of this was done
For my team was tasked with designing a system capable of moving mining equipment and materials around the surface of the Moon using a propolsive landing. The system had to be tested on earth with something that was feasible for our team to build in 2 semesters. One of the first considerations my capstone advisor wanted was to test the feasibility of an air propulsion system instead of the obvious solution that of using solid rocket motors. This document is really just _napkin math_ to determine if the system is even feasibly and is not mean't to be a rigorous study of an air propulsion system which would easily keep a capstone team busy by itself.
This code is just the setup, using values scraped from various parts of the world wide web.
An off the shelf paintball gun tank was used for the pressure vessel. This was chosen because they are very high pressure for their weight, and are designed to be bumped around.
```{julia}
# Tank https://www.amazon.com/Empire-Paintball-BASICS-Pressure-Compressed/dp/B07B6M48SR/
@ -46,13 +46,19 @@ V = (85 ± 5)u"inch^3"
P0 = (4200.0 ± 300)u"psi"
Wtank = (2.3 ± 0.2)u"lb"
Pmax = (250 ± 50)u"psi" # Max Pressure that can come out the nozzle
```
Wsolenoid = 1.5u"kg"
The nozzle diameter was changed until the air prop system had a _burn time_ similar to a G18ST rocket motor.
```{julia}
# Params
d_nozzle = ((1 // 18) ± 0.001)u"inch"
a_nozzle = (pi / 4) * d_nozzle^2
```
These are just universal values for what a normal day would look like in Arizona. [@cengel_thermodynamics]
```{julia}
# Universal Stuff
P_amb = (1 ± 0.2)u"atm"
γ = 1.4 ± 0.05
@ -62,18 +68,20 @@ T = (300 ± 20)u"K"
This is the actual simulation. Maybe throw some references in and explain some equations.
The rocket equation is pretty sick:
The following equations also came from [@cengel_thermodynamics]
The rocket equation is pretty sick[@sutton_rocket_2001, eq: 2-14]:
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.