From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 611/CH4/EX4.8/Chap4_Ex8_R1.sce | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 611/CH4/EX4.8/Chap4_Ex8_R1.sce (limited to '611/CH4/EX4.8/Chap4_Ex8_R1.sce') 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=================================================== -- cgit