summaryrefslogtreecommitdiff
path: root/3257/CH11/EX11.1
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /3257/CH11/EX11.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 '3257/CH11/EX11.1')
-rwxr-xr-x3257/CH11/EX11.1/Ex11_1.sce25
-rwxr-xr-x3257/CH11/EX11.1/Ex11_1.txt10
2 files changed, 35 insertions, 0 deletions
diff --git a/3257/CH11/EX11.1/Ex11_1.sce b/3257/CH11/EX11.1/Ex11_1.sce
new file mode 100755
index 000000000..748aea2b1
--- /dev/null
+++ b/3257/CH11/EX11.1/Ex11_1.sce
@@ -0,0 +1,25 @@
+// Particle shape factor determination
+clc
+D = 1 // let
+L = 1 //let
+h = 2*D // length to diameter ratio
+printf("\n Example 11.1")
+printf("\n Part A:")
+D_eq = D
+A = %pi*D^2
+V = %pi*D^3/6
+k = A/V*D_eq
+printf("\n Shape factor for spherical particle is %d",k)
+printf("\n\n Part B:")
+A = 6*L^2
+V = L^3
+D_eq = (6*V/%pi)^(1/3)
+k = A/V*D_eq
+printf("\n Shape factor for cubic particle is %.2f",k)
+printf("\n\n Part C:")
+A = 2*%pi*D^2/4+%pi*D*h
+V= %pi*D^2/4*h
+D_eq = (6*V/%pi)^(1/3)
+k = A/V*D_eq
+printf("\n Shape factor for cylindrical particle is %.2f",k)
+
diff --git a/3257/CH11/EX11.1/Ex11_1.txt b/3257/CH11/EX11.1/Ex11_1.txt
new file mode 100755
index 000000000..0a0c8d6f9
--- /dev/null
+++ b/3257/CH11/EX11.1/Ex11_1.txt
@@ -0,0 +1,10 @@
+
+ Example 11.1
+ Part A:
+ Shape factor for spherical particle is 6
+
+ Part B:
+ Shape factor for cubic particle is 7.44
+
+ Part C:
+ Shape factor for cylindrical particle is 7.21 \ No newline at end of file