summaryrefslogtreecommitdiff
path: root/1019/CH2/EX2.13
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1019/CH2/EX2.13
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '1019/CH2/EX2.13')
-rw-r--r--1019/CH2/EX2.13/Example_2_13.sce16
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