blob: 163e3e7b630dd46984d7b552b66c26e8f78a4959 (
plain)
1
2
3
4
5
6
7
8
9
10
|
clc
//initialisation of variables
v= 120 //ft/min
S= 1.5 //in
w= 8000 //lb
//CALCULATIONS
ga= v^2*0.0000517/S
F= w*ga
//RESULTS
printf ('total force decessary to decelarate the load= %.f lb',F-3)
|