summaryrefslogtreecommitdiff
path: root/2510/CH4/EX4.5/Ex4_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '2510/CH4/EX4.5/Ex4_5.sce')
-rwxr-xr-x2510/CH4/EX4.5/Ex4_5.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/2510/CH4/EX4.5/Ex4_5.sce b/2510/CH4/EX4.5/Ex4_5.sce
new file mode 100755
index 000000000..c6b406a3f
--- /dev/null
+++ b/2510/CH4/EX4.5/Ex4_5.sce
@@ -0,0 +1,12 @@
+//Variable declaration:
+m1 = 1000 //Flowrate data 1 (lb/min)
+m2 = 1000 //Flowrate data 2 (lb/min)
+m4 = 200 //Flowrate data 4 (lb/min)
+
+//Calculations:
+m5 = m1 + m2 - m4 //Flowrate data 5 (lb/min)
+m6 = m2 //Flowrate data 6 (lb/min)
+m = m5 - m6 //Flowrate of water lost in operation (lb/min)
+
+//Result:
+printf ("The amount of water lost by evaporation in the operation is %.0f lb/min",m)