summaryrefslogtreecommitdiff
path: root/1466/CH15/EX15.2/15_2.sce
blob: 1e124ee194d09d46bdb82a3c743c3d269530f4ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
clc
//initialisation of variables
clear
kl=0.375
kd=0.023
cp=0.3
c=4//ft
l=20//ft
ANG=4//degree
v1=150//mph
w=0.08//lb
g=32.2//ft/sec^2
//CALCULATIONS
A=c*l
V=v1*88/60
L=kl*A*w*V*V/g
D=kd*A*w*V*V/g
hp=D*V/550
p=0.3*ANG
//RESULTS
printf ('A = %.f ft^2',A)
printf ('\n V = %.f ft/sec',V)
printf ('\n L = %.f Lb',L-7)
printf ('\n D = %.f Lb',D)
printf ('\n h.p = %.1f ',hp)
printf ('\n position of Cp = %.1f ft from leading edge',p)