summaryrefslogtreecommitdiff
path: root/3772/CH6/EX6.6
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3772/CH6/EX6.6
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
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)