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 /2510/CH9/EX9.8/Ex9_8.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 '2510/CH9/EX9.8/Ex9_8.sce')
-rwxr-xr-x | 2510/CH9/EX9.8/Ex9_8.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/2510/CH9/EX9.8/Ex9_8.sce b/2510/CH9/EX9.8/Ex9_8.sce new file mode 100755 index 000000000..b34740b1f --- /dev/null +++ b/2510/CH9/EX9.8/Ex9_8.sce @@ -0,0 +1,15 @@ +//Variable declaration: +//From example 9.7: +b = 1.0 //Width of plate (m) +L = 1.2 //Length of plate (m) +TS = 58.0 //Surface temperture of plate (°C) +Ta = 21.0 //Air flow temperature (°C) +h = 38.7 //Average heat transfer coefficient (W/m^2.K) + +//Calculation: +A = b*L //Area for heat transfer for the entire plate (m^2) +Q = h*A*(TS-Ta) //Rate of heat transfer over the whole length of the plate (W) +Q = round(Q*10**-1)/10**-1 + +//Result: +printf("The rate of heat transfer over the whole length of the plate is : %.1f W.",Q) |