summaryrefslogtreecommitdiff
path: root/647/CH5/EX5.8/Example5_8.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /647/CH5/EX5.8/Example5_8.sce
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 '647/CH5/EX5.8/Example5_8.sce')
-rwxr-xr-x647/CH5/EX5.8/Example5_8.sce21
1 files changed, 21 insertions, 0 deletions
diff --git a/647/CH5/EX5.8/Example5_8.sce b/647/CH5/EX5.8/Example5_8.sce
new file mode 100755
index 000000000..cb3908c4f
--- /dev/null
+++ b/647/CH5/EX5.8/Example5_8.sce
@@ -0,0 +1,21 @@
+clear;
+clc;
+
+// Example: 5.8
+// Page: 164
+
+printf("Example: 5.8 - Page: 164\n\n");
+
+// Solution
+
+//*****Data*****//
+V1 = 5;// [L]
+V2 = 50;// [L]
+n = 5;// [moles]
+R = 1.987;// [cal/mol K]
+//**************//
+
+// Change in entropy for an isothermal change for an ideal gas:
+// deltaS = n*R*log(P1/P2) = n*R*log(V2/V1)
+deltaS = n*R*log(V2/V1);// [cal/degree]
+printf("Change in Entropy is %.3f eu",deltaS); \ No newline at end of file