@@ -19,6 +19,10 @@ if you haven't already. On Linux, make sure that Python3, Matplotlib and LaTeX a
1919sudo apt install python3-matplotlib
2020sudo apt install texlive-full texlive-fonts-extra cm-super
2121```
22+ Furthermore, the package ` TestEnv ` must be installed globally:
23+ ```
24+ julia -e 'using Pkg; Pkg.add("TestEnv")'
25+ ```
2226
2327Before installing this software it is suggested to create a new project, for example like this:
2428``` bash
@@ -68,11 +72,12 @@ To browse the code, it is suggested to use [VSCode](https://code.visualstudio.co
6872Three kinds of input data is needed:
6973
7074- The wing geometry, defined by section:
71- - rec wing two section, two point + polars
72- - kite: model of polars included, n sections to define
75+ - for the rectangualar wing two sections, two points in CAD reference frame + polars
76+ (three different options to provide them) per section
77+ - kite wing: model of polars included, n sections to define
7378
74- - The airflow:
75- - v_app vector
79+ - The airflow and turn rate :
80+ - ` v_app ` vector and ` omega ` (turn rate) vector in Kite Body (KB) reference frame
7681
7782- The configuration:
7883 - how many panels
@@ -87,7 +92,7 @@ Apart from the wing geometry there is no input file yet, the input has to be def
8792n_panels = 20 # Number of panels
8893span = 20.0 # Wing span [m]
8994chord = 1.0 # Chord length [m]
90- v_a = 20.0 # Magnitude of inflow velocity [m/s]
95+ v_a = 20.0 # Magnitude of inflow velocity [m/s]
9196density = 1.225 # Air density [kg/m³]
9297alpha_deg = 30.0 # Angle of attack [degrees]
9398alpha = deg2rad (alpha_deg)
@@ -99,11 +104,11 @@ wing = Wing(n_panels, spanwise_panel_distribution="linear")
99104add_section! (wing,
100105 [0.0 , span/ 2 , 0.0 ], # Left tip LE
101106 [chord, span/ 2 , 0.0 ], # Left tip TE
102- " inviscid" )
107+ : inviscid )
103108add_section! (wing,
104109 [0.0 , - span/ 2 , 0.0 ], # Right tip LE
105110 [chord, - span/ 2 , 0.0 ], # Right tip TE
106- " inviscid" )
111+ : inviscid )
107112
108113# Step 3: Initialize aerodynamics
109114wa = BodyAerodynamics ([wing])
0 commit comments