blob: 1c4aad08ece4f1e2f35cf2e0373bdf55a76ba8fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
clc; funcprot(0);
//Example 8.12 Absolute Coefficients with metric units
// Initialisation of variables
WbyS = 30; //Wing loading(kg/m^2)
V = 40;
alpha = 2;
rho = 0.125;
// Calculations
Cl = 0.585; // Value of Cl from fig 8.10
V = sqrt(2*WbyS/(rho*Cl));
//Results
disp(V,"Required speed (m/s):");
|