summaryrefslogtreecommitdiff
path: root/965/CH7/EX7.63/63.sci
diff options
context:
space:
mode:
Diffstat (limited to '965/CH7/EX7.63/63.sci')
-rw-r--r--965/CH7/EX7.63/63.sci18
1 files changed, 18 insertions, 0 deletions
diff --git a/965/CH7/EX7.63/63.sci b/965/CH7/EX7.63/63.sci
new file mode 100644
index 000000000..3ab5689d0
--- /dev/null
+++ b/965/CH7/EX7.63/63.sci
@@ -0,0 +1,18 @@
+clc;
+clear all;
+disp("heat transfer coefficient")
+d=0.025;//m
+ta=30;// degree C
+U=2.5;// m/s
+ts=85;// degree C
+rhoc=0.0175*10^(-6);// ohm.m^3/m
+k=0.02673;// W/m.C
+v=16*10^(-6);// m^2/s
+Re=U*d/v;
+Nu=0.22*Re^0.6;
+h=Nu*k/d;
+disp("W/m^2.C",h,"The heat transfer coefficient from the surface to the air =")
+Q=h*%pi*d*1*(ts-ta);
+R=rhoc*1/(%pi*d^2/4);
+I=(Q/R)^0.5;
+disp("amps",I,"permissible current intensity for the bus bar, I =")