diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /3456/CH12/EX12.2/Ex12_2.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '3456/CH12/EX12.2/Ex12_2.sce')
-rw-r--r-- | 3456/CH12/EX12.2/Ex12_2.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3456/CH12/EX12.2/Ex12_2.sce b/3456/CH12/EX12.2/Ex12_2.sce new file mode 100644 index 000000000..8566ca212 --- /dev/null +++ b/3456/CH12/EX12.2/Ex12_2.sce @@ -0,0 +1,14 @@ +//Example 12.2
+//Low Cycle Fatigue
+//Page No. 391
+clc;clear;close;
+
+sigma_b=75; //in MPa
+e_b=0.000645; //no unit
+e_f=0.3; //no unit
+E=22*10^4; //in MPa
+c=-0.6; //no unit
+d_e_e=2*sigma_b/E;
+d_e_p=2*e_b-d_e_e;
+N=(d_e_p/(2*e_f))^(1/c)/2;
+printf('\nd_e_e = %g\nd_e_p = %g\nNumber of Cycles = %g cycles',d_e_e,d_e_p,N);
|