diff options
Diffstat (limited to '3648/CH10/EX10.4/Ex10_4.sce')
-rw-r--r-- | 3648/CH10/EX10.4/Ex10_4.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/3648/CH10/EX10.4/Ex10_4.sce b/3648/CH10/EX10.4/Ex10_4.sce new file mode 100644 index 000000000..b76717aa5 --- /dev/null +++ b/3648/CH10/EX10.4/Ex10_4.sce @@ -0,0 +1,10 @@ +//Example 10_4
+clc();
+clear;
+//To find the volume that one kilomole of an ideal gas occupies
+p=1.013*10^5 //units in Pa
+t=273.15 //units in K
+n=1 //units in K mol
+R=8314 //units in J/Kmol K
+v=(n*R*t)/p //units in Meter^3/Kmol
+printf("Volume occupied is V=%.1f Meter^3/Kmol",v)
|