summaryrefslogtreecommitdiff
path: root/1457/CH10/EX10.4/10_4.sce
blob: 7edd22f47245ac92e1e9bab59bae084a6c601eda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
clc
//Initialization of variables
Cd=0.45
rho=0.0725/32.2
V=88 //fps
A=8*10
//calculations
Fd=Cd*rho*V^2 /2 *A
Drag2=23
D=Fd-Drag2
//results
printf("Pressure drag = %d lb",D)