diff options
Diffstat (limited to '3825/CH1/EX1.5')
-rw-r--r-- | 3825/CH1/EX1.5/Ex1_5.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3825/CH1/EX1.5/Ex1_5.sce b/3825/CH1/EX1.5/Ex1_5.sce new file mode 100644 index 000000000..6a2553107 --- /dev/null +++ b/3825/CH1/EX1.5/Ex1_5.sce @@ -0,0 +1,14 @@ +clc
+mol1=0.25 //moles of nitrogen present in mixture
+mol2=0.75 //moles of hydrogen present in mixture
+molmass1=28*(10^(-3))//molar mass of nitrogen in kg
+molmass2=2*(10^(-3)) //molar mass of hydrogen in kg
+mixturemass=(mol1*molmass1)+(mol2*molmass2)//mass of mixture of nitrogen and hydrogen
+mprintf("One mole mixture=%fkg\n",mixturemass)
+Frate1=100 //flow rate of mixture in kg/min
+Frate2=Frate1/mixturemass //flow rate in kmol/min
+mprintf("100kg mixure/min=%fkmol/min",Frate2/1000)//ans varies due to roundoff error
+
+
+
+
|