blob: a3990f7adbc0acbc9f27ed2ea1b833c513e4539d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//Width of the prototype(in ft):
wp=8;
//Frontal area of the prototype(in ft^2):
Ap=84;
//Model Scale:
S=1/16;
//Density of air(in kg/m^3):
d=1.23;
//Air speed in wind tunnel(in m/sec):
V=[18 21.8 26 30.1 35 38.5 40.9 44.1 46.7];
//Drag force(in N):
Fd=[3.1 4.41 6.09 7.97 10.7 12.9 14.7 16.9 18.9];
//Kinematic viscosity(in m^2/sec):
v=1.46*10^-5;
//Density of air(in kg/m^3):
d=1.23;
//Speed of prototype(in km/hr):\
Vp=100;
|