summaryrefslogtreecommitdiff
path: root/587/CH1/EX1.10/example1_10.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /587/CH1/EX1.10/example1_10.sce
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 '587/CH1/EX1.10/example1_10.sce')
-rwxr-xr-x587/CH1/EX1.10/example1_10.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/587/CH1/EX1.10/example1_10.sce b/587/CH1/EX1.10/example1_10.sce
new file mode 100755
index 000000000..1341a6ed4
--- /dev/null
+++ b/587/CH1/EX1.10/example1_10.sce
@@ -0,0 +1,17 @@
+clear;
+clc;
+
+//Example1.10[Heat Loss from a Person]
+//Given:-
+T_room=20+273;//Temperature of breezy room[K]
+T_outr=29+273;//Average outer surface temperature of the person[K]
+As=1.6;//Exposed Surface Area[m^2]
+h=6;//Convection Heat transfer coefficient[W/m^2.K]
+e=0.95;//Emissivity of person
+sigma=5.67*(10^(-8));//Stephan's constant[W/m^2.degree Celcius]
+Q_conv=h*As*(T_outr-T_room);//[W]
+disp("W",Q_conv,"Rate of convection heat transfer from the person to the air in the room is")
+Q_rad=e*sigma*As*((T_outr^4)-(T_room^4));//[W]
+disp("W",Q_rad,"The rate of convection heat transfer from the person to the surrounding walls,cieling,fllor is")
+Q_total=Q_conv+Q_rad;//[W]
+disp("W",round(Q_total),"The rate of total heat transfer from the body is ") \ No newline at end of file