blob: 2f303cadd641b0ee9e564a7c8437191d76004869 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
clc; funcprot(0);
//Example 8.7 Lift Drag Ratio
// Initialisation of variables
W = 5000;
LD_Max = 21.5;
// Calculations
D = W/LD_Max;
//Results
disp(D,"Minimum drag on clark Y wing (lb)");
|