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 /3308/CH18/EX18.1/Ex18_1.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 '3308/CH18/EX18.1/Ex18_1.sce')
-rwxr-xr-x | 3308/CH18/EX18.1/Ex18_1.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/3308/CH18/EX18.1/Ex18_1.sce b/3308/CH18/EX18.1/Ex18_1.sce new file mode 100755 index 000000000..06b725a81 --- /dev/null +++ b/3308/CH18/EX18.1/Ex18_1.sce @@ -0,0 +1,19 @@ +clc
+// Given that
+W=400//in mm Lateral(width) Dimension of a plastic shopping bag
+
+// Sample Problem on page no. 484
+
+printf("\n # Blown Film # \n")
+
+//part(a)
+
+P=2*W//in mm Perimeter of bag
+D=P/3.14//in mm blown diameter calculated from Permeter=3.14*diameter
+//Given in this process, a tube is expanded to form 1.5 to 2.5 in times the extrusion die diameter, so take maximum value 2.5
+Dd=D/2.5//Extrusion die diameter
+printf("\n\n Extrusion Die Diameter =%d mm",Dd)
+
+//Answer in the book is approximated to 100mm
+
+//part(b) is theoritical
|