diff options
Diffstat (limited to '647/CH5/EX5.3/Example5_3.sce')
-rwxr-xr-x | 647/CH5/EX5.3/Example5_3.sce | 25 |
1 files changed, 25 insertions, 0 deletions
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 |