diff options
Diffstat (limited to '3428/CH21/EX14.21.1/Ex14_21_1.sce')
-rw-r--r-- | 3428/CH21/EX14.21.1/Ex14_21_1.sce | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/3428/CH21/EX14.21.1/Ex14_21_1.sce b/3428/CH21/EX14.21.1/Ex14_21_1.sce index 5147f322f..0fdcd9a5e 100644 --- a/3428/CH21/EX14.21.1/Ex14_21_1.sce +++ b/3428/CH21/EX14.21.1/Ex14_21_1.sce @@ -2,10 +2,10 @@ //To find the temperature at which pressure of gas will reach the bursting value.
clc;
//PV=nRT
-P=10
-V=(10^-3)*(1/10^-3)
-n=((5*10^-3)/30)
-R=0.0821
+P=10 //atm
+V=(10^-3)*(1/10^-3) //L
+n=((5*10^-3)/30) //mol
+R=0.0821 //(LatmK^-1mol^-1)
T=((P*V)/(n*R))
disp(T,'Required temperature(K)')
-
+//Answer given in the book T=730.9 K is wrong.
|