diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3772/CH16/EX16.2/Ex16_2.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-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.2/Ex16_2.sce')
-rw-r--r-- | 3772/CH16/EX16.2/Ex16_2.sce | 23 |
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") |