summaryrefslogtreecommitdiff
path: root/3428/CH21/EX14.21.7/Ex14_21_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '3428/CH21/EX14.21.7/Ex14_21_7.sce')
-rw-r--r--3428/CH21/EX14.21.7/Ex14_21_7.sce8
1 files changed, 4 insertions, 4 deletions
diff --git a/3428/CH21/EX14.21.7/Ex14_21_7.sce b/3428/CH21/EX14.21.7/Ex14_21_7.sce
index 578eaf75a..d79e1479b 100644
--- a/3428/CH21/EX14.21.7/Ex14_21_7.sce
+++ b/3428/CH21/EX14.21.7/Ex14_21_7.sce
@@ -2,9 +2,9 @@
//To calculate temperature at which v_mp of oxygen= v_mp of hydrogen
clc;
//v_mp=sqrt((2*R*T)/M)
-M_O2=32
-M_H2=2
-T_H2=298
+M_O2=32 //mol^-1
+M_H2=2 //mol^-1
+T_H2=298 //K
//v_mp(O2)/v_mp(H2)=(T_O2/M_O2)/(T_H2/M_H2)=1
-T_O2=T_H2*(M_O2/M_H2)
+T_O2=T_H2*(M_O2/M_H2) //K
disp(T_O2,'Required temperature(K)')