summaryrefslogtreecommitdiff
path: root/3456/CH18/EX18.1
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /3456/CH18/EX18.1
downloadScilab-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/CH18/EX18.1')
-rw-r--r--3456/CH18/EX18.1/Ex18_1.sce24
1 files changed, 24 insertions, 0 deletions
diff --git a/3456/CH18/EX18.1/Ex18_1.sce b/3456/CH18/EX18.1/Ex18_1.sce
new file mode 100644
index 000000000..bffaa1e00
--- /dev/null
+++ b/3456/CH18/EX18.1/Ex18_1.sce
@@ -0,0 +1,24 @@
+//Example 18.1
+//Extrusion Process
+//Page No. 629
+clc;clear;close;
+
+Db=6; //in inches
+Df=2; //in inches
+L=15; //in inches
+v=2; //in inches/s
+alpha=60; //in degrees
+mu=0.1; //no unit
+R=Db^2/Df^2;
+e=6*v*log(R)/Db
+sigma=200*e^0.15;
+B=mu*cotd(alpha);
+p_d=sigma*((1+B)/B)*(1-R^B);
+p_d=abs(p_d);
+t_i=sigma/sqrt(3);
+p_e=p_d+4*t_i*L/Db;
+p_e=p_e*145.0377; //conversion to psi
+A=%pi*Db^2/4;
+P=p_e*A;
+P=P*0.000453; //conversion to metric tons
+printf('\nForce required for the Operation = %g metric tons\n\n\nNote: Slight calculation errors in book',P);