summaryrefslogtreecommitdiff
path: root/3772/CH5/EX5.2/Ex5_2.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3772/CH5/EX5.2/Ex5_2.sce
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/CH5/EX5.2/Ex5_2.sce')
-rw-r--r--3772/CH5/EX5.2/Ex5_2.sce36
1 files changed, 36 insertions, 0 deletions
diff --git a/3772/CH5/EX5.2/Ex5_2.sce b/3772/CH5/EX5.2/Ex5_2.sce
new file mode 100644
index 000000000..bedd1f905
--- /dev/null
+++ b/3772/CH5/EX5.2/Ex5_2.sce
@@ -0,0 +1,36 @@
+
+// Problem 5.2,Page no.122
+
+clc;clear;
+close;
+
+D=160 //mm //Overall Depth
+B=150 //mm //Width of Flange
+f_t=40 //mm //Flange thickness
+W_t=50 //mm //Web thickness
+sigma_t=20 //N/mm**2 //tension stress
+sigma_c=75 //N/mm**2 //compression stress
+
+//Calculations
+
+//Rectangle-1
+a_1=150*40 //mm**2 //Area of Rectangle-1
+y_1=40*2**-1 //mm //C.G of Rectangle-1
+
+//Rectangle-2
+a_2=120*50 //mm**2 //Area of Rectangle-2
+y_2=40+120*2**-1 //mm //C.G of Rectangle-2
+
+Y_bar=(a_1*y_1+a_2*y_2)*(a_1+a_2)**-1 //mm //Distance of C.G from the bottom flange
+I=1*12**-1*150*40**3+150*40*(60-40)**2+1*12**-1*50*120**3+50*120*(100-60)**2 //mm**4 //M.I of section about N.A
+y_t=60 //mm //Permissible tensile stress at the bottom face of flange from N.A
+y_c=100 //mm //Permissible tensile stress at the top face of flange from N.A
+
+//M=W*L*4**-1 //Max bending mooment at the centre
+
+//Using the relation M*I**-1=sigma_t*y_t**-1 we get
+W=(0.333*4*272*10**5)*(2.5*1000)**-1 //N //MAx central load
+
+//Result
+printf("The Max Bending Moment at the centre is %.2f N",W)
+//Answer is wrong in the textbook.