Skip to content

Commit 9cf1fff

Browse files
committed
grammar fixes
1 parent d1f699e commit 9cf1fff

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

tutorials/Concorde.html

+7-3
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ <h3 id="running-the-tutorial-file">Baseline Aerodynamic Analysis</h3>
8787
analyses.append(aerodynamics)
8888
...
8989
</pre></code><p></p>
90-
<p>In the SUAVE code structure, the analysis is broken into two sections. One of what you see above, which is the analysis class. The other is the individual methods that are used be the analysis class, which are stored in separate Methods folders. The purpose of splitting them is to make it easier for the different analysis classes to share methods. We will start with an explanation of the individual bits of the analysis class in the file trunk/Analyses/Aerodynamics/Fidelity_Zero.py.</p>
90+
<p>In the SUAVE code structure, the analysis is broken into two sections. One is what you see above, which is the analysis class. The other is the individual methods that are used in the analysis class, which are stored in separate Methods folders. The purpose of splitting them is to make it easier for the different analysis classes to share methods. We will start with an explanation of the individual bits of the analysis class in the file trunk/Analyses/Aerodynamics/Fidelity_Zero.py.</p>
9191

92-
<p>The first section is the imports. These are mix of standard imports and a few specific items needed for the analysis. They will be described individual as they appear in the body of the class. The first function in the fidelity zero class is __defaults__. This contains the primary functionality as it sets the default settings and the methods that will be used to compute aerodynamics.</p>
92+
<p>The first section is the imports. These are mix of standard imports and a few specific items needed for the analysis. They are described individually as they appear in the body of the class. The first function in the fidelity zero class is __defaults__. This contains the primary functionality as it sets the default settings and the methods that will be used to compute aerodynamics.</p>
9393

9494
<p>The settings begin as below:</p>
9595

@@ -153,12 +153,16 @@ <h3 id="main">Changes for Supersonic Analysis</h3>
153153

154154
<p>New files must also be created for the supersonic methods folder structure, which can be found as trunk/Methods/Aerodynamics/Supersonic_Zero/__init__.py, trunk/Methods/Aerodynamics/Supersonic_Zero/Lift/__init__.py, and trunk/Methods/Aerodynamics/Supersonic_Zero/Lift/__init__.py.</p>
155155

156-
<p>Once all of the files are ready, a couple modifications are needed in the vehicle and analysis set up. These can be seen the tut_concorde.py tutorial file. First, to switch the analysis type used, we replace</p>
156+
<p>Once all of the files are ready, a couple modifications are needed in the vehicle and analysis setup. These can be seen the tut_concorde.py tutorial file. First, to switch the analysis type used, we replace</p>
157157

158158
<div class="highlight_code"><div class="highlight_code"><pre class="highlight_code"><code class="language-python">aerodynamics = SUAVE.Analyses.Aerodynamics.Fidelity_Zero()</div></div></pre></code><p></p>
159159

160160
<p>with</p>
161161

162+
<div class="highlight_code"><div class="highlight_code"><pre class="highlight_code"><code class="language-python">aerodynamics = SUAVE.Analyses.Aerodynamics.Supersonic_Zero()</div></div></pre></code><p></p>
163+
164+
<p>Then, to use the special analysis capabilities, a couple settings are added to the main wing:</p>
165+
162166
<div class="highlight_code"><div class="highlight_code"><pre class="highlight_code"><code class="language-python">wing.vortex_lift = True
163167
wing.high_mach = True
164168
</div></div></pre></code><p></p>

0 commit comments

Comments
 (0)