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 /779/CH18/EX18.3 | |
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 '779/CH18/EX18.3')
-rwxr-xr-x | 779/CH18/EX18.3/18_3.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/779/CH18/EX18.3/18_3.sce b/779/CH18/EX18.3/18_3.sce new file mode 100755 index 000000000..e5b11c36e --- /dev/null +++ b/779/CH18/EX18.3/18_3.sce @@ -0,0 +1,8 @@ +P1 = 1; P3 = 9;
+P2 = sqrt(P1*P3);
+T1 = 300; cp = 1.005;
+R = 0.287; n = 1.3;
+W = ((2*n*R*T1)/(n-1))*((P2/P1)^((n-1)/n)-1);
+T2 = T1*(P2/P1)^((n-1)/n);
+H = cp*(T2-T1);
+disp("kJ/kg",H,"Heat rejected to the intercooler is")
\ No newline at end of file |