Project 4: Heat Distribution to a Cooling Fin

Mark Schools, Sarah Polzer, Joshua Cho

Introduction

Heat sinks are used to move excess heat away from the point where it is generated. In this project, we modeled the steady state distribution along a rectangular fin of a heat sink. The heat energy entered the fin along part of one side. The goal was to design the fin to keep the temperature within safe tolerances.

The cooling fin is a rectangular slab with dimensions and width cm where is small. Temperature will be denoted by and will be considered constant along the width dimension.

There are three different ways that heat moves: conduction, convection, and radiation. Conduction refers to the transfer of energy between neighboring molecules, convection refers to the molecules themselves moving, and radiation is the movement of energy through photons. We will not consider radiation.

Conduction through a material can be modeled with Fourier's first law; q is the heat energy per unit time in watts, A is the area of the material, ∇u is the temperature gradient, and K is the thermal conductivity of the material.

Convection can be modeled with Newton's law of cooling; H is the convective heat transfer coefficient, is the ambient temperature of the surrounding fluid.

The cooling fin is a rectangle . The energy entering the box per unit time equals the energy leaving. The heat flux into the box through the sides and sides is by conduction, and through the two sides is by convection, and through the two sides is by convection, which yields the steady state equation

 

Based on the text, the convective boundary condition is being implied

where is the partial derivative in respect to the normal direction . This boundary condition is known as the boundary condition, which involves both the function value and its derivative. We also assume that power enters the fin along one side according to Fouier's Law:

 

Where P is total power and L is length of input.

the finite difference approximations with step sizes and are used to approximate the PDE as

Which is used for the interior points . The fin obeys the Robin conditions using the first derivative approximation

which to apply to the fin edges the normal direction translates to the bottom, top , left and right edges.

Assuming the power enters the left side of the fin, Fouier's law leads to the equation

where 1 i m, and 1 j n

It is assumed that the fin is composed of aluminum, whose thermal conductivity is . It is also assumed that the convective heat transfer coefficient is and that room temperature is

 

Question 1

Begin with a fin of dimensions 2 × 2 cm, with 1 mm thickness. Assume that 5W of power is input along the entire left edge, as if the fin were attached to dissipate power from a CPU chip with L = 2 cm side length. Solve the PDE (8.44) with M = N = 10 steps in the x and y directions. Use the mesh command to plot the resulting heat distribution over the xy-plane. What is the maximum temperature of the fin, in ◦C ?

To complete this problem - we modified poisson.m from the textbook.

We called poisson.m with the code below

Results:

The maximum temperature that we obtained was 164.9357

Question 2

  1. Increase the size of the fin to 4 × 4 cm. Input 5W of power along the interval [0,2] on the left side of the fin, as in the previous step. Plot the resulting distribution, and find the maximum temperature. Experiment with increased values of M and N. How much does the solution change?

Once again we used poisson.m to complete this problem and made the following modifications

We added an if-else to poisson.m

and we changed the way that we called poisson.m

Results:

The maximum temperature that we obtained was 69.4704.

We changed the values of M and N to 2,2; 7,7; and 20,20 by replacing M and N when calling poisson.m

For M and N at 2,2

For M and N at 2 - the maximum temperature was 0

for M and N at 7,7

for M and N at 7 - the maximum temperature was 55.1246

for M and N at 20,20

for M and N at 20 - the maximum temperature was 41.0257

Question 3

  1. Find the maximum power that can be dissipated by a 4 × 4 cm fin while keeping the maximum temperature less than 80◦C. Assume that the bulk temperature is 20◦C and the power input is along 2 cm, as in steps 1 and 2.

We completed this problem by using the code below while calling the poisson function.

The maximum temperature that we obtained was 80.0076 degrees Celsius

The maximum power that we obtained was 6.0650

 

Question 4

  1. Replace the aluminum fin with a copper fin, with thermal conductivity K = 3.85W/cm ◦C. Find the maximum power that can be dissipated by a 4 × 4 cm fin with the 2 cm power input in the optimal placement, while keeping the maximum temperature below 80 ◦C.

To complete this problem we made the following change to the code in poisson.m

We called the function using the same code in question 3

The maximum temperature that we obtained was 80.0029 The maximum power that we obtained 7.8120

 

Question 5

  1. Plot the maximum power that can be dissipated in step 4 (keeping maximum temperature below 80 degrees) as a function of thermal conductivity, for 1 ≤ K ≤ 5 W/cm◦C.

To create our plot we wrote the code below and slightly modified poisson.m to make K a parameter

Here is the modification of poisson.m

Question 6

  1. Redo step 4 for a water-cooled fin. Assume that water has a convective heat transfer coefficient of H = 0.1 W/cm2 ◦C, and that the ambient water temperature is maintained at 20◦C

We made the following change to poisson.m to make the fin water-cooled.

We also modified the script to maintain the temperature at 20 degrees C

 

The maximum temperature that we obtained was 80.0002

The maximum power that we obtained was 36.2940