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 /542/CH3/EX3.2/Example_3_2.sci | |
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 '542/CH3/EX3.2/Example_3_2.sci')
-rwxr-xr-x | 542/CH3/EX3.2/Example_3_2.sci | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/542/CH3/EX3.2/Example_3_2.sci b/542/CH3/EX3.2/Example_3_2.sci new file mode 100755 index 000000000..6db4fba1e --- /dev/null +++ b/542/CH3/EX3.2/Example_3_2.sci @@ -0,0 +1,38 @@ +clear;
+clc;
+printf("\n Example 3.2");
+u_water = 5*10^(-3); //The flow velocity of the water in m/sec
+p_galena = 7500; //The density of galena is in kg/m^3
+p_limestone = 2700; //The density of limestone is in kg/m^3
+viscosity = 0.001; //The viscosity of water in N s/m^2
+
+//calculating maximum value of reynold's number considering 5mm particle size
+Re_max = (u_water*1000*0.0001)/(viscosity);
+printf("\n The maximum permissible value of Re is %f",Re_max);
+
+//maximum particle size of galena which will be carried away by water
+d = sqrt((u_water*(18*viscosity))/((7500-1000)*9.81));
+printf("\nmaximum particle size of galena which will be carried away by water is %.1f um",d*10^(6));
+
+//maximum particle size of limestone which will be carried away by water
+d1 = sqrt((u_water*(18*viscosity))/((2700-1000)*9.81));
+printf("\nmaximum particle size of limestone which will be carried away by water is %.1f um",d1*10^(6));
+
+
+//From the given data 43% galena and 74% limestone will be removed .
+//Given that in the feed there is 20% galena and 80% limestone
+//Assuming 100g feed
+printf("\n\nIn the overflow:");
+printf("\nAmount of galena is %fg",(20*0.43));
+printf("\nAmount of limestone is %fg",(80*0.74));
+printf("\nconcentration of galena is %.1f per cent",(20*0.43*100)/(20*0.43+80*0.74));
+printf("\n\concentration of galena is %fper cent",(80*0.74*100)/(20*0.43+80*0.74));
+printf("\n\nIn the underflow:")
+printf("\nconcentration of galena is %.1f percent",(20*(1-0.43)*100)/(20*(1-0.43)+80*0.26))
+printf("\nconcentration of limestone is %.1f per cent",(80*0.26*100)/(20*0.57+80*0.26))
+
+
+
+
+
+
|