diff options
Diffstat (limited to '1379/CH12/EX12.1.5')
-rwxr-xr-x | 1379/CH12/EX12.1.5/example12_5.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1379/CH12/EX12.1.5/example12_5.sce b/1379/CH12/EX12.1.5/example12_5.sce new file mode 100755 index 000000000..f99f24ae6 --- /dev/null +++ b/1379/CH12/EX12.1.5/example12_5.sce @@ -0,0 +1,15 @@ +
+
+//example 12.5
+clc; funcprot(0);
+// Initialization of Variable
+l=25;
+pi=3.1428;
+rhos=2690;//density of ore
+emin=0.6;
+emax=0.8;
+//calculation
+Pmax=rhos*(1-emin)*g*l;
+disp(Pmax,"The maximum pressure drop in (N/m^2):");
+Pmin=rhos*(1-emax)*g*l;
+disp(Pmin,"The minimum pressure drop in (N/m^2):");
|