diff options
Diffstat (limited to '3647/CH8/EX8.4')
-rw-r--r-- | 3647/CH8/EX8.4/ex8_4.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/3647/CH8/EX8.4/ex8_4.sce b/3647/CH8/EX8.4/ex8_4.sce new file mode 100644 index 000000000..cd3d142c7 --- /dev/null +++ b/3647/CH8/EX8.4/ex8_4.sce @@ -0,0 +1,19 @@ +//Solutions to Problems In applied mechanics +//A N Gobby +clear all; +clc
+//initialisation of variables
+h=12//in
+w=6//in
+x=375.77//in^4
+y=28.28//in^4
+p=7//in
+q=14//in
+//CALCULATIONS
+Ix=x+(p*q^3/h)-(p*h^3/h)//in^4
+Iy=y+2*(1*p^3/h)//in^4
+Zx=x/w//in^3
+Zy=Ix/p//in^3
+X=(Zy-Zx)/(Zx)*100//percent
+//RESULTS
+printf('the percentage increase in strength with respect to neutral=% f percent',X)
|