-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8f2ea92
commit 5204a9a
Showing
10 changed files
with
178 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
.. _Geometry: | ||
|
||
******** | ||
Geometry | ||
******** | ||
|
||
This module includes tools for computing useful geometry quantities. | ||
|
||
Wing geometry | ||
============= | ||
|
||
``WingMACTrapezoidal`` | ||
---------------------- | ||
This component computes the mean aerodynamic chord of a trapezoidal wing planform (defined by area, aspect ratio, and taper). | ||
|
||
``WingSpan`` | ||
------------ | ||
This component computes the span of an arbitrary wing as :math:`\sqrt{S_{ref} AR}`, where :math:`S_{ref}` is the wing planform area and :math:`AR` is the wing aspect ratio. | ||
|
||
``WingAspectRatio`` | ||
------------------- | ||
This component computes the aspect ratio of an arbitrary wing as :math:`b^2 / S_{ref}` where :math:`b` is the wing span and :math:`S_{ref}` is the wing planform area. | ||
|
||
``WingSweepFromSections`` | ||
------------------------- | ||
This component computes the average quarter chord sweep angle of a wing defined in linearly-varying piecewise sections in the spanwise direction. | ||
The average sweep angle is weighted by section areas. | ||
|
||
``WingAreaFromSections`` | ||
------------------------- | ||
This component computes the planform area of a wing defined in linearly-varying piecewise sections in the spanwise direction. | ||
|
||
.. warning:: | ||
If you are using this component in conjunction with ``SectionPlanformMesh`` and the inputs you are passing to this component are the same as those passed to ``SectionPlanformMesh``, ensure that you have set the ``scale_area`` option in ``SectionPlanformMesh`` to ``False``. | ||
Otherwise, the resulting wing area will be off by a factor. | ||
|
||
``WingMACFromSections`` | ||
------------------------- | ||
This component computes the mean aerodynamic chord of a wing defined in linearly-varying piecewise sections in the spanwise direction. | ||
It returns both the mean aerodynamic chord and the longitudinal position of the mean aerodynamic chord's quarter chord. | ||
|
||
Other quantities | ||
================ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
.. _Stability: | ||
|
||
********* | ||
Stability | ||
********* | ||
|
||
Tail volume coefficients | ||
======================== | ||
|
||
In conceptual aircraft design, required horizontal and vertical tail areas of conventional configurations can be approximated using tail volume coefficients. | ||
This method considers the wing area, wing mean aerodynamic chord, and distance between the wing's quarter mean aerodynamic chord and tail's quarter mean aerodynamic chord. | ||
``HStabVolumeCoefficientSizing`` and ``VStabVolumeCoefficientSizing`` use tail volume coefficient relationships from :footcite:t:`raymer2006aircraft` to predict horizontal and vertical tail reference areas, respectively. | ||
|
||
.. footbibliography:: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters