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 /581/CH2/EX2.12/Example2_12.sci | |
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 '581/CH2/EX2.12/Example2_12.sci')
-rwxr-xr-x | 581/CH2/EX2.12/Example2_12.sci | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/581/CH2/EX2.12/Example2_12.sci b/581/CH2/EX2.12/Example2_12.sci new file mode 100755 index 000000000..07dd50477 --- /dev/null +++ b/581/CH2/EX2.12/Example2_12.sci @@ -0,0 +1,9 @@ + clear;
+clc;
+
+printf("\t Example 2.12\n");
+Rf=0.0005; //fouling ressistance,m^2*K/W
+U=5; //heat transfer coefficient,W/(m^2*K)
+Ucor=(U*Rf+1)/(U);
+printf("\t corrected heat transfer coefficient is : %.2f W/(m^2*K)\n therefore the fouling is entirely irrelevant to domestic heat holds.", Ucor);
+//end
|