diff options
Diffstat (limited to '1019/CH2/EX2.13/Example_2_13.sce')
-rw-r--r-- | 1019/CH2/EX2.13/Example_2_13.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/1019/CH2/EX2.13/Example_2_13.sce b/1019/CH2/EX2.13/Example_2_13.sce new file mode 100644 index 000000000..58deac87b --- /dev/null +++ b/1019/CH2/EX2.13/Example_2_13.sce @@ -0,0 +1,16 @@ +//Example 2.13
+clear;
+clc;
+
+//Given
+R=8.314;// gas constant in J K^-1 mol^-1
+p1=10;// initial pressure in atm
+p2=1;// final pressure in atm
+T=300;// temperature in K
+
+// To determine Wexp and Wcomp
+Wexp=R*T*(1-(p2/p1));//work done in J mol^-1 during expansion
+Wcomp=(-1)*R*T*(1-(p1/p2));//work done in J mol^-1 during compression
+mprintf('(i) Work done by the system in expansion process = %f J mol^-1',Wexp);
+mprintf('\n (ii) Work done on the system during compression process = %f J mol^-1',Wcomp);
+//end
\ No newline at end of file |