Conventions¶
This page summarises conventions used in the program.
Object hierarchy¶
All data related to the aircraft model is contained in the Aircraft class. Much like in the CPACS definition, the aircraft is represented as an assembly of components structured hierarchically:
- The
Aircrafthas lifting surfaces which are instances of classWing- Each
Wingis defined as the assembly of twisted quadrilateralsWingSegment- Each
WingSegmentis further divided intoSegmentStrip- Each
SegmentStripis further divided intoStripSubdivision- Each
Wingcan have control surfacesWingControl
Fig. 10 Basic object hierarchy. An aircraft object is made up of wings, segments, controls, strips and strip subdivisions.
Note
The user of PyTornado will only ever have to deal with the defintion of the aircraft, wings and control surfaces. Segment strips and strip subdivisions are internal objects used to facilitate mesh generation for aircraft with control surfaces.