blob: 07719f87ba489d3d6a4452facb2b820d76acc4cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
clc
//initialisation of variables
y=9802//N/m^3
d=3.5*0.25*0.20//m^3
v=11.5*0.82*0.65//ft^3
g=62.4//lbf/ft^3
//CALCULATIONS
F=y*d//N
F1=g*v//lbf
//RESULTS
printf('The buoyant force acting on the underside of the tie=is=% f lbf',F1)
|