summaryrefslogtreecommitdiff
path: root/611/CH4/EX4.8/Chap4_Ex8_R1.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /611/CH4/EX4.8/Chap4_Ex8_R1.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 '611/CH4/EX4.8/Chap4_Ex8_R1.sce')
-rwxr-xr-x611/CH4/EX4.8/Chap4_Ex8_R1.sce23
1 files changed, 23 insertions, 0 deletions
diff --git a/611/CH4/EX4.8/Chap4_Ex8_R1.sce b/611/CH4/EX4.8/Chap4_Ex8_R1.sce
new file mode 100755
index 000000000..7b2d1be3b
--- /dev/null
+++ b/611/CH4/EX4.8/Chap4_Ex8_R1.sce
@@ -0,0 +1,23 @@
+// Y.V.C.Rao ,1997.Chemical Engineering Thermodynamics.Universities Press,Hyderabad,India.
+
+//Chapter-4,Example 8,Page 104
+//Title:Isobaric molar heat capacity
+//================================================================================================================
+clear
+clc
+
+//INPUT
+T1=298;//initial temperature in K
+T2=600;//final raised temperature in K
+a=45.369;//coefficient in the specific heat capacity expression where Cp=a+bT+eT^-2
+b=8.688*10^-3;//coefficient in the specific heat capacity expression where Cp=a+bT+eT^-2
+e=-9.619*10^5;//coefficient in the specific heat capacity expression where Cp=a+bT+eT^-2
+//Where Cp is in J/molK
+
+//CALCULATION
+Cpm=((a*(T2-T1))+((b/2)*(T2^2-T1^2))-(e*((1/T2)-(1/T1))))/(T2-T1);//calculation of isobaric molar heat capacity in J/molK using Eq.(4.26)
+
+//OUTPUT
+mprintf('\n The isobaric molar heat capacity= %0.2f J/molK\n',Cpm);
+
+//===============================================END OF PROGRAM===================================================