summaryrefslogtreecommitdiff
path: root/3772/CH13/EX13.6/Ex13_6.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3772/CH13/EX13.6/Ex13_6.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/CH13/EX13.6/Ex13_6.sce')
-rw-r--r--3772/CH13/EX13.6/Ex13_6.sce33
1 files changed, 33 insertions, 0 deletions
diff --git a/3772/CH13/EX13.6/Ex13_6.sce b/3772/CH13/EX13.6/Ex13_6.sce
new file mode 100644
index 000000000..ff945c0eb
--- /dev/null
+++ b/3772/CH13/EX13.6/Ex13_6.sce
@@ -0,0 +1,33 @@
+// Problem no 13.6,Page No.305
+
+clc;clear;
+close;
+
+F=5*10**3 //N //shea Force
+b=20 //cm //width of Flange
+t=6 //cm //Thickness of flange
+w_d=20 //cm //depth of web
+w_t=6 //cm //thickness of web
+X=700 //N //Shear Looad
+
+//Calculations
+
+a_1=b*t //cm**2 //Area ofFlange
+a_2=w_d*w_t //cm**2 //Area of web
+y_1=t*2**-1 //cm //C.G of Flange
+y_2=t+w_d*2**-1 //cm //C.G of Web
+
+Y=(a_1*y_1+a_2*y_2)*(a_1+a_2)**-1
+
+//M.I about N.A
+I=b*t**3*12**-1+b*t*(Y-y_1)**2+w_t*w_d**3*12**-1+w_t*w_d*(y_2-Y)**2
+
+//Shear Force per metre Length in Plane of contact of two Planks
+//Let Shear Force per metre Length=F_1
+F_1=(F*a_1*(Y-y_1)*10**-6)*(I*10**-8)**-1
+
+//Spacing of nails
+s=X*F_1**-1*100
+
+//Result
+printf("The spacing of nails along the Length of beam is %.2f",s);printf(" cm")