diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /551/CH14/EX14.3/3.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '551/CH14/EX14.3/3.sce')
-rwxr-xr-x | 551/CH14/EX14.3/3.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/551/CH14/EX14.3/3.sce b/551/CH14/EX14.3/3.sce new file mode 100755 index 000000000..243ef1939 --- /dev/null +++ b/551/CH14/EX14.3/3.sce @@ -0,0 +1,11 @@ +clc
+T2=268; //K
+T1=308; //K
+Q=29; //Heat leakage from the surroundings into the cold storage in kW
+COP_ideal=T2/(T1-T2);
+COP_actual=1/3*COP_ideal;
+
+W=Q/COP_actual;
+disp("Power required =")
+disp(W)
+disp("kW")
\ No newline at end of file |