summaryrefslogtreecommitdiff
path: root/965/CH9/EX9.6
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /965/CH9/EX9.6
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '965/CH9/EX9.6')
-rw-r--r--965/CH9/EX9.6/6.sci21
1 files changed, 21 insertions, 0 deletions
diff --git a/965/CH9/EX9.6/6.sci b/965/CH9/EX9.6/6.sci
new file mode 100644
index 000000000..bfd1f4b3d
--- /dev/null
+++ b/965/CH9/EX9.6/6.sci
@@ -0,0 +1,21 @@
+clc;
+clear all;
+disp("power dissipation/length")
+d=0.01;//m
+e=0.92;
+ts=260;// degree C
+rhol=958.4;// kg/m^3
+hfg=2257*10^3;//J/kg
+rhov=4.807;// k/m^3
+cpv=2.56*10^3;// J/kg.K
+k=0.0331;// W/m.K
+muv=14.85*10^(-6);// Ns/m^2
+mug=muv;;
+g=9.81;//m/s
+ta=100;// degree C
+te=ts-ta;// excess temperature
+hconv=0.65*(k^3*rhov*(rhol-rhov)*g*(hfg+0.4*cpv*te)/(muv*d*te))^0.25;
+hrad=5.67*10^(-8)*e*(ts^4-ta^4)/(ts-ta);
+h=hconv+3*hrad/4;
+Q=h*%pi*d*(ts-ta);//
+disp("W",Q,"power dissipation per unit length for the heater =")