summaryrefslogtreecommitdiff
path: root/24/CH20/EX20.2
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /24/CH20/EX20.2
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '24/CH20/EX20.2')
-rwxr-xr-x24/CH20/EX20.2/Example20_2.sce11
-rwxr-xr-x24/CH20/EX20.2/Example20_2_result.txt2
2 files changed, 13 insertions, 0 deletions
diff --git a/24/CH20/EX20.2/Example20_2.sce b/24/CH20/EX20.2/Example20_2.sce
new file mode 100755
index 000000000..9aa4e7105
--- /dev/null
+++ b/24/CH20/EX20.2/Example20_2.sce
@@ -0,0 +1,11 @@
+//Given that
+n = 1 //in mole
+T = 310 //in K
+Vi = 12 //in L
+Vf = 19 //in L
+R = .0821 //in atm.lit/(mol.K)
+
+//Sample Probelm 20-2
+printf("**Sample Problem 20-2**\n")
+W = n*R*T*log(Vf/Vi) //in atm.lit
+printf("The work done by the gas is equal to %fJ", W*1.0125*10^5*10^-3) \ No newline at end of file
diff --git a/24/CH20/EX20.2/Example20_2_result.txt b/24/CH20/EX20.2/Example20_2_result.txt
new file mode 100755
index 000000000..436eb5752
--- /dev/null
+++ b/24/CH20/EX20.2/Example20_2_result.txt
@@ -0,0 +1,2 @@
+**Sample Problem 20-2**
+The work done by the gas is equal to 1184.175178J \ No newline at end of file