summaryrefslogtreecommitdiff
path: root/1301/CH5/EX5.17/ex5_17.sce
blob: 8a8a66bdb11e8afb3806b5d7e73c41c4d5bae72f (plain)
1
2
3
4
5
6
7
clc;
w=3;   //weight in lb
v=15;  //velocity in ft/sec
g=32;  //g in ft/sec square
s=(1/24); //s in ft
F=(w*v*v)/(2*g*s);  //calculating force exerted in lb
disp(F,"Force exerted in lb = "); //displaying result