From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3772/CH16/EX16.5/Ex16_5.sce | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 3772/CH16/EX16.5/Ex16_5.sce (limited to '3772/CH16/EX16.5/Ex16_5.sce') 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) -- cgit