summaryrefslogtreecommitdiff
path: root/3774/CH4/EX4.4
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3774/CH4/EX4.4
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 '3774/CH4/EX4.4')
-rw-r--r--3774/CH4/EX4.4/Ex4_4.sce33
1 files changed, 33 insertions, 0 deletions
diff --git a/3774/CH4/EX4.4/Ex4_4.sce b/3774/CH4/EX4.4/Ex4_4.sce
new file mode 100644
index 000000000..26b769886
--- /dev/null
+++ b/3774/CH4/EX4.4/Ex4_4.sce
@@ -0,0 +1,33 @@
+// exa 4.4 Pg 105
+clc;clear;close;
+
+// Given Data
+Sut=440;//MPa
+w=60;//mm
+d=12;// mm
+P=20;// kN
+q=0.8;// sensitivity factor
+R=90/100;// reliability
+n=2;// factor of safety
+
+Kt=2.52;// stress concentration factor
+Se_dash = 0.5*Sut;// MPa
+// for hot rollednormalized condition
+ka=0.67;// surface finish factor
+kb=0.85;// size factor (assuming t<50 mm)
+kc=0.897;// reliability factor
+kd=1;// temperature factor
+ke=0.9;// load factor
+dBYw=d/w; //(for circular hole)
+
+Kf=1+q*(Kt-1);// fatigue strength factor
+kf=1/Kf ;// fatigue strength reduction factor
+Se=ka*kb*kc*kd*ke*kf*Se_dash;// (MPa) Endurance limit
+sigma_d=Se/n;// MPa (design stress)
+// sigma_max=P/(w-d)/t
+sigma_max_into_t = P*1000/(w-d);
+// putting sigma_max=sigma_d
+t=sigma_max_into_t/sigma_d;// mm
+printf('\n Thickness of plate = %.2f mm or 20 mm',t)
+
+