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/CH17/EX17.3 | |
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/CH17/EX17.3')
-rw-r--r-- | 3772/CH17/EX17.3/Ex17_3.sce | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/3772/CH17/EX17.3/Ex17_3.sce b/3772/CH17/EX17.3/Ex17_3.sce new file mode 100644 index 000000000..e72057275 --- /dev/null +++ b/3772/CH17/EX17.3/Ex17_3.sce @@ -0,0 +1,41 @@ +//Ex no.17.3,Page no.380 +clc;clear;close; + +//Initilization of Variables + +b=12 //cm //width of plate +S=1;t=1 //cm //thickness of plate +P=50 //KN //load +sigma_s=60 //MPa //shear stress + +//Calculations (part-1) + +//Under static Loading + +//P=2**0.5*l*S*sigma_s + +l=((P*10**3)*(2**0.5*S*sigma_s*10**-4*10**6)**-1) //cm + +//add 1.25 cm to start and stop weld run + +L=l+1.25 //cm //length of weld + +//Calculations (part-2) + +//Under Fatigue load + +//stress concentration factor for parallel fillet weld is 2.7 + +sigma_s_2=sigma_s*2.7**-1 //MPa //permissible shear stress + +//P=2**0.5*l_2*S*sigma_s_2 + +l_2=((P*10**3)*(2**0.5*S*sigma_s_2*10**-4*10**6)**-1) //cm + +//add 1.25 cm + +l_3=l_2+1.25 //cm //length of weld + +//Result +printf("Length of weld Under static Loading is %.3f cm",L) +printf("\n Length of weld Under Ftigue Loading is %.3f cm",l_3) |