summaryrefslogtreecommitdiff
path: root/1962/CH7/EX7.6/example7_6.sce
blob: 3ea5f119aaf23713c12a64e3b79702bcb99ab628 (plain)
1
2
3
4
5
6
7
8
9
10
11
12

//example 7.6
//page 272
clc; funcprot(0);
//initialisation of variable
A=50;//area
Cd=0.3;
U=11.11;//speed
rho=1.177;
Fd=1/2*Cd*rho*U^2*A;
disp(Fd,"drag force (N)");
clear