summaryrefslogtreecommitdiff
path: root/1943/CH5/EX5.1/Ex5_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '1943/CH5/EX5.1/Ex5_1.sce')
-rwxr-xr-x1943/CH5/EX5.1/Ex5_1.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/1943/CH5/EX5.1/Ex5_1.sce b/1943/CH5/EX5.1/Ex5_1.sce
new file mode 100755
index 000000000..8caf9211e
--- /dev/null
+++ b/1943/CH5/EX5.1/Ex5_1.sce
@@ -0,0 +1,14 @@
+
+clc
+clear
+//Input data
+Vs=2500;//The mass of a bed of solid particles in kg
+p=2650;//The density of the solid in kg/m^3
+d=800*10^-6;//The mean particle size in m
+s=0.84;//The sphericity of the particle
+
+//Calculations
+As=(6*Vs)/(p*d*s);//The total surface area of the particles in the bed
+
+//Output
+printf(' The total surface area of the particles in the bed As = %3.0f m^2 ',As)