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 --- 647/CH5/EX5.3/Example5_3.sce | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 647/CH5/EX5.3/Example5_3.sce (limited to '647/CH5/EX5.3') diff --git a/647/CH5/EX5.3/Example5_3.sce b/647/CH5/EX5.3/Example5_3.sce new file mode 100755 index 000000000..4cfc0d395 --- /dev/null +++ b/647/CH5/EX5.3/Example5_3.sce @@ -0,0 +1,25 @@ +clear; +clc; + +// Example: 5.3 +// Page: 151 + +printf("Example: 5.3 - Page: 151\n\n"); + +// Solution + +//*****Data*****// +Th = 650 + 273;// [K] +Tl = 30 + 273;// [K] +Qh = 585;// [kJ/cycle] +//*************// + +// Solution (a) +// From Eqn. (5.9) +eta = (Th - Tl)/Th; +printf("(a) The efficiency of the Carnot engine is %.1f %%\n",eta*100); + +// Soluton (b) +// From the knowledge of the ratio of heat and temperature between the two regions: +Ql = Qh*Tl/Th;// [kJ] +printf("(b) Heat released to cold reservoir is %d kJ\n",Ql); \ No newline at end of file -- cgit