summaryrefslogtreecommitdiff
path: root/3647/CH11/EX11.1/ex11_1.sce
blob: 48ea3d650a5083661b8583e502c7c268a02f4e91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//Solutions to Problems In applied mechanics
//A N Gobby
clear all;
clc
//initialisation of variables
w=62.5//lbf
a=4*6//ft
x=4//ft
l=(6*6^3)/3-(6*2^3)/3//ft^3
q=24*x//ft^3
//CALCULATIONS
T=w*a*x//lbf
P=l/q//ft
//RESULTS
printf('the depth of centre of pressure=% f ft',P)