diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3831/CH10/EX10.14 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3831/CH10/EX10.14')
-rw-r--r-- | 3831/CH10/EX10.14/Ex10_14.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3831/CH10/EX10.14/Ex10_14.sce b/3831/CH10/EX10.14/Ex10_14.sce new file mode 100644 index 000000000..d3a431797 --- /dev/null +++ b/3831/CH10/EX10.14/Ex10_14.sce @@ -0,0 +1,12 @@ +// Example 10_14
+clc;funcprot(0);
+// Given data
+T_L=20+273.15;// K
+T_0=T_L;// K
+T_H=35.0+273.15;// K
+COP_act=8.92;// Actual Coefficient of Performance
+
+// Calculation
+COP_Carnot=T_L/(T_H-T_L);// The coefficient of performance of a Carnot refrigerator or air conditioner
+epsilon_RAC=(COP_act/COP_Carnot)*100;// The second law efficiency in %
+printf("\nThe second law availability efficiency of this air conditioner,epsilon_R/AC=%2.1f percentage",epsilon_RAC);
|