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 --- 2006/CH10/EX10.5/ex10_5.sce | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 2006/CH10/EX10.5/ex10_5.sce (limited to '2006/CH10/EX10.5/ex10_5.sce') diff --git a/2006/CH10/EX10.5/ex10_5.sce b/2006/CH10/EX10.5/ex10_5.sce new file mode 100755 index 000000000..b9f433b0d --- /dev/null +++ b/2006/CH10/EX10.5/ex10_5.sce @@ -0,0 +1,10 @@ +clc; +T=700;// Exhaust gas temperature in degree celcius +p=120;// Exhaust gas pressure in kPa +Cpo=1.089; // Specific heat at constant pressure in kJ/kg K +R=0.287; // characteristic gas constant in kJ/kg K +p0=100; // Pressure of Surroundings in kPa +T0=30; // temperature of Surroundings in degree celcius +Cvo=Cpo-R; // Specific heat at constant volume +AE=(Cvo*(T-T0))+(p0*R*((T+273)/p-(T0+273)/p0))-((T0+273)*((Cpo*log((T+273)/(T0+273)))-(R*log (p/p0)))); // Available energy +disp ("kJ",AE,"Available energy in Exhaust gas ="); -- cgit