diff --git a/_posts/2021-04-01-air-propulsion-simulation/air-propulsion-simulation.Rmd b/_posts/2021-04-01-air-propulsion-simulation/air-propulsion-simulation.Rmd index ca19bd2..531da8d 100644 --- a/_posts/2021-04-01-air-propulsion-simulation/air-propulsion-simulation.Rmd +++ b/_posts/2021-04-01-air-propulsion-simulation/air-propulsion-simulation.Rmd @@ -15,6 +15,7 @@ output: categories: - Julia - Capstone +bibliography: ../../citations.bib --- Boilerplate intro about why all of this was done @@ -37,7 +38,7 @@ using Measurements using Measurements: value, uncertainty ``` -This code is just the setup the setup, using values scraped from various parts of the world wide web. +This code is just the setup, using values scraped from various parts of the world wide web. ```{julia} # Tank https://www.amazon.com/Empire-Paintball-BASICS-Pressure-Compressed/dp/B07B6M48SR/ @@ -64,7 +65,7 @@ This is the actual simulation. Maybe throw some references in and explain some e The rocket equation is pretty sick: $$T = \dot{m} \cdot v_\text{Exit} + A_\text{Nozzle} \cdot (P - P_\text{Ambient}) $$ -And thats about all you need to get to the moon. +And thats about all you need to get to the moon[@curtis_orbital]. ```{julia} let diff --git a/_posts/2021-04-01-air-propulsion-simulation/air-propulsion-simulation.html b/_posts/2021-04-01-air-propulsion-simulation/air-propulsion-simulation.html index eec58dc..d2960dd 100644 --- a/_posts/2021-04-01-air-propulsion-simulation/air-propulsion-simulation.html +++ b/_posts/2021-04-01-air-propulsion-simulation/air-propulsion-simulation.html @@ -108,10 +108,12 @@ code span.wa { color: #5e5e5e; font-style: italic; } /* Warning */ + + @@ -1498,7 +1500,7 @@ Show code using Measurements: value, uncertainty -
This code is just the setup the setup, using values scraped from various parts of the world wide web.
+This code is just the setup, using values scraped from various parts of the world wide web.
# Tank https://www.amazon.com/Empire-Paintball-BASICS-Pressure-Compressed/dp/B07B6M48SR/
= (85 ± 5)u"inch^3"
@@ -1520,7 +1522,7 @@ Show code
V
This is the actual simulation. Maybe throw some references in and explain some equations.
The rocket equation is pretty sick:
-\[T = \dot{m} \cdot v_\text{Exit} + A_\text{Nozzle} \cdot (P - P_\text{Ambient}) \] And thats about all you need to get to the moon.
+\[T = \dot{m} \cdot v_\text{Exit} + A_\text{Nozzle} \cdot (P - P_\text{Ambient}) \] And thats about all you need to get to the moon(Curtis 2020).
let
= 0.0u"s"
@@ -1552,7 +1554,13 @@ Show code
t

+Big conclusion about things.
+
+
+Curtis, Howard D. 2020. Orbital Mechanics for Engineering Students. Fourth edition. Butterworth-Heinemann Publications.
+
+
If you see mistakes or want to suggest changes, please create an issue on the source repository.