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 --- 779/CH13/EX13.3/13_3.sce | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 779/CH13/EX13.3/13_3.sce (limited to '779/CH13/EX13.3') diff --git a/779/CH13/EX13.3/13_3.sce b/779/CH13/EX13.3/13_3.sce new file mode 100755 index 000000000..2381ba2f8 --- /dev/null +++ b/779/CH13/EX13.3/13_3.sce @@ -0,0 +1,23 @@ +rk = 16; +T1 = 273+15; +P1 = 100; // in kN/m2 +T3 = 1480+273; +g = 1.4; // gamma +R = 0.287; +T2 = 288*(rk^(g-1)); +rc = T3/T2 ; +cp = 1.005; cv = 0.718; +Q1 = cp*(T3-T2); +T4 = T3*((rc/rk)^(g-1)); +Q2 = cv*(T4-T1); +n = 1-(Q2/Q1); // cycle efficiency +n_ = 1-((1/g))*(1/rk^(g-1))*((rc^(g-1))/(rc-1)); // cycle efficiency from another formula +Wnet = Q1*n; +v1 = (R*T1)/P1 ; +v2 = v1/rk; +Pm = Wnet/(v1-v2); +disp(rc,"cut-off ratio is") +disp("kJ/kg",Q1,"Heat supplied per kg of air is") +disp("%",n*100,"Cycle efficiency is") +disp("KPa",Pm,"Mean effective pressure is") + -- cgit