ME4611 Computing Group Project 2

Problem

A heated stainless steel foil is cooled by an axial fan as shown below. An Infrared Camera is placed directly above the foil and is used to measure the surface temperature in Kelvins. The experiment is carried out in steady state meaning that measurements are only recorded once the surface temperature of the foil does not change by 0.1 deg K over 15minutes. Temperatures recorded once steady state is reached are given in data.mat (available on SULIS. ). Data.mat consists of a number of arrays and matrices, the first is T which is a three dimensional matrix of size 256 x 320 x 61 where 256 represents the rows, 320 the columns and 61 the number of results i.e. the temporal measurement over 61 seconds. X is array of the x coordinates where max(X) gives the width of the foil, similarly Y is an array of the y coordinates where max(Y) gives the depth of the foil. (0,0) is the top left corner.

ME4611 Computing Group Project 2 Image 1

In order to analyse this problem, energy balance can be applied to the experiment and is given as follows:

ME4611 Computing Group Project 2 Image 2 ME4611 Computing Group Project 2 Image 3 ME4611 Computing Group Project 2 Image 4

applied again for the second derivate. This is known as numerical differentiation and can be written/coded in a number of different ways.

Tasks:

Write a matlab .m file that will load data.mat into the workspace and when run will calculate the local heat transfer coefficient at each location for each of the 61 measurements. The file will display each result as it runs through each measurement and will also display a graph of mean heat transfer coefficient Vs result number (161). All graphs should be title correctly and the titles should remain as the program run through each measurement and example of which is given below. Marks will be given for accuracy, efficiency and presentation.

ME4611 Computing Group Project 2 Image 5