diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /944/CH5/EX5.10 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '944/CH5/EX5.10')
-rwxr-xr-x | 944/CH5/EX5.10/example5_10_TACC.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/944/CH5/EX5.10/example5_10_TACC.sce b/944/CH5/EX5.10/example5_10_TACC.sce new file mode 100755 index 000000000..27c8c22e3 --- /dev/null +++ b/944/CH5/EX5.10/example5_10_TACC.sce @@ -0,0 +1,18 @@ +//example 5.10
+
+clear;
+clc;
+
+//Given:
+mass=32;//weight of methane gas[gm]
+P1=6*10^5;//Initial temperature[N/m2]
+P2=3*10^5;//Final pressure[N/m2]
+mol.wt=16;//molecular weight of methane gas[g/mol]
+T=298;//Temperature[K]
+//Isothermal process
+R=8.314;//Universal gas constant[J/K/mol]
+
+//To find the change in entropy of the gas
+n=mass/mol.wt;//no. of moles
+S=n*R*log(P1/P2);//change in entropy of gas[J/K]
+printf("The change in entropy of the gas is %f J/K",S);
\ No newline at end of file |