diff options
Diffstat (limited to '944/CH5/EX5.2/example5_2_TACC.sce')
-rwxr-xr-x | 944/CH5/EX5.2/example5_2_TACC.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/944/CH5/EX5.2/example5_2_TACC.sce b/944/CH5/EX5.2/example5_2_TACC.sce new file mode 100755 index 000000000..b22f97a64 --- /dev/null +++ b/944/CH5/EX5.2/example5_2_TACC.sce @@ -0,0 +1,13 @@ +//example 5.2
+
+clear;
+clc;
+
+//given:
+T1=250;//temperature of heat rejection[K]
+T2=1000;//temperature of heat absorption[K]
+
+//to analyse the efficiency of the engine
+e=1-(T1/T2);
+printf("Efficiency of the corresponding carnot engine = %f\n",e);
+disp(" Therefore , the inventors claim of 80% efficiency is absurd.The patent application should be rejected");
|