summaryrefslogtreecommitdiff
path: root/3772/CH16/EX16.2
diff options
context:
space:
mode:
Diffstat (limited to '3772/CH16/EX16.2')
-rw-r--r--3772/CH16/EX16.2/Ex16_2.sce23
1 files changed, 23 insertions, 0 deletions
diff --git a/3772/CH16/EX16.2/Ex16_2.sce b/3772/CH16/EX16.2/Ex16_2.sce
new file mode 100644
index 000000000..e307d6a21
--- /dev/null
+++ b/3772/CH16/EX16.2/Ex16_2.sce
@@ -0,0 +1,23 @@
+// Problem 16.2,Page no.367
+
+clc;clear;
+close;
+
+p=7.5 //cm //%pitch of rivets
+t=1.5 //cm //Thickness of plate
+d=2.5 //cm //diameter of rivets
+sigma_t=400 //MPa //Working stress
+sigma_c=640 //MPa //crushing stress
+sigma_s=320 //MPa //shearing stress
+n=2 //No. of rivets
+
+//Calculation
+
+P_t=(p-d)*t*10**-4*sigma_t*10**6*10**-3 //kN //Strength of plate in tearing
+P_s=n*%pi*4**-1*d**2*10**-4*sigma_s*10**6*10**-3 //kN //Shearing strength
+P_c=n*d*t*10**-4*sigma_c*10**6*10**-3 //kN //crushing strength
+
+//Thus Minimum force that will rapture the joint is least of P_t,P_s,P_c i.e P_t
+
+//Result
+printf("Minimum force that will rapture the joint is %.2f",P_t);printf(" kN")