summaryrefslogtreecommitdiff
path: root/2021/CH17/EX17.3/EX17_3.sce
blob: 92e5dd991896bf2b538aaa42531c8669005b9245 (plain)
1
2
3
4
5
6
7
8
9
//Finding of Force Exerted
//Given
rho=1000;
d=0.15;
V=25;
//To Find
A=(%pi/4)*d^2;
P=rho*A*V^2*sin(%pi/6);
disp("Force Exerted ="+string(P)+" Newtons");