summaryrefslogtreecommitdiff
path: root/551/CH13/EX13.5/5.sce
diff options
context:
space:
mode:
Diffstat (limited to '551/CH13/EX13.5/5.sce')
-rwxr-xr-x551/CH13/EX13.5/5.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/551/CH13/EX13.5/5.sce b/551/CH13/EX13.5/5.sce
new file mode 100755
index 000000000..5f2622c9b
--- /dev/null
+++ b/551/CH13/EX13.5/5.sce
@@ -0,0 +1,17 @@
+clc
+
+T1=1990; //K
+T2=850; //K
+Q=32.5/60; //kJ/s
+P=0.4; //kW
+
+n_carnot=(T1-T2)/T1;
+disp("most efficient engine is one that works on Carnot cycle")
+disp(n_carnot)
+
+n_th=P/Q;
+disp("n_thermal =")
+disp(n_th)
+
+disp("which is not feasible as no engine can be more efficient than that working on Carnot")
+disp("Hence claims of the inventor is not true.") \ No newline at end of file