fix image scaling
@ -126,7 +126,6 @@ plot(df.Time .|> ustrip, thrust_values,
|
|||||||
fillalpha=.2,label="Thrust",
|
fillalpha=.2,label="Thrust",
|
||||||
xlabel="Time (s)",
|
xlabel="Time (s)",
|
||||||
ylabel="Thrust (N)",
|
ylabel="Thrust (N)",
|
||||||
size = (1200, 800),
|
|
||||||
)
|
)
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -139,7 +138,7 @@ f15 = CSV.read("Estes_F15.csv", DataFrame);
|
|||||||
g8 = CSV.read("AeroTech_G8ST.csv", DataFrame);
|
g8 = CSV.read("AeroTech_G8ST.csv", DataFrame);
|
||||||
|
|
||||||
|
|
||||||
plot(air.Time, air.Thrust, label="Air Propulsion", fillalpha=.1, legend=:topleft, size = (1200, 800));
|
plot(air.Time, air.Thrust, label="Air Propulsion", legend=:topleft);
|
||||||
|
|
||||||
for (d, l) in [(f10, "F10"), (f15, "F15"), (g8, "G8ST")]
|
for (d, l) in [(f10, "F10"), (f15, "F15"), (g8, "G8ST")]
|
||||||
plot!(d[!,"Time (s)"], d[!, "Thrust (N)"], label=l);
|
plot!(d[!,"Time (s)"], d[!, "Thrust (N)"], label=l);
|
||||||
|
@ -1576,11 +1576,10 @@ Show code
|
|||||||
<span id="cb6-11"><a href="#cb6-11" aria-hidden="true" tabindex="-1"></a> fillalpha<span class="op">=</span><span class="fl">.2</span><span class="op">,</span>label<span class="op">=</span><span class="st">"Thrust"</span><span class="op">,</span></span>
|
<span id="cb6-11"><a href="#cb6-11" aria-hidden="true" tabindex="-1"></a> fillalpha<span class="op">=</span><span class="fl">.2</span><span class="op">,</span>label<span class="op">=</span><span class="st">"Thrust"</span><span class="op">,</span></span>
|
||||||
<span id="cb6-12"><a href="#cb6-12" aria-hidden="true" tabindex="-1"></a> xlabel<span class="op">=</span><span class="st">"Time (s)"</span><span class="op">,</span> </span>
|
<span id="cb6-12"><a href="#cb6-12" aria-hidden="true" tabindex="-1"></a> xlabel<span class="op">=</span><span class="st">"Time (s)"</span><span class="op">,</span> </span>
|
||||||
<span id="cb6-13"><a href="#cb6-13" aria-hidden="true" tabindex="-1"></a> ylabel<span class="op">=</span><span class="st">"Thrust (N)"</span><span class="op">,</span></span>
|
<span id="cb6-13"><a href="#cb6-13" aria-hidden="true" tabindex="-1"></a> ylabel<span class="op">=</span><span class="st">"Thrust (N)"</span><span class="op">,</span></span>
|
||||||
<span id="cb6-14"><a href="#cb6-14" aria-hidden="true" tabindex="-1"></a> size <span class="op">=</span> (<span class="fl">1200</span><span class="op">,</span> <span class="fl">800</span>)<span class="op">,</span></span>
|
<span id="cb6-14"><a href="#cb6-14" aria-hidden="true" tabindex="-1"></a> )</span></code></pre></div>
|
||||||
<span id="cb6-15"><a href="#cb6-15" aria-hidden="true" tabindex="-1"></a> )</span></code></pre></div>
|
|
||||||
</details>
|
</details>
|
||||||
<div class="figure"><span id="fig:unnamed-chunk-6"></span>
|
<div class="figure"><span id="fig:unnamed-chunk-6"></span>
|
||||||
<img src="air-propulsion-simulation_files/figure-html5/unnamed-chunk-6-J1.png" alt="Air Proplsion Simulation" width="600" />
|
<img src="air-propulsion-simulation_files/figure-html5/unnamed-chunk-6-J1.png" alt="Air Proplsion Simulation" width="300" />
|
||||||
<p class="caption">
|
<p class="caption">
|
||||||
Figure 1: Air Proplsion Simulation
|
Figure 1: Air Proplsion Simulation
|
||||||
</p>
|
</p>
|
||||||
@ -1598,7 +1597,7 @@ Show code
|
|||||||
<span id="cb7-4"><a href="#cb7-4" aria-hidden="true" tabindex="-1"></a>g8 <span class="op">=</span> CSV.<span class="cn">read</span>(<span class="st">"AeroTech_G8ST.csv"</span><span class="op">,</span> DataFrame)<span class="op">;</span></span>
|
<span id="cb7-4"><a href="#cb7-4" aria-hidden="true" tabindex="-1"></a>g8 <span class="op">=</span> CSV.<span class="cn">read</span>(<span class="st">"AeroTech_G8ST.csv"</span><span class="op">,</span> DataFrame)<span class="op">;</span></span>
|
||||||
<span id="cb7-5"><a href="#cb7-5" aria-hidden="true" tabindex="-1"></a></span>
|
<span id="cb7-5"><a href="#cb7-5" aria-hidden="true" tabindex="-1"></a></span>
|
||||||
<span id="cb7-6"><a href="#cb7-6" aria-hidden="true" tabindex="-1"></a></span>
|
<span id="cb7-6"><a href="#cb7-6" aria-hidden="true" tabindex="-1"></a></span>
|
||||||
<span id="cb7-7"><a href="#cb7-7" aria-hidden="true" tabindex="-1"></a>plot(air.<span class="dt">Time</span><span class="op">,</span> air.Thrust<span class="op">,</span> label<span class="op">=</span><span class="st">"Air Propulsion"</span><span class="op">,</span> fillalpha<span class="op">=</span><span class="fl">.1</span><span class="op">,</span> legend<span class="op">=:</span>topleft<span class="op">,</span> size <span class="op">=</span> (<span class="fl">1200</span><span class="op">,</span> <span class="fl">800</span>))<span class="op">;</span></span>
|
<span id="cb7-7"><a href="#cb7-7" aria-hidden="true" tabindex="-1"></a>plot(air.<span class="dt">Time</span><span class="op">,</span> air.Thrust<span class="op">,</span> label<span class="op">=</span><span class="st">"Air Propulsion"</span><span class="op">,</span> legend<span class="op">=:</span>topleft)<span class="op">;</span></span>
|
||||||
<span id="cb7-8"><a href="#cb7-8" aria-hidden="true" tabindex="-1"></a></span>
|
<span id="cb7-8"><a href="#cb7-8" aria-hidden="true" tabindex="-1"></a></span>
|
||||||
<span id="cb7-9"><a href="#cb7-9" aria-hidden="true" tabindex="-1"></a><span class="kw">for</span> (d<span class="op">,</span> l) <span class="kw">in</span> [(f10<span class="op">,</span> <span class="st">"F10"</span>)<span class="op">,</span> (f15<span class="op">,</span> <span class="st">"F15"</span>)<span class="op">,</span> (g8<span class="op">,</span> <span class="st">"G8ST"</span>)]</span>
|
<span id="cb7-9"><a href="#cb7-9" aria-hidden="true" tabindex="-1"></a><span class="kw">for</span> (d<span class="op">,</span> l) <span class="kw">in</span> [(f10<span class="op">,</span> <span class="st">"F10"</span>)<span class="op">,</span> (f15<span class="op">,</span> <span class="st">"F15"</span>)<span class="op">,</span> (g8<span class="op">,</span> <span class="st">"G8ST"</span>)]</span>
|
||||||
<span id="cb7-10"><a href="#cb7-10" aria-hidden="true" tabindex="-1"></a> plot<span class="op">!</span>(d[<span class="op">!,</span><span class="st">"Time (s)"</span>]<span class="op">,</span> d[<span class="op">!,</span> <span class="st">"Thrust (N)"</span>]<span class="op">,</span> label<span class="op">=</span>l)<span class="op">;</span></span>
|
<span id="cb7-10"><a href="#cb7-10" aria-hidden="true" tabindex="-1"></a> plot<span class="op">!</span>(d[<span class="op">!,</span><span class="st">"Time (s)"</span>]<span class="op">,</span> d[<span class="op">!,</span> <span class="st">"Thrust (N)"</span>]<span class="op">,</span> label<span class="op">=</span>l)<span class="op">;</span></span>
|
||||||
@ -1609,7 +1608,7 @@ Show code
|
|||||||
<span id="cb7-15"><a href="#cb7-15" aria-hidden="true" tabindex="-1"></a>ylabel<span class="op">!</span>(<span class="st">"Thrust (N)"</span>)</span></code></pre></div>
|
<span id="cb7-15"><a href="#cb7-15" aria-hidden="true" tabindex="-1"></a>ylabel<span class="op">!</span>(<span class="st">"Thrust (N)"</span>)</span></code></pre></div>
|
||||||
</details>
|
</details>
|
||||||
<div class="figure"><span id="fig:unnamed-chunk-7"></span>
|
<div class="figure"><span id="fig:unnamed-chunk-7"></span>
|
||||||
<img src="air-propulsion-simulation_files/figure-html5/unnamed-chunk-7-J1.png" alt="Rocket Motor Data: [@thrustcurve]" width="600" data-distill-preview=1 />
|
<img src="air-propulsion-simulation_files/figure-html5/unnamed-chunk-7-J1.png" alt="Rocket Motor Data: [@thrustcurve]" width="300" data-distill-preview=1 />
|
||||||
<p class="caption">
|
<p class="caption">
|
||||||
Figure 2: Rocket Motor Data: <span class="citation" data-cites="thrustcurve">(<a href="#ref-thrustcurve" role="doc-biblioref">Coker, n.d.</a>)</span>
|
Figure 2: Rocket Motor Data: <span class="citation" data-cites="thrustcurve">(<a href="#ref-thrustcurve" role="doc-biblioref">Coker, n.d.</a>)</span>
|
||||||
</p>
|
</p>
|
||||||
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 48 KiB After Width: | Height: | Size: 29 KiB |
@ -96,10 +96,9 @@ plot(df.Time .|&gt; ustrip, thrust_values,
|
|||||||
fillalpha=.2,label=&quot;Thrust&quot;,
|
fillalpha=.2,label=&quot;Thrust&quot;,
|
||||||
xlabel=&quot;Time (s)&quot;,
|
xlabel=&quot;Time (s)&quot;,
|
||||||
ylabel=&quot;Thrust (N)&quot;,
|
ylabel=&quot;Thrust (N)&quot;,
|
||||||
size = (1200, 800),
|
|
||||||
)</code></pre>
|
)</code></pre>
|
||||||
<div class="figure">
|
<div class="figure">
|
||||||
<img src="file571aee56c6a_files/figure-html/unnamed-chunk-6-J1.png" alt="Air Proplsion Simulation" width="600" />
|
<img src="file622ef5a388f_files/figure-html/unnamed-chunk-6-J1.png" alt="Air Proplsion Simulation" width="300" />
|
||||||
<p class="caption">
|
<p class="caption">
|
||||||
(#fig:unnamed-chunk-6)Air Proplsion Simulation
|
(#fig:unnamed-chunk-6)Air Proplsion Simulation
|
||||||
</p>
|
</p>
|
||||||
@ -111,7 +110,7 @@ f15 = CSV.read(&quot;Estes_F15.csv&quot;, DataFrame);
|
|||||||
g8 = CSV.read(&quot;AeroTech_G8ST.csv&quot;, DataFrame);
|
g8 = CSV.read(&quot;AeroTech_G8ST.csv&quot;, DataFrame);
|
||||||
|
|
||||||
|
|
||||||
plot(air.Time, air.Thrust, label=&quot;Air Propulsion&quot;, fillalpha=.1, legend=:topleft, size = (1200, 800));
|
plot(air.Time, air.Thrust, label=&quot;Air Propulsion&quot;, legend=:topleft);
|
||||||
|
|
||||||
for (d, l) in [(f10, &quot;F10&quot;), (f15, &quot;F15&quot;), (g8, &quot;G8ST&quot;)]
|
for (d, l) in [(f10, &quot;F10&quot;), (f15, &quot;F15&quot;), (g8, &quot;G8ST&quot;)]
|
||||||
plot!(d[!,&quot;Time (s)&quot;], d[!, &quot;Thrust (N)&quot;], label=l);
|
plot!(d[!,&quot;Time (s)&quot;], d[!, &quot;Thrust (N)&quot;], label=l);
|
||||||
@ -121,7 +120,7 @@ title!(&quot;Propulsion Comparison&quot;);
|
|||||||
xlabel!(&quot;Time (s)&quot;);
|
xlabel!(&quot;Time (s)&quot;);
|
||||||
ylabel!(&quot;Thrust (N)&quot;)</code></pre>
|
ylabel!(&quot;Thrust (N)&quot;)</code></pre>
|
||||||
<div class="figure">
|
<div class="figure">
|
||||||
<img src="file571aee56c6a_files/figure-html/unnamed-chunk-7-J1.png" alt="Rocket Motor Data: [@thrustcurve]" width="600" data-distill-preview=1 />
|
<img src="file622ef5a388f_files/figure-html/unnamed-chunk-7-J1.png" alt="Rocket Motor Data: [@thrustcurve]" width="300" data-distill-preview=1 />
|
||||||
<p class="caption">
|
<p class="caption">
|
||||||
(#fig:unnamed-chunk-7)Rocket Motor Data: <span class="citation">(Coker, n.d.)</span>
|
(#fig:unnamed-chunk-7)Rocket Motor Data: <span class="citation">(Coker, n.d.)</span>
|
||||||
</p>
|
</p>
|
||||||
@ -146,7 +145,7 @@ Sutton, George P., and Oscar Biblarz. 2001. <em>Rocket Propulsion Elements
|
|||||||
<category>Capstone</category>
|
<category>Capstone</category>
|
||||||
<guid>https://projects.ansonbiggs.com/posts/2021-04-01-air-propulsion-simulation</guid>
|
<guid>https://projects.ansonbiggs.com/posts/2021-04-01-air-propulsion-simulation</guid>
|
||||||
<pubDate>Thu, 01 Apr 2021 00:00:00 +0000</pubDate>
|
<pubDate>Thu, 01 Apr 2021 00:00:00 +0000</pubDate>
|
||||||
<media:content url="https://projects.ansonbiggs.com/posts/2021-04-01-air-propulsion-simulation/air-propulsion-simulation_files/figure-html5/unnamed-chunk-7-J1.png" medium="image" type="image/png" width="1200" height="800"/>
|
<media:content url="https://projects.ansonbiggs.com/posts/2021-04-01-air-propulsion-simulation/air-propulsion-simulation_files/figure-html5/unnamed-chunk-7-J1.png" medium="image" type="image/png" width="600" height="400"/>
|
||||||
</item>
|
</item>
|
||||||
</channel>
|
</channel>
|
||||||
</rss>
|
</rss>
|
||||||
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 48 KiB After Width: | Height: | Size: 29 KiB |
@ -104,8 +104,8 @@ code span.wa { color: #5e5e5e; font-style: italic; } /* Warning */
|
|||||||
<meta property="og:description" content="Simulating the performance of an air propulsion system as an alternative to solid rocket motors."/>
|
<meta property="og:description" content="Simulating the performance of an air propulsion system as an alternative to solid rocket motors."/>
|
||||||
<meta property="og:url" content="https://projects.ansonbiggs.com/posts/2021-04-01-air-propulsion-simulation/"/>
|
<meta property="og:url" content="https://projects.ansonbiggs.com/posts/2021-04-01-air-propulsion-simulation/"/>
|
||||||
<meta property="og:image" content="https://projects.ansonbiggs.com/posts/2021-04-01-air-propulsion-simulation/air-propulsion-simulation_files/figure-html5/unnamed-chunk-7-J1.png"/>
|
<meta property="og:image" content="https://projects.ansonbiggs.com/posts/2021-04-01-air-propulsion-simulation/air-propulsion-simulation_files/figure-html5/unnamed-chunk-7-J1.png"/>
|
||||||
<meta property="og:image:width" content="1200"/>
|
<meta property="og:image:width" content="600"/>
|
||||||
<meta property="og:image:height" content="800"/>
|
<meta property="og:image:height" content="400"/>
|
||||||
<meta property="og:locale" content="en_US"/>
|
<meta property="og:locale" content="en_US"/>
|
||||||
<meta property="og:site_name" content="Anson's Projects"/>
|
<meta property="og:site_name" content="Anson's Projects"/>
|
||||||
|
|
||||||
@ -115,8 +115,8 @@ code span.wa { color: #5e5e5e; font-style: italic; } /* Warning */
|
|||||||
<meta property="twitter:description" content="Simulating the performance of an air propulsion system as an alternative to solid rocket motors."/>
|
<meta property="twitter:description" content="Simulating the performance of an air propulsion system as an alternative to solid rocket motors."/>
|
||||||
<meta property="twitter:url" content="https://projects.ansonbiggs.com/posts/2021-04-01-air-propulsion-simulation/"/>
|
<meta property="twitter:url" content="https://projects.ansonbiggs.com/posts/2021-04-01-air-propulsion-simulation/"/>
|
||||||
<meta property="twitter:image" content="https://projects.ansonbiggs.com/posts/2021-04-01-air-propulsion-simulation/air-propulsion-simulation_files/figure-html5/unnamed-chunk-7-J1.png"/>
|
<meta property="twitter:image" content="https://projects.ansonbiggs.com/posts/2021-04-01-air-propulsion-simulation/air-propulsion-simulation_files/figure-html5/unnamed-chunk-7-J1.png"/>
|
||||||
<meta property="twitter:image:width" content="1200"/>
|
<meta property="twitter:image:width" content="600"/>
|
||||||
<meta property="twitter:image:height" content="800"/>
|
<meta property="twitter:image:height" content="400"/>
|
||||||
|
|
||||||
<!-- https://scholar.google.com/intl/en/scholar/inclusion.html#indexing -->
|
<!-- https://scholar.google.com/intl/en/scholar/inclusion.html#indexing -->
|
||||||
<meta name="citation_title" content="Anson's Projects: Air Propulsion Simulation"/>
|
<meta name="citation_title" content="Anson's Projects: Air Propulsion Simulation"/>
|
||||||
@ -2218,11 +2218,10 @@ Show code
|
|||||||
<span id="cb6-11"><a href="#cb6-11" aria-hidden="true" tabindex="-1"></a> fillalpha<span class="op">=</span><span class="fl">.2</span><span class="op">,</span>label<span class="op">=</span><span class="st">"Thrust"</span><span class="op">,</span></span>
|
<span id="cb6-11"><a href="#cb6-11" aria-hidden="true" tabindex="-1"></a> fillalpha<span class="op">=</span><span class="fl">.2</span><span class="op">,</span>label<span class="op">=</span><span class="st">"Thrust"</span><span class="op">,</span></span>
|
||||||
<span id="cb6-12"><a href="#cb6-12" aria-hidden="true" tabindex="-1"></a> xlabel<span class="op">=</span><span class="st">"Time (s)"</span><span class="op">,</span> </span>
|
<span id="cb6-12"><a href="#cb6-12" aria-hidden="true" tabindex="-1"></a> xlabel<span class="op">=</span><span class="st">"Time (s)"</span><span class="op">,</span> </span>
|
||||||
<span id="cb6-13"><a href="#cb6-13" aria-hidden="true" tabindex="-1"></a> ylabel<span class="op">=</span><span class="st">"Thrust (N)"</span><span class="op">,</span></span>
|
<span id="cb6-13"><a href="#cb6-13" aria-hidden="true" tabindex="-1"></a> ylabel<span class="op">=</span><span class="st">"Thrust (N)"</span><span class="op">,</span></span>
|
||||||
<span id="cb6-14"><a href="#cb6-14" aria-hidden="true" tabindex="-1"></a> size <span class="op">=</span> (<span class="fl">1200</span><span class="op">,</span> <span class="fl">800</span>)<span class="op">,</span></span>
|
<span id="cb6-14"><a href="#cb6-14" aria-hidden="true" tabindex="-1"></a> )</span></code></pre></div>
|
||||||
<span id="cb6-15"><a href="#cb6-15" aria-hidden="true" tabindex="-1"></a> )</span></code></pre></div>
|
|
||||||
</details>
|
</details>
|
||||||
<div class="figure"><span id="fig:unnamed-chunk-6"></span>
|
<div class="figure"><span id="fig:unnamed-chunk-6"></span>
|
||||||
<img src="air-propulsion-simulation_files/figure-html5/unnamed-chunk-6-J1.png" alt="Air Proplsion Simulation" width="600" />
|
<img src="air-propulsion-simulation_files/figure-html5/unnamed-chunk-6-J1.png" alt="Air Proplsion Simulation" width="300" />
|
||||||
<p class="caption">
|
<p class="caption">
|
||||||
Figure 1: Air Proplsion Simulation
|
Figure 1: Air Proplsion Simulation
|
||||||
</p>
|
</p>
|
||||||
@ -2240,7 +2239,7 @@ Show code
|
|||||||
<span id="cb7-4"><a href="#cb7-4" aria-hidden="true" tabindex="-1"></a>g8 <span class="op">=</span> CSV.<span class="cn">read</span>(<span class="st">"AeroTech_G8ST.csv"</span><span class="op">,</span> DataFrame)<span class="op">;</span></span>
|
<span id="cb7-4"><a href="#cb7-4" aria-hidden="true" tabindex="-1"></a>g8 <span class="op">=</span> CSV.<span class="cn">read</span>(<span class="st">"AeroTech_G8ST.csv"</span><span class="op">,</span> DataFrame)<span class="op">;</span></span>
|
||||||
<span id="cb7-5"><a href="#cb7-5" aria-hidden="true" tabindex="-1"></a></span>
|
<span id="cb7-5"><a href="#cb7-5" aria-hidden="true" tabindex="-1"></a></span>
|
||||||
<span id="cb7-6"><a href="#cb7-6" aria-hidden="true" tabindex="-1"></a></span>
|
<span id="cb7-6"><a href="#cb7-6" aria-hidden="true" tabindex="-1"></a></span>
|
||||||
<span id="cb7-7"><a href="#cb7-7" aria-hidden="true" tabindex="-1"></a>plot(air.<span class="dt">Time</span><span class="op">,</span> air.Thrust<span class="op">,</span> label<span class="op">=</span><span class="st">"Air Propulsion"</span><span class="op">,</span> fillalpha<span class="op">=</span><span class="fl">.1</span><span class="op">,</span> legend<span class="op">=:</span>topleft<span class="op">,</span> size <span class="op">=</span> (<span class="fl">1200</span><span class="op">,</span> <span class="fl">800</span>))<span class="op">;</span></span>
|
<span id="cb7-7"><a href="#cb7-7" aria-hidden="true" tabindex="-1"></a>plot(air.<span class="dt">Time</span><span class="op">,</span> air.Thrust<span class="op">,</span> label<span class="op">=</span><span class="st">"Air Propulsion"</span><span class="op">,</span> legend<span class="op">=:</span>topleft)<span class="op">;</span></span>
|
||||||
<span id="cb7-8"><a href="#cb7-8" aria-hidden="true" tabindex="-1"></a></span>
|
<span id="cb7-8"><a href="#cb7-8" aria-hidden="true" tabindex="-1"></a></span>
|
||||||
<span id="cb7-9"><a href="#cb7-9" aria-hidden="true" tabindex="-1"></a><span class="kw">for</span> (d<span class="op">,</span> l) <span class="kw">in</span> [(f10<span class="op">,</span> <span class="st">"F10"</span>)<span class="op">,</span> (f15<span class="op">,</span> <span class="st">"F15"</span>)<span class="op">,</span> (g8<span class="op">,</span> <span class="st">"G8ST"</span>)]</span>
|
<span id="cb7-9"><a href="#cb7-9" aria-hidden="true" tabindex="-1"></a><span class="kw">for</span> (d<span class="op">,</span> l) <span class="kw">in</span> [(f10<span class="op">,</span> <span class="st">"F10"</span>)<span class="op">,</span> (f15<span class="op">,</span> <span class="st">"F15"</span>)<span class="op">,</span> (g8<span class="op">,</span> <span class="st">"G8ST"</span>)]</span>
|
||||||
<span id="cb7-10"><a href="#cb7-10" aria-hidden="true" tabindex="-1"></a> plot<span class="op">!</span>(d[<span class="op">!,</span><span class="st">"Time (s)"</span>]<span class="op">,</span> d[<span class="op">!,</span> <span class="st">"Thrust (N)"</span>]<span class="op">,</span> label<span class="op">=</span>l)<span class="op">;</span></span>
|
<span id="cb7-10"><a href="#cb7-10" aria-hidden="true" tabindex="-1"></a> plot<span class="op">!</span>(d[<span class="op">!,</span><span class="st">"Time (s)"</span>]<span class="op">,</span> d[<span class="op">!,</span> <span class="st">"Thrust (N)"</span>]<span class="op">,</span> label<span class="op">=</span>l)<span class="op">;</span></span>
|
||||||
@ -2251,7 +2250,7 @@ Show code
|
|||||||
<span id="cb7-15"><a href="#cb7-15" aria-hidden="true" tabindex="-1"></a>ylabel<span class="op">!</span>(<span class="st">"Thrust (N)"</span>)</span></code></pre></div>
|
<span id="cb7-15"><a href="#cb7-15" aria-hidden="true" tabindex="-1"></a>ylabel<span class="op">!</span>(<span class="st">"Thrust (N)"</span>)</span></code></pre></div>
|
||||||
</details>
|
</details>
|
||||||
<div class="figure"><span id="fig:unnamed-chunk-7"></span>
|
<div class="figure"><span id="fig:unnamed-chunk-7"></span>
|
||||||
<img src="air-propulsion-simulation_files/figure-html5/unnamed-chunk-7-J1.png" alt="Rocket Motor Data: [@thrustcurve]" width="600" data-distill-preview=1 />
|
<img src="air-propulsion-simulation_files/figure-html5/unnamed-chunk-7-J1.png" alt="Rocket Motor Data: [@thrustcurve]" width="300" data-distill-preview=1 />
|
||||||
<p class="caption">
|
<p class="caption">
|
||||||
Figure 2: Rocket Motor Data: <span class="citation" data-cites="thrustcurve">(<a href="#ref-thrustcurve" role="doc-biblioref">Coker, n.d.</a>)</span>
|
Figure 2: Rocket Motor Data: <span class="citation" data-cites="thrustcurve">(<a href="#ref-thrustcurve" role="doc-biblioref">Coker, n.d.</a>)</span>
|
||||||
</p>
|
</p>
|
||||||
|
@ -14,6 +14,6 @@
|
|||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://projects.ansonbiggs.com/posts/2021-04-01-air-propulsion-simulation/</loc>
|
<loc>https://projects.ansonbiggs.com/posts/2021-04-01-air-propulsion-simulation/</loc>
|
||||||
<lastmod>2021-05-03T21:36:23-07:00</lastmod>
|
<lastmod>2021-05-03T21:53:15-07:00</lastmod>
|
||||||
</url>
|
</url>
|
||||||
</urlset>
|
</urlset>
|
||||||
|