summaryrefslogtreecommitdiff
path: root/3774/CH5/EX5.4/Ex5_4.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3774/CH5/EX5.4/Ex5_4.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 '3774/CH5/EX5.4/Ex5_4.sce')
-rw-r--r--3774/CH5/EX5.4/Ex5_4.sce67
1 files changed, 67 insertions, 0 deletions
diff --git a/3774/CH5/EX5.4/Ex5_4.sce b/3774/CH5/EX5.4/Ex5_4.sce
new file mode 100644
index 000000000..194be35a3
--- /dev/null
+++ b/3774/CH5/EX5.4/Ex5_4.sce
@@ -0,0 +1,67 @@
+// exa 5.4 Pg 151
+clc;clear;close;
+
+// Given Data
+D=0.75;//m
+ps=1.55;// N/mm.sq
+eta_l=0.75;// efficiency
+sigma_t=90;// MPa
+sigma_c=140;// MPa
+tau=56;// MPa
+n=2;// no. of rivets
+
+printf('DESIGNING LONGITUDINAL JOINT - \n')
+printf('\n Plate Thickness')
+t = ps*D*1000/2/sigma_t/eta_l+1;// mm
+printf(', t = %.2f mm',t)
+t=ceil(t);//mm (adopted for design)
+printf('\n use t = %d mm',t)
+
+printf('\n Diameter of rivet hole, do = ')
+d0=6*sqrt(t);//mm (for t>8 mm)
+printf('%.2f mm',d0)
+d0=19.5;// suggested for design
+printf('\n Use do = %.1f mm',d0)
+printf('\n Diameter of rivet, d = ')
+d=d0-1.5;//mm
+printf('%.2f mm',d)
+
+printf('\n Pitch of rivets, p = ')
+Ps=(2*1.875)*%pi/4*d0**2*tau;// N
+// Putting Pt=Ps where Pt=(p-d0)*t*sigma_t;// N
+Pt=Ps;//N
+p=Pt/(t*sigma_t)+d0;// N
+printf('%.2f mm',p)
+C=3.5;// for 2 no. of rivets
+pmax=C*t+40;// mm (as per IBR)
+printf('\n as per IBR-\n pitch, pmax = %.f mm',pmax)
+p=75;// mm (adopted for design)
+printf('\n Use p = %.f mm',p)
+
+//Distance between rows of rivets
+dis=0.33*p+0.67*d0;// mm
+printf('\n distance between rows of rivets = %.1f mm',dis)
+dis=40;//mm (adopted for design)
+printf('\n take & use this distance = %.f mm', dis)
+
+printf('\n Thickness of butt strap, t= ')
+t1=0.625*t;// mm
+printf(' %.2f mm',t1)
+t1=7;// mm (adopted for design)
+printf('\n Use thickness = %.f mm',t1)
+
+//margin
+m=ceil(1.5*d0);// mm
+printf('\n margin, m = %.f mm',m)
+
+// Efficiency of joint
+Pt=(p-d0)*t*sigma_t;// N
+Ps=Ps;// N (shearing resistance of rivets)
+Pc=n*d0*t*sigma_c;// N (crushing resistance of rivets)
+sigma_com = (p-2*d0)*t*sigma_t+%pi/4*d0**2*tau;// N
+printf('\n strength of the joint = %d N',Pt)
+P=p*t*sigma_t;//N (strength of solid plate)
+printf('\n strength of solid plate = %d N',P)
+eta_l=Pt/P*100;// % (efficiency)
+printf('\n Efficiency of joint, eta_l = %.2f %% = 75 %% as given',eta_l)
+