diff options
Diffstat (limited to '2175/CH14/EX14.1')
-rwxr-xr-x | 2175/CH14/EX14.1/14_1.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2175/CH14/EX14.1/14_1.sce b/2175/CH14/EX14.1/14_1.sce new file mode 100755 index 000000000..c1bcbce8d --- /dev/null +++ b/2175/CH14/EX14.1/14_1.sce @@ -0,0 +1,14 @@ +clc;
+T1=-30+273;//K
+T2=32+273;//K
+
+COP=T1/(T2-T1);
+
+eff=0.75;
+acctual_COP=eff*(COP);
+
+Q=5;//kW
+W=Q/acctual_COP;
+
+disp("required powar input is:");
+disp("kW",W);
|