diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3681/CH4/EX4.11 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3681/CH4/EX4.11')
-rw-r--r-- | 3681/CH4/EX4.11/Ans4_11.PNG | bin | 0 -> 5850 bytes | |||
-rw-r--r-- | 3681/CH4/EX4.11/Ex4_11.sce | 20 |
2 files changed, 20 insertions, 0 deletions
diff --git a/3681/CH4/EX4.11/Ans4_11.PNG b/3681/CH4/EX4.11/Ans4_11.PNG Binary files differnew file mode 100644 index 000000000..72bd97cd4 --- /dev/null +++ b/3681/CH4/EX4.11/Ans4_11.PNG diff --git a/3681/CH4/EX4.11/Ex4_11.sce b/3681/CH4/EX4.11/Ex4_11.sce new file mode 100644 index 000000000..ed6d148a2 --- /dev/null +++ b/3681/CH4/EX4.11/Ex4_11.sce @@ -0,0 +1,20 @@ +// Calculating the heat conducted across the former from winding to core
+clc;
+disp('Example 4.11, Page No. = 4.17')
+// Given Data
+t = 2.5;// Thickness of former (in mm)
+t_air = 1;// Thickness of air space (in mm)
+lw = 150*250;// The inner dimentions of the former of field coil (in mm square)
+h = 200;// Winding height (in mm)
+s_former = 0.166;// Thermal conductivity of former (in W per meter per degree celsius)
+s_air = 0.05;// Thermal conductivity of air (in W per meter per degree celsius)
+T = 40;// Temperature rise (in degree celsius)
+// Calculation of the heat conducted across the former from winding to core
+S = 2*(150+250)*h*10^(-6);// Area of path of heat flow (in meter square)
+R_former = t*10^(-3)/(S*s_former);// Thermal resistance of former (in ohm)
+R_air = t_air*10^(-3)/(S*s_air);// Thermal resistance of former (in ohm)
+R0 = R_former+R_air;// Since R_former and R_air are in series. Total thermal resistance to heat flow (in ohm)
+Q_con = T/R0;// Heat conducted (in Watts)
+disp(Q_con,'Heat conducted across the former from winding to core (in Watts)=');
+//in book answers is 182.6 Watts. The answers vary due to round off error
+
|