summaryrefslogtreecommitdiff
path: root/914/CH11/EX11.9
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /914/CH11/EX11.9
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '914/CH11/EX11.9')
-rwxr-xr-x914/CH11/EX11.9/ex11_9.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/914/CH11/EX11.9/ex11_9.sce b/914/CH11/EX11.9/ex11_9.sce
new file mode 100755
index 000000000..44c318004
--- /dev/null
+++ b/914/CH11/EX11.9/ex11_9.sce
@@ -0,0 +1,15 @@
+clc;
+warning("off");
+printf("\n\n example11.9 - pg538");
+// given
+Ai=4.869;
+wc=6000;
+cp=1;
+Rf=0.002;
+Uclean=69.685;
+Udirty=1/(Rf+(1/Uclean));
+deltaT1=300-50;
+deltaT2=deltaT1/(exp((Udirty*Ai)/(wc*cp)));
+Th2=300;
+Tc2=Th2-deltaT2;
+printf("\n\n the outlet temperature is \n Tc2 = %f degF",Tc2);