diff options
Diffstat (limited to '3648/CH10/EX10.4')
-rw-r--r-- | 3648/CH10/EX10.4/Ex10_4.sce | 10 | ||||
-rw-r--r-- | 3648/CH10/EX10.4/Ex10_4.txt | 1 |
2 files changed, 11 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)
diff --git a/3648/CH10/EX10.4/Ex10_4.txt b/3648/CH10/EX10.4/Ex10_4.txt new file mode 100644 index 000000000..88e66bc57 --- /dev/null +++ b/3648/CH10/EX10.4/Ex10_4.txt @@ -0,0 +1 @@ +Volume occupied is V=22.4 Meter^3/Kmol
\ No newline at end of file |