diff options
Diffstat (limited to '3845/CH15/EX15.5/Ex15_5.sce')
-rw-r--r-- | 3845/CH15/EX15.5/Ex15_5.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3845/CH15/EX15.5/Ex15_5.sce b/3845/CH15/EX15.5/Ex15_5.sce new file mode 100644 index 000000000..4c087b820 --- /dev/null +++ b/3845/CH15/EX15.5/Ex15_5.sce @@ -0,0 +1,12 @@ +//Example 15.5
+Tc=-15;//Cold reservoir temperature (C)
+Tc=Tc+273;//Cold reservoir temperature (K)
+Th=45;//Hot reservoir temperature (C)
+Th=Th+273;//Hot reservoir temperature (K)
+Eff_C=1-Tc/Th;//Carnot efficiency
+COP_hp=1/Eff_C;//Coefficient of performance of the heat pump
+printf('Coefficient of performance for the heat pump = %0.2f',COP_hp)
+printf('\nHeat transfer Q_h is %0.2f times the work input W',COP_hp)
+//Since COP_hp=Q_h/W
+//Openstax - College Physics
+//Download for free at http://cnx.org/content/col11406/latest
|