summaryrefslogtreecommitdiff
path: root/2175/CH6/EX6.6
diff options
context:
space:
mode:
Diffstat (limited to '2175/CH6/EX6.6')
-rwxr-xr-x2175/CH6/EX6.6/6_6.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/2175/CH6/EX6.6/6_6.sce b/2175/CH6/EX6.6/6_6.sce
new file mode 100755
index 000000000..7f4e9392a
--- /dev/null
+++ b/2175/CH6/EX6.6/6_6.sce
@@ -0,0 +1,15 @@
+clc;
+m_H=2;
+m_CO=28;
+xH=0.8;
+xCO=0.2;
+
+m_=xH*m_H+xCO*m_CO;
+
+x=(xH-0.5)*9;
+disp("mass of mixture removed is:");
+disp("kg",x)
+
+y=28/7.2*x;
+disp("mass of CO added");
+disp("kg",y)