blob: 5f2622c9b12bf60c02af8ef667ab7dda88e36b28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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.")
|