summaryrefslogtreecommitdiff
path: root/3772/CH6/EX6.6
diff options
context:
space:
mode:
Diffstat (limited to '3772/CH6/EX6.6')
-rw-r--r--3772/CH6/EX6.6/Ex6_6.sce27
1 files changed, 27 insertions, 0 deletions
diff --git a/3772/CH6/EX6.6/Ex6_6.sce b/3772/CH6/EX6.6/Ex6_6.sce
new file mode 100644
index 000000000..1f80132f7
--- /dev/null
+++ b/3772/CH6/EX6.6/Ex6_6.sce
@@ -0,0 +1,27 @@
+// Problem no 6.6,Page No.158
+
+clc;clear;
+close;
+
+L=10 //m //span of beam
+W=10*10**3 //N //Point Load
+a=6 //m //Distance from left end of beam to point Load
+b=4 //m ////Distance from right end of beam to point Load
+E=210*10**9
+I=10**-4 //m //M.I of beam
+
+//Calculation
+
+//slope at left end is given by
+theta_A=W*b*(L**2-b**2)*(6*E*I*L)**-1 //radian
+
+//Deflection under Load is
+y_c=W*a*b*(L**2-a**2-b**2)*(6*E*I*L)**-1*10**3 //mm
+
+//Maximum Deflection of the beam is
+y_max=W*a*(L**2-a**2)**1.5*(15.588457*E*I*L)**-1*10**3 //mm
+
+//Result
+printf("slope at left end is %.5f radian",theta_A)
+printf("\n Deflection under Load is %.2f mm",y_c)
+printf("\n #Maximum Deflection of the beam is %.2f mm",y_max)