summaryrefslogtreecommitdiff
path: root/2732/CH9/EX9.1
diff options
context:
space:
mode:
Diffstat (limited to '2732/CH9/EX9.1')
-rwxr-xr-x2732/CH9/EX9.1/Ex9_1.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/2732/CH9/EX9.1/Ex9_1.sce b/2732/CH9/EX9.1/Ex9_1.sce
new file mode 100755
index 000000000..5fa09e4b6
--- /dev/null
+++ b/2732/CH9/EX9.1/Ex9_1.sce
@@ -0,0 +1,20 @@
+clc
+//initialization of variables
+clear
+//case (a)
+A=72.9 //cm^2
+Iy=633 //cm^4
+Ix=1199 //cm^4
+t=24/(5*Ix)+13.5/(5*Iy)
+r=1/(A*t)
+printf('case (a) \n r = %.3f cm',r)
+// case (b)
+t=24/(5*Ix)-13.5/(5*Iy)
+r=1/(A*t)
+printf('\n case (b) \n r = %.1f cm',r)
+//case (c)
+t=-24/(5*Ix)+13.5/(5*Iy)
+r=1/(A*t)
+printf('\n case (a) \n r = %.1f cm',r)
+printf('\n So the load is to be placed on the leg OD, at a distance of %.1f cm from O',r )
+