Skip to content

Commit 77d117e

Browse files
authored
Fixing some small mistakes in problem description (#4)
* Fix MAC value in table and fix typo to make maneuver flight point mass consistent. * Fix MAC calculation in wingGeometry
1 parent 2f4c579 commit 77d117e

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

ProblemDescription.pdf

7.53 MB
Binary file not shown.

geometry/wingGeometry.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,7 @@
5757
rootChord = sectionChord[0]
5858
tipChord = sectionChord[1]
5959
planformArea = semiSpan * (rootChord + tipChord) * 0.5
60-
meanAerodynamicChord = planformArea * (
61-
(2.0 / 3.0) * (rootChord + tipChord - rootChord * tipChord / (rootChord + tipChord))
62-
)
60+
meanAerodynamicChord = (2.0 / 3.0) * (rootChord + tipChord - rootChord * tipChord / (rootChord + tipChord))
6361
aspectRatio = 2 * (semiSpan**2) / planformArea
6462
taperRatio = tipChord / rootChord
6563

0 commit comments

Comments
 (0)