ME241A β HW 2, Problem 3: Corner Node Finite-Difference Equations
Everything is expanded and in-flow. No toggles, no internal scroll panes.

Setup (applies to all three cases)
Node & neighbors: \(P\equiv T_{m,n}\). Neighbors \(W=T_{m-1,n},\;E=T_{m+1,n},\;S=T_{m,n-1},\;N=T_{m,n+1}\).
Grid & CV: spacing \(\Delta x\) (horizontal), \(\Delta y\) (vertical). Corner CV uses half-faces on the sides touching the boundaries.
CV face | face length | distance to neighbor |
---|---|---|
West \(\to W\) | \(\Delta y\) | \(\Delta x\) |
South \(\to S\) | \(\Delta x/2\) | \(\Delta y\) |
East (lower half) \(\to E\) | \(\Delta y/2\) | \(\Delta x\) |
North (left half) \(\to N\) or insulated/convective | \(\Delta x/2\) | \(\Delta y\) |
Steady CV energy balance (outward positive): \(q_W + q_S + q_E^{(\text{cond})} + q_N^{(\text{cond})} + q_E^{(\text{bc})} + q_N^{(\text{bc})} = 0\). Conduction: \(q=-k\,\partial T/\partial n \cdot A\). Convection: \(q=hA\,(T_P-T_\infty)\). No volumetric generation.
(a) Top insulated, right convective \((T_\infty,h)\)
Step 1 β face fluxes
\( q_S = k\,\dfrac{\Delta x/2}{\Delta y}\,(T_P-T_S) \)
\( q_E^{\rm cond} = k\,\dfrac{\Delta y/2}{\Delta x}\,(T_P-T_E) \)
\( q_E^{\rm bc} = h\,\dfrac{\Delta y}{2}\,(T_P-T_\infty) \) (right)
\( q_N^{\rm bc} = 0 \) (top insulated)
Step 2 β assemble
Step 3 β square grid \( \Delta x=\Delta y\equiv \Delta \)
Step 4 β scale to match solution sheet
(b) Both boundaries insulated
Set \(h=0\). With \(\Delta x=\Delta y=\Delta\) and multiplying by \(2/k\):
(c) Top & right both convective \((T_\infty,h)\)
Add \(+\,h(\Delta x/2)(T_P-T_\infty)\) on the north half-face:
What changed from line to line?
- Face lengths (full vs half) β the 2 vs 1 coefficients after scaling by \(2/k\).
- Convection adds to the diagonal and adds a \(T_\infty\) source term.
- Setting \(\Delta x=\Delta y=\Delta\) and scaling by \(2/k\) yields tidy integer weights.
Problem 4.57 β Beginner-Friendly Step-by-Step (Print)
0) The Big Picture
2-D steady conduction in a wall with uniform volumetric generation, \( \dot{q} = 1\times10^{6}\ \text{W/m}^{3} \). Grid: \( \Delta x = \Delta y = 0.025\ \text{m} \). Thermal conductivity: \( k = 10\ \text{W}/(\text{m}\cdot\text{K}) \).
Given nodal temperatures (Β°C) | Convection boundaries |
---|---|
\(T_2=95.47,\; T_3=117.3,\; T_5=79.79,\) \(T_6=77.29,\; T_8=87.28,\; T_{10}=77.65\) |
Inner (Surface B): \(h_i=500\), \(T_{\infty,i}=50^{\circ}\text{C}\) Outer (Surface A): \(h_o=250\), \(T_{\infty,o}=25^{\circ}\text{C}\) |
Unknowns: \(T_1, T_4, T_7, T_9\). Then compute \(q'_A\) (outer) and \(q'_B\) (inner), and verify overall energy balance.
Mindset: treat each unknown as the center of a tiny control volume (CV). At steady state: energy in β energy out + generation = 0.
1) Universal Recipe (works at any node)
- Conduction through a face: \( k\, \dfrac{\Delta T}{\Delta n} \times L \)
- Convection on a boundary face: \( h\, (T_{\text{face}} - T_{\infty}) \times L \)
- CV area (per unit depth): interior \( \Delta x \Delta y \); edges use half-faces; corners use quarter-faces.
2a) Node 1 β Corner (insulated top & left)
Fluxes present: conduct east to \(T_2\), south to \(T_3\), plus generation. No flux through insulated west/top.
Result: \(T_1 \approx 122.0^{\circ}\text{C}\)
2b) Node 4 β Interior corner on Surface B (convection inside)
Conducts to nodes \(2,5,8,3\) and convects to inner fluid at 50 Β°C along two CV edges; includes generation in an interior CV.
Result: \(T_4 \approx 94.50^{\circ}\text{C}\)
2c) Node 7 β Outer Surface A (convection outside)
Fluxes: conduct north to \(T_3\), east to \(T_8\), convection to outside fluid across a half-face, generation in a corner CV.
Result: \(T_7 \approx 95.80^{\circ}\text{C}\)
2d) Node 9 β Outer Surface A (convection outside)
Fluxes: conduct north to \(T_5\), east to \(T_{10}\), convection to outside fluid across a whole face, generation in a edge CV.
Result: \(T_9 \approx 79.67^{\circ}\text{C}\)
3) Heat rate per unit length from outer surface A to the fluid, \(q'_A\)
Sum convection from the outer faces of nodes 7, 8, 9 and 10 (each vertical face length = \( \Delta x \); corner half-faces use \( \Delta x/2 \)).
Numerical result: \(q'_A \approx 1117\ \text{W/m}\)
4) Heat rate per unit length from inner fluid to Surface B, \(q'_B\)
Sum convection into nodes 2, 4, 5, and 6 along inner faces (use half-/quarter-lengths as appropriate).
Numerical result: \(q'_B \approx -1383\ \text{W/m}\)
5) Energy Balance Check
Balance: \(-1117 - 1383 + 2500 = 0\;\checkmark\)
Quick Reminders (for interviews)
- Every unknown node = one tiny CV energy balance. State what faces are active.
- Edges use half-faces; corners use quarter-faces for \(L\) and \(A_{CV}\).
- When asked for heat rate to a fluid, use only the convection faces that touch that fluid.
- Always finish with a 10-second whole-section energy-balance check.
This problem involves a 2-D steady-state heat conduction analysis of a wall with internal heat generation and convection boundaries. The solution uses the finite-difference method (FDM), which approximates a continuous body with a grid of discrete nodes. Steps: 1) set up, 2) solve unknown nodal temperatures, 3) compute surface heat rates, 4) energy balance.
1. Setting Up the Problem π
L-shaped wall, grid spacing \( \Delta x = \Delta y = \Delta = \textbf{0.025\ \mathrm{m}} \); some nodal temperatures are known from a table.
Given Information
Goal
- Unknown temperatures: \( T_1, T_4, T_7, T_9 \).
- Heat rates per unit length: outer \( q'_A \), inner \( q'_B \).
- Verify with an overall energy balance.
Conduction from neighbors + convection from fluid + internal generation = 0
\[ \sum_{\text{faces}} k\frac{A}{L_n}\,(T_N - T_P) \;+\; \sum_{\text{conv}} hA\,(T_{\infty}-T_P) \;+\; \dot q\,V \;=\; 0 \]
Corner CV: \(V=\tfrac{1}{4}\Delta^2\); Edge CV: \(V=\tfrac{1}{2}\Delta^2\); Re-entrant (Node 4): \(V=\tfrac{3}{4}\Delta^2\).
2. Calculating Nodal Temperatures π‘οΈ
Node 1 β Insulated Corner
Top & left insulated; conduction from Nodes 2 and 3; generation in a quarter CV:
Node 4 β Re-entrant Corner
Three-quarter CV; conduction from 2,3,5,8 and inner convection:
Node 7 β Outer Corner with Convection
Node 9 β Outer Edge with Convection
3. Calculating Surface Heat Rates π₯
Per unit out-of-plane length (\(\mathrm{W/m}\)). Use exposed boundary face lengths.
Outer Surface \( A \): nodes 7, 8, 9, 10
Inner Surface \( B \): nodes 2, 4, 5, 6
4. Overall Energy Balance βοΈ
\[ \dot E'_{\text{in}} - \dot E'_{\text{out}} + \dot E'_{\text{gen}} = 0 \quad\Rightarrow\quad (-q_A') + q_B' + \dot q\,V' = 0 \]
Add CV pieces / two rectangles: \[ V' = 2.5\times 10^{-3}\ \mathrm{m^2} \]
\[ \dot E'_{\text{gen}} = \dot q\,V' = (1\times 10^{6}) (2.5\times 10^{-3}) = 2500\ \mathrm{W/m} \]
Energy balance satisfied β results are self-consistent.