summaryrefslogtreecommitdiff
path: root/3647/CH11/EX11.1/ex11_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3647/CH11/EX11.1/ex11_1.sce')
-rw-r--r--3647/CH11/EX11.1/ex11_1.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3647/CH11/EX11.1/ex11_1.sce b/3647/CH11/EX11.1/ex11_1.sce
new file mode 100644
index 000000000..48ea3d650
--- /dev/null
+++ b/3647/CH11/EX11.1/ex11_1.sce
@@ -0,0 +1,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)