summaryrefslogtreecommitdiff
path: root/3785/CH3/EX3.9/Ex3_9.sce
diff options
context:
space:
mode:
Diffstat (limited to '3785/CH3/EX3.9/Ex3_9.sce')
-rw-r--r--3785/CH3/EX3.9/Ex3_9.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/3785/CH3/EX3.9/Ex3_9.sce b/3785/CH3/EX3.9/Ex3_9.sce
new file mode 100644
index 000000000..2a6ddc467
--- /dev/null
+++ b/3785/CH3/EX3.9/Ex3_9.sce
@@ -0,0 +1,13 @@
+// Example 3_9
+clc;funcprot(0);
+// Given data
+v=10;// The volume of the tank in m^3
+rho_s0=3.0;// The initial salt density in kg/m^3
+t=0;// Time in s
+Q=0.01;// The volume flow rate in m^3/s
+
+// Calculation
+// (b)
+// V=Q*t;
+V=v*log(2);//
+printf("\nThe volume of fresh water,V=%0.3f m^3",V);