summaryrefslogtreecommitdiff
path: root/3772/CH16/EX16.5/Ex16_5.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3772/CH16/EX16.5/Ex16_5.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/CH16/EX16.5/Ex16_5.sce')
-rw-r--r--3772/CH16/EX16.5/Ex16_5.sce34
1 files changed, 34 insertions, 0 deletions
diff --git a/3772/CH16/EX16.5/Ex16_5.sce b/3772/CH16/EX16.5/Ex16_5.sce
new file mode 100644
index 000000000..25401bf11
--- /dev/null
+++ b/3772/CH16/EX16.5/Ex16_5.sce
@@ -0,0 +1,34 @@
+// Problem 16.5,Page no.369
+
+clc;clear;
+close;
+
+t=12 //mm //Thickness of plate
+d=24 //mm //Diameter of rivets
+sigma_t=120 //MPa //stress in tension
+sigma_s=200 //MPa //stress in double shear
+sigma_b=200 //MPa //stress in Bearing
+n=1 //No. of rivet
+
+//Calculation
+
+//P_t=(p-d)*t*10**-4*sigma_t*10**6 //N //Strength of plate in tearing
+//After further simplifying we get
+//P_t=(p-24)*14400 //N
+
+P_s=n*%pi*4**-1*d**2*10**-6*sigma_s*10**6 //N //Shearing strength of rivet in double shear
+
+P_b=n*d*10**-3*t*10**-3*sigma_b*10**6 //N //Bearing strength per %pitch length
+
+//Now Equating P_t to P_s or P_b whichever is small
+//(p-24)*14400=P_b
+p=P_b*14400**-1+24*10**-1 //cm //pitch of rivet
+p_min=2.5*d*10**-1 //cm //Minimum pitch
+
+//Now adopting 6.4 cm %pitch
+
+rho=(p-d*10**-1)*p**-1*100
+
+//Result
+printf("pitch of rivet is %.2f",p);printf(" cm")
+printf("\n Efficiency of joint is %.2f %%",rho)