summaryrefslogtreecommitdiff
path: root/Engineering_Heat_Transfer/CHAPTER12.ipynb
diff options
context:
space:
mode:
Diffstat (limited to 'Engineering_Heat_Transfer/CHAPTER12.ipynb')
-rw-r--r--Engineering_Heat_Transfer/CHAPTER12.ipynb39
1 files changed, 0 insertions, 39 deletions
diff --git a/Engineering_Heat_Transfer/CHAPTER12.ipynb b/Engineering_Heat_Transfer/CHAPTER12.ipynb
index 1d32142c..dacb5289 100644
--- a/Engineering_Heat_Transfer/CHAPTER12.ipynb
+++ b/Engineering_Heat_Transfer/CHAPTER12.ipynb
@@ -27,27 +27,20 @@
"cell_type": "code",
"collapsed": false,
"input": [
- "# Determination of the heat transferred by radiation from dA1 to A. \n",
"\n",
- "#Given\n",
- "# The view factor Fd1_2 can be calculated as Fd1_2=Fd1_3+Fd1_4+Fd1_5\n",
- "# For Fd1_3\n",
"a_13=100.0\n",
"b_13=250.0\n",
"c_13=100.0\n",
"X_13=a_13/c_13\n",
"Y_13=b_13/c_13\n",
"Fd1_3=0.17 # value for Fd1_3 corresponding to above calculated values of a/c and b/c\n",
- "# For Fd1_4\n",
"a_14=300\n",
"b_14=50\n",
"c_14=100\n",
"\n",
- "#Calculation\n",
"X_14=a_14/c_14\n",
"Y_14=b_14/c_14\n",
"Fd1_4=0.11 #value for Fd1_4 corresponding to above calculated values of a/c and b/c\n",
- "# For Fd1_5\n",
"a_15=100\n",
"b_15=50\n",
"c_15=100\n",
@@ -60,7 +53,6 @@
"T2=560\n",
"q12_A1=sigma*Fd1_2*(T1**4-T2**4)\n",
"\n",
- "#result\n",
"print\"The net heat transferred is \",round(q12_A1,1),\"BTU/(hr.sq.ft)\"\n"
],
"language": "python",
@@ -88,9 +80,7 @@
"cell_type": "code",
"collapsed": false,
"input": [
- "# Determination of the heat transferred to the conveyed parts for the conditions given\n",
"\n",
- "#Given\n",
"import math\n",
"L1=1\n",
"angle=math.pi*45/180.0\n",
@@ -99,12 +89,10 @@
"T1=303\n",
"T2=473\n",
"\n",
- "#Calculation\n",
"sigma=5.67e-8 # Stefan-Boltzmann constant\n",
"q21_A2=sigma*(T2**4-T1**4)*((L1/L2)+1-(L3/L2))/2.0\n",
"q31_A3=sigma*(T2**4-T1**4)*((L1/L2)-1+(L3/L2))/2.0\n",
"\n",
- "#result\n",
"print\"The heat transferred from A3 to A1 is \",round(q31_A3,0),\" W/sq.m\"\n"
],
"language": "python",
@@ -132,17 +120,12 @@
"cell_type": "code",
"collapsed": false,
"input": [
- "# Determination of the heat exchanged between the two plates\n",
"\n",
- "#Given\n",
- "# The view factor can be found with the crossed-string method\n",
- "# from figure 12.13(b)\n",
"ac=1\n",
"bd=1\n",
"ad=(9+1)**0.5\n",
"bc=ad\n",
"\n",
- "#calculation\n",
"crossed_strings=ad+bc\n",
"uncrossed_strings=ac+bd\n",
"L1_F12=(1/2.0)*(crossed_strings-uncrossed_strings)\n",
@@ -153,7 +136,6 @@
"T2=460\n",
"q12_A1=sigma*(T1**4-T2**4)*F12\n",
"\n",
- "#Result\n",
"print\"The heat transfer rate is \",round(q12_A1,0),\"W/sq m\"\n"
],
"language": "python",
@@ -181,14 +163,7 @@
"cell_type": "code",
"collapsed": false,
"input": [
- "# Determination of the heat that must be supplied to each of the isothermal surfaces, and also the temperature of the insulated surface. \n",
"\n",
- "#Given\n",
- "# we can apply the equations as follows\n",
- "# q1=sigma*A1*[(T1**4-T2**4)F12+(T1**4-T3**4)F13]..... (1)\n",
- "# q2=sigma*A2*[(T2**4-T1**4)F21+(T2**4-T3**4)F23]..... (2)\n",
- "# q3=sigma*A3*[(T3**4-T1**4)F31+(T3**4-T2**4)F32]..... (3)\n",
- "# given data:\n",
"T1=1000.0\n",
"T3=500.0\n",
"q2=0\n",
@@ -199,13 +174,11 @@
"F31=1/2.0\n",
"F32=1/2.0\n",
"\n",
- "#Calculation\n",
"T2=((T1**4+T3**4)/2.0)**(1/4.0) # using equation (2)\n",
"sigma=0.1714e-8 # Stefan-Boltzmann constant\n",
"q1_A1=sigma*((T1**4-T2**4)*F12+(T1**4-T3**4)*F13) # using equation (1)\n",
"q3_A3=sigma*((T3**4-T1**4)*F31+(T3**4-T2**4)*F32) # using equation (3)\n",
"\n",
- "#result\n",
"print\"The temperature is \",round(T2,1),\"R\"\n",
"print\"The heat flux through area A1 is\",round(q1_A1,0),\"BTU/(hr.sq.ft)\"\n",
"print\"The heat flux through area A3 is\",round(q3_A3,0),\"BTU/(hr.sq.ft)\"\n",
@@ -239,10 +212,7 @@
"cell_type": "code",
"collapsed": false,
"input": [
- "# Determination of the heat lost by the oven through its top surface. \n",
"\n",
- "#Given\n",
- "# all energy leaving A1 is intercepted by A2 and vice versa\n",
"F12=1\n",
"F21=1\n",
"F11=0 # the surfaces are flat\n",
@@ -253,11 +223,9 @@
"T2=323\n",
"sigma=5.67e-8 # Stefan-Boltzmann constant\n",
"\n",
- "#Calculation\n",
"q1=(sigma*(T1**4-T2**4))/((1/emissivity1)+(1/emissivity2)-1)\n",
"q2=-q1\n",
"\n",
- "#Result\n",
"print\"The heat lost through bottom surface is \",round(q1,1),\"W/sq m\"\n",
"print\"The heat lost through top surface is \",round(q2,1),\"W/sq m\"\n"
],
@@ -287,13 +255,10 @@
"cell_type": "code",
"collapsed": false,
"input": [
- "# Determination of the net heat exchanged between the dish and the surroundings by radiation at the instant the dish is removed from the oven. Perform the calculations (a) if the dish and surroundings behave like black bodies, and again (b) if the dish has an emissivity of 0.82 and the surroundings have an emissivity of 0.93.\n",
"\n",
- "#Given\n",
"D=1.0 # diameter in ft\n",
"L=6/12.0 # length in ft\n",
"\n",
- "#Calculation\n",
"A=2*math.pi*D**2/4+math.pi*D*L\n",
"F12=1 # the view factor between the dish and the surroundings is unity\n",
"T1=810\n",
@@ -301,15 +266,11 @@
"sigma=0.1714e-8 # Stefan-Boltzmann constant\n",
"q1=sigma*A*(T1**4-T2**4)*F12\n",
"\n",
- "# For gray-surface behavior, we can apply the following Equation\n",
- "# q1/(A1e1)-[F11*(q1/A1)*(1-e1)/e1+F12*(q2/A2)*(1-e2)/e2]=sigma*T1**4-(F11*sigma*T1**4+F12*sigma*T2**4)... equation (1)\n",
"F11=0\n",
"e1=0.82\n",
"e2=0.93\n",
- "# putting q2/A2=0 in equation (1) as A2 tends to infinity\n",
"q1_=A*e1*(sigma*T1**4-F12*sigma*T2**4)\n",
"\n",
- "#Result\n",
"print\"(a)The heat exchanged between the dish and the surroundings is\",round(q1,0),\"BTU/hr\"\n",
"print\"(b)The heat exchanged between the dish and the surroundings for the second case is \",round(q1_,0),\"BTU/hr\"\n"
],