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/CH20 | |
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/CH20')
-rw-r--r-- | 3456/CH20/EX20.1/Ex20_1.sce | 11 | ||||
-rw-r--r-- | 3456/CH20/EX20.2/Ex20_2.sce | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/3456/CH20/EX20.1/Ex20_1.sce b/3456/CH20/EX20.1/Ex20_1.sce new file mode 100644 index 000000000..f19d65f15 --- /dev/null +++ b/3456/CH20/EX20.1/Ex20_1.sce @@ -0,0 +1,11 @@ +//Example 20.1
+//Deep Drawing
+//Page No. 672
+clc;clear;close;
+
+le=0.3; //factor (no unit)
+wd=-0.16; //factor (no unit)
+l_l0=1+le;
+w_w0=1+wd;
+R=log(1/w_w0)/log((w_w0)*l_l0);
+printf('\nLimiting ratio = %g',R);
diff --git a/3456/CH20/EX20.2/Ex20_2.sce b/3456/CH20/EX20.2/Ex20_2.sce new file mode 100644 index 000000000..0819f3b31 --- /dev/null +++ b/3456/CH20/EX20.2/Ex20_2.sce @@ -0,0 +1,11 @@ +//Example 20.2
+//Forming Limit Criteria
+//Page No. 675
+clc;clear;close;
+
+d=0.1; //in inches
+mj_d=0.18; //in inches
+mn_d=0.08; //in inches
+e1=(mj_d-d)/d;
+e2=(mn_d-d)/d;
+printf('\nMajor Strain = %g percent \nMinor Strain = %g percent',e1*100,e2*100);
|