blob: ec9be7e4a972f5c10ba68dc8af5baf8c1fbb20c1 (
plain)
1
2
3
4
5
6
7
8
9
10
|
clear;
disp("Example 6.3")
d=0.1 // diameter of sphere in m
velocity= 0.25 // in m/s
mew= 1.9e-5
density= 1.15 // in kg/m^3
f=0.44
area=%pi*d*d/4
Fd=(f*density*velocity*velocity*area)/2
disp(Fd,"The drag Force is ")
|