diff options
Diffstat (limited to '3647/CH6/EX6.7')
-rw-r--r-- | 3647/CH6/EX6.7/ex6_7.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3647/CH6/EX6.7/ex6_7.sce b/3647/CH6/EX6.7/ex6_7.sce new file mode 100644 index 000000000..afc707f89 --- /dev/null +++ b/3647/CH6/EX6.7/ex6_7.sce @@ -0,0 +1,18 @@ +//Solutions to Problems In applied mechanics +//A N Gobby +clear all; +clc
+//initialisation of variables
+h=3//in
+s=10.2//tonf/in^2
+v=0.006//in
+d=0.5//in
+d1=0.75//in
+w=20//lbf
+q=v/8//tonf/in^2
+x=0.029//in
+//CALCULATIONS
+M=s/q//tonf/in^2
+E=M*(x)/(h*12)//tonf/in^2
+//RESULTS
+printf('the corresponding stress=% f tonf/in^2',E)
|