Lecture 1: Newton s Cooling Law, Fourier s Law and Heat Conduction

Size: px
Start display at page:

Download "Lecture 1: Newton s Cooling Law, Fourier s Law and Heat Conduction"

Transcription

1 Lecture 1: Newton s Cooling Law, Fourier s Law and Heat Conduction V.Vuorinen Aalto University School of Engineering Heat and Mass Transfer Course, Autumn 2016 October 31 st 2017, Otaniemi ville.vuorinen@aalto.fi

2 Overview Part 1 ( must know ) Fourier's law Newton's law of cooling Application of Fourier's law to thermal resistance Heat equation in 1d Initial and boundary conditions Part 2 ( must know, mostly in the following lecture) Explicit Euler method, numerical time integration basics How to apply Newton s law of cooling in Matlab?

3 Part 1: Newton, Fourier and Conduction

4 Newton's cooling law Newton's cooling law: Rate of change of heat (W) for an object is proportional to temperature difference between the object and its surroundings. q=ha s (T s T ) Heat transfer coefficient T (t)=? T =const. [q]=j /s,[m]=kg,[c p ]=J /kg K,[T ]=K,[h]=W /m 2 K,[ A s ]=m 2 A s q= mc p dt dt =ha s (T T ) Note: most typically the cooling law takes T to be the object surface temperature. Lumped capacitance assumption (see Ch. 5) assumes T=uniform within the object.

5 Fourier's Law Heat flux vector q'' q' '= k T Note that units need to match! [q' ']=W /m 2,[T ]=K,[k]=W /m K,[ T ]=K /m thermal conductivity thermal diffusivity k=αρ c p density [c p ]=J /kg K,[ρ]=kg/m 3, [α]=m 2 / s specific heat [q]=w,q=q ' ' A Heat transfer rate

6 Fourier's Law Heat flux q'' in 1d q' ' = k dt dx = k Δ T Δ x Some benefits of Fourier s law: temperature drop across a layer temperature in a point between cold and hot temperature

7 Thermal Resistance for Conduction Consider a wall surrounded by hot and cold air Quite easily available: temperatures A and B, heat transfer coefficients, and thermal conductivities We want to know many things, e.g. 1) How many J/s is going through the wall? 2) What is the temperature in the middle of the wall? Convective heat transfer coefficient T A, h A T (x) L T B,h B T A, h A T 1 T 2

8 q 1 Derivation of Heat Flux Through a Single-Layered Wall Steady state: q 1 =q 2 =q 3 =q q 3 q /(h A A)=(T A T 1 ) (1) [q]=w, q=q ' ' A q/(k/ L)=(T 1 T 2 ) (2) q 2 A=area of cross-section q/(h B A)=(T 2 T B ) (3) Sum: (1)+(3) and note that T 1 -T 2 appears i.e. (2) T A T B +T 2 T 1 =q /(h A A )+q /(h B A) q= T A T B 1/(kA /L)+1/(h A A)+1/(h B A) Note: Generalizes to multilayered materials with various thicknesses!

9 For Multiple Material Layers Overall heat transfer coefficient q= A Δ T Σ i 1/(k i / L i )+1/(h A )+1/(h B ) U = 1 R tot A Thermal resistance Some benefits of thermal resistance concept: design of thermal insulation (buildings, clothes, combustion) allows to maximize or minimize heat flux allows designs to avoid hot pools of temperature from forming allows to design temperature profiles (e.g. avoid condensation)

10 Heat Equation without Source Terms 1d ρ c p T t = x (k T x ) T t = x (α T x ) In general T t = α T Heat equation in 2d with all terms written T t = x k T x + y k T y Task is to solve for the unknown temperature T = T(x,y,z,t). Initial conditions needed Boundary conditions needed But how can we solve partial differential equations sometimes analytically numerically

11 What does Heat Equation Mean? Task is to solve for the unknown temperature T = T(x,y,z,t). Fourier s law: W/m 2 ρ c p T t = x T (k x )= q q out in Δ x Derivation: 1/m Rate of change of internal energy per volume: W/m 3 Heat conduction and Fourier s law determine at which rate energy changes in a given point and time. Think: how many Joule s leave a small volume, how many arrive in the volume within time dt.

12 One of the Key ILO s on the Course is the Heat Sink Problem: Heat Sinks Often Used to Transfer Heat Away from Electronics Fin 1 Fin 2 y z Fin 19 x Heat equation inside the solid material (aluminium). What boundary conditions? Navier-Stokes equations in the gas, primary direction of convection is z. What boundary conditions?

13 Part 2: Basic numerical methods in heat transfer

14 Overview Numerical methods have been mathematically developed in order to solve analytical, mathematical equations approximately by computer. Examples: Taylor series, Newton's method, Solution of Ax = b, Iteration schemes The problem: analytical solution by pen and paper of various equation types can be very difficult and has of severe limitations. It is vary convenient to understand the very basics of numerical solution of heat equations in 0d, 1d and 2d. Numerical software like Matlab and Python could be used for short implementation of numerical solvers which give e.g. temperature as a function of space and time. In particular, for complex geometries and combined heat/fluid flow, various CFD (computational fluid dynamics) software like OpenFOAM, ELMER, Fluent etc can be used. Using the Matlab programs (supplementary course material) you learn that basics of heat transfer can be simulated with very short code of only a couple of lines. Learn basic ideas behind numerical solution on the course for future work life! extend your opportunities

15 Newton's cooling law Newton's cooling law: Rate of change of heat (W) for an object is proportional to temperature difference between the object and its surroundings. Usually the heat transfer coef. h unknown and object irregular shape q= mc p dt dt =ha s (T T ) A s T (t)=? T =const. [q]=j /s,[m]=kg,[c p ]=J /kg K,[T ]=K,[h]=W /m 2 K,[ A s ]=m 2

16 Newton's cooling law Rearrange the terms dt dt = ha s c p m (T T ) Initial condition T (t=0)=t o Analytical solution by separation of variables T (t)=(t o T )exp( ha s c p m t)+t Analytical solution exists good starting point for the computer learning: how to numerically solve temperature development in the above equation?

17 Solving temperature numerically over one timestep dt dt = ha s c p m (T T ) dt = dt ha s c p m (T T ) Note: explicit Euler method here (accuracy 1 st order in time; O(dt) ). Alternatives could be e.g.: 2 nd, 3 rd, 4 th order Runge-Kutta methods Δ T = Δ t ha s c p m (T T ) Δ T n = Δ t ha s c p m (T n T ) T n+1 =T n +Δ T n Solution proceeds in discrete timesteps t n =nδ t,n=0,1,2,...

18 This transforms into the following pseudo-code Step 0:T o known Step 1: Δ T n = Δ t ha s c p m (T n T ) Step 2:T n+1 =T n +Δ T n Step 3: goto Step1 until simulation time exceeded

19 Time-evolution of temperature in a refridgerator (link to homework 1a/5)

20 This Scheme is Extremely Short to Program in Matlab Program: /Example0d/cool0d.m Execution: >> cool0d What it does: Solves 0d Newton's cooling law for temperature of a 0d drink can. Snapshot of code that does the job: cp = 4190; % specific heat J/kgK dt = 20; % timestep in s To = ; % initial temperature K Tinf=273+4; % fridge temperature K simutime = 3*3600; % simulation time s simusteps = round(simutime/dt); T = To; % initial temperature for(k=1:simusteps) dt = -(h*as/(m*cp))*dt*(t-tinf); T = T+dT; Tcol(k) = T; % collect temperatures to Tcol end HOW IN PRACTICE TO IMPLEMENT THIS? open Matlab terminal open text editor create new file with name cool0d.m add the text from the left to file cool0d.m run by typing text cool0d on terminal

21 cp = 4190; % specific heat J/kgK dt = 20; % timestep in s To = ; % initial temperature K Tinf=273+4; % fridge temperature K simutime = 3*3600; % simulation time s simusteps = round(simutime/dt); T = To; % initial temperature for(k=1:simusteps) dt = -(h*as/(m*cp))*dt*(t-tinf); T = T+dT; Tcol(k) = T; % collect temperatures to Tcol end Example for N+1 = 5

22 Plotting the results 1) e.g. plot(x,y,'k-') where x and y are vectors 2) Note: length(x)=length(y) figure(1), clf, box, hold on 3) >> help plot alltime = linspace(0,simutime/3600, simusteps); plot(alltime, Tcol, 'k-','linewidth',2) plot(alltime, (To-Tinf)*(exp(-h*As*3600*alltime/(m*cp))) + Tinf, 'b--','linewidth',2) plot(alltime, (273+7)*(ones(length(alltime),1)), 'r-', 'Linewidth',2) plot(alltime, (Tinf)*(ones(length(alltime),1)), 'g-', 'Linewidth',2) h=xlabel('time (h)'); h=ylabel('temperature (K)'); h=legend('numerical solution', 'Analytical solution','t = 7 deg C','T = 4 deg C'); set(h,'fontsize', 16) print -dpng TcoolingCan Example for N+1 = 5

23 The Following Folders and Files for Matlab Programs Provided (Week 1) /Example0d/ cool0d.m /Examples1d/ HeatDiffusion.m ConvectionDiffusion.m /HowToPlot/ DrawingSurface.m PlottingFigure.m SurfaceAnimation.m /Examples2d/ CaseDefinition.m computedt.m GradX.m GradY.m HeatDiffusion2d.m project.m solvetemperature.m circle.m DivDiv.m GradXskew.m GradYskew.m Laplacian.m settbcs.m visualizeresults.m Execute by >> cool0d Execute by e.g. >> HeatDiffusion Demos on plotting Figures. Execute by e.g.: >> DrawingSurface 2d heat transfer code. Execute by: >> HeatDiffusion2d

24 Thank you for your attention!

Lecture 2: Finite Difference Methods in Heat Transfer

Lecture 2: Finite Difference Methods in Heat Transfer Lecture 2: Fiite Differece Methods i Heat Trasfer V.Vuorie Aalto Uiversity School of Egieerig Heat ad Mass Trasfer Course, Autum 2016 November 1 st 2017, Otaiemi ville.vuorie@aalto.fi Overview Part 1 (

More information

Internal Flow: Heat Transfer in Pipes

Internal Flow: Heat Transfer in Pipes Internal Flow: Heat Transfer in Pipes V.Vuorinen Aalto University School of Engineering Heat and Mass Transfer Course, Autumn 2016 November 15 th 2016, Otaniemi ville.vuorinen@aalto.fi First about the

More information

Introduction to Heat Transfer Analysis

Introduction to Heat Transfer Analysis Introduction to Heat Transfer Analysis Thermal Network Solutions with TNSolver Bob Cochran Applied Computational Heat Transfer Seattle, WA TNSolver@heattransfer.org ME 331 Introduction to Heat Transfer

More information

ENSC 388. Assignment #8

ENSC 388. Assignment #8 ENSC 388 Assignment #8 Assignment date: Wednesday Nov. 11, 2009 Due date: Wednesday Nov. 18, 2009 Problem 1 A 3-mm-thick panel of aluminum alloy (k = 177 W/m K, c = 875 J/kg K, and ρ = 2770 kg/m³) is finished

More information

Introduction to Heat and Mass Transfer. Week 7

Introduction to Heat and Mass Transfer. Week 7 Introduction to Heat and Mass Transfer Week 7 Example Solution Technique Using either finite difference method or finite volume method, we end up with a set of simultaneous algebraic equations in terms

More information

Lecture 2: Fundamentals 2/3: Navier-Stokes Equation + Basics of Discretization

Lecture 2: Fundamentals 2/3: Navier-Stokes Equation + Basics of Discretization Lecture 2: Fundamentals 2/3: Navier-Stokes Equation Basics of Discretization V.Vuorinen Aalto University School of Engineering CFD Course, Spring 2018 January 15th 2018, Otaniemi ville.vuorinen@aalto.fi

More information

Heat processes. Heat exchange

Heat processes. Heat exchange Heat processes Heat exchange Heat energy transported across a surface from higher temperature side to lower temperature side; it is a macroscopic measure of transported energies of molecular motions Temperature

More information

S.E. (Chemical) (Second Semester) EXAMINATION, 2012 HEAT TRANSFER (2008 PATTERN) Time : Three Hours Maximum Marks : 100

S.E. (Chemical) (Second Semester) EXAMINATION, 2012 HEAT TRANSFER (2008 PATTERN) Time : Three Hours Maximum Marks : 100 Total No. of Questions 12] [Total No. of Printed Pages 7 Seat No. [4162]-187 S.E. (Chemical) (Second Semester) EXAMINATION, 2012 HEAT TRANSFER (2008 PATTERN) Time : Three Hours Maximum Marks : 100 N.B.

More information

Numerical Modelling in Fortran: day 10. Paul Tackley, 2016

Numerical Modelling in Fortran: day 10. Paul Tackley, 2016 Numerical Modelling in Fortran: day 10 Paul Tackley, 2016 Today s Goals 1. Useful libraries and other software 2. Implicit time stepping 3. Projects: Agree on topic (by final lecture) (No lecture next

More information

Thermal Network Analysis with TNSolver

Thermal Network Analysis with TNSolver Thermal Network Analysis with TNSolver Steady Conduction - The Composite Wall Problem Bob Cochran Applied Computational Heat Transfer Seattle, WA rjc@heattransfer.org ME 331 Introduction to Heat Transfer

More information

Heat Transfer Analysis

Heat Transfer Analysis Heat Transfer 2011 Alex Grishin MAE 323 Chapter 8: Grishin 1 In engineering applications, heat is generally transferred from one location to another and between bodies. This transfer is driven by differences

More information

Introduction to Heat and Mass Transfer. Week 9

Introduction to Heat and Mass Transfer. Week 9 Introduction to Heat and Mass Transfer Week 9 補充! Multidimensional Effects Transient problems with heat transfer in two or three dimensions can be considered using the solutions obtained for one dimensional

More information

Thermal Unit Operation (ChEg3113)

Thermal Unit Operation (ChEg3113) Thermal Unit Operation (ChEg3113) Lecture 3- Examples on problems having different heat transfer modes Instructor: Mr. Tedla Yeshitila (M.Sc.) Today Review Examples Multimode heat transfer Heat exchanger

More information

Chapter 10: Steady Heat Conduction

Chapter 10: Steady Heat Conduction Chapter 0: Steady Heat Conduction In thermodynamics, we considered the amount of heat transfer as a system undergoes a process from one equilibrium state to another hermodynamics gives no indication of

More information

SOE3213/4: CFD Lecture 1

SOE3213/4: CFD Lecture 1 What is CFD SOE3213/4: CFD Lecture 1 3d 3d Computational Fluid Dynamics { use of computers to study uid dynamics. Solve the Navier-Stokes Equations (NSE) : r:u = 0 Du Dt = rp + r 2 u + F 4 s for 4 unknowns,

More information

Law of Heat Transfer

Law of Heat Transfer Law of Heat Transfer The Fundamental Laws which are used in broad area of applications are: 1. The law of conversion of mass 2. Newton s second law of motion 3. First and second laws of thermodynamics

More information

Thermal Systems. What and How? Physical Mechanisms and Rate Equations Conservation of Energy Requirement Control Volume Surface Energy Balance

Thermal Systems. What and How? Physical Mechanisms and Rate Equations Conservation of Energy Requirement Control Volume Surface Energy Balance Introduction to Heat Transfer What and How? Physical Mechanisms and Rate Equations Conservation of Energy Requirement Control Volume Surface Energy Balance Thermal Resistance Thermal Capacitance Thermal

More information

Streamline calculations. Lecture note 2

Streamline calculations. Lecture note 2 Streamline calculations. Lecture note 2 February 26, 2007 1 Recapitulation from previous lecture Definition of a streamline x(τ) = s(τ), dx(τ) dτ = v(x,t), x(0) = x 0 (1) Divergence free, irrotational

More information

A First Course on Kinetics and Reaction Engineering Supplemental Unit S5. Solving Initial Value Differential Equations

A First Course on Kinetics and Reaction Engineering Supplemental Unit S5. Solving Initial Value Differential Equations Supplemental Unit S5. Solving Initial Value Differential Equations Defining the Problem This supplemental unit describes how to solve a set of initial value ordinary differential equations (ODEs) numerically.

More information

Chapter 2: Heat Conduction Equation

Chapter 2: Heat Conduction Equation -1 General Relation for Fourier s Law of Heat Conduction - Heat Conduction Equation -3 Boundary Conditions and Initial Conditions -1 General Relation for Fourier s Law of Heat Conduction (1) The rate of

More information

Lesson 9: Diffusion of Heat (discrete rod) and ode45

Lesson 9: Diffusion of Heat (discrete rod) and ode45 Lesson 9: Diffusion of Heat (discrete rod) and ode45 9.1 Applied Problem. Consider the temperature in a thin rod such as a wire with electrical current. Assume the ends have a fixed temperature and the

More information

Heat Transfer There are three mechanisms for the transfer of heat:

Heat Transfer There are three mechanisms for the transfer of heat: Heat Transfer There are three mechanisms for the transfer of heat: Conduction Convection Radiation CONDUCTION is a diffusive process wherein molecules transmit their kinetic energy to other molecules by

More information

Time-Dependent Conduction :

Time-Dependent Conduction : Time-Dependent Conduction : The Lumped Capacitance Method Chapter Five Sections 5.1 thru 5.3 Transient Conduction A heat transfer process for which the temperature varies with time, as well as location

More information

ME 315 Exam 1 Thursday, October 1, 2015 CIRCLE YOUR DIVISION

ME 315 Exam 1 Thursday, October 1, 2015 CIRCLE YOUR DIVISION ME 5 Exam Thursday, October, 05 This is a closed-book, closed-notes examination. There is a formula sheet provided. You are also allowed to bring your own one-page letter size, doublesided crib sheet.

More information

Introduction to Heat and Mass Transfer. Week 8

Introduction to Heat and Mass Transfer. Week 8 Introduction to Heat and Mass Transfer Week 8 Next Topic Transient Conduction» Analytical Method Plane Wall Radial Systems Semi-infinite Solid Multidimensional Effects Analytical Method Lumped system analysis

More information

Introduction to Heat and Mass Transfer

Introduction to Heat and Mass Transfer Introduction to Heat and Mass Transfer Week 16 Merry X mas! Happy New Year 2019! Final Exam When? Thursday, January 10th What time? 3:10-5 pm Where? 91203 What? Lecture materials from Week 1 to 16 (before

More information

S.E. (Chemical) (Second Semester) EXAMINATION, 2011 HEAT TRANSFER (2008 PATTERN) Time : Three Hours Maximum Marks : 100

S.E. (Chemical) (Second Semester) EXAMINATION, 2011 HEAT TRANSFER (2008 PATTERN) Time : Three Hours Maximum Marks : 100 Total No. of Questions 12] [Total No. of Printed Pages 7 [4062]-186 S.E. (Chemical) (Second Semester) EXAMINATION, 2011 HEAT TRANSFER (2008 PATTERN) Time : Three Hours Maximum Marks : 100 N.B. : (i) Answers

More information

Heat and Mass Transfer Unit-1 Conduction

Heat and Mass Transfer Unit-1 Conduction 1. State Fourier s Law of conduction. Heat and Mass Transfer Unit-1 Conduction Part-A The rate of heat conduction is proportional to the area measured normal to the direction of heat flow and to the temperature

More information

MECH 375, Heat Transfer Handout #5: Unsteady Conduction

MECH 375, Heat Transfer Handout #5: Unsteady Conduction 1 MECH 375, Heat Transfer Handout #5: Unsteady Conduction Amir Maleki, Fall 2018 2 T H I S PA P E R P R O P O S E D A C A N C E R T R E AT M E N T T H AT U S E S N A N O PA R T I - C L E S W I T H T U

More information

Review: Conduction. Breaking News

Review: Conduction. Breaking News CH EN 3453 Heat Transfer Review: Conduction Breaking News No more homework (yay!) Final project reports due today by 8:00 PM Email PDF version to report@chen3453.com Review grading rubric on Project page

More information

Introduction to Heat and Mass Transfer. Week 5

Introduction to Heat and Mass Transfer. Week 5 Introduction to Heat and Mass Transfer Week 5 Critical Resistance Thermal resistances due to conduction and convection in radial systems behave differently Depending on application, we want to either maximize

More information

ASSUMPTIONS: (1) One-dimensional, radial conduction, (2) Constant properties.

ASSUMPTIONS: (1) One-dimensional, radial conduction, (2) Constant properties. PROBLEM 5.5 KNOWN: Diameter and radial temperature of AISI 00 carbon steel shaft. Convection coefficient and temperature of furnace gases. FIND: me required for shaft centerline to reach a prescribed temperature.

More information

Analytical solutions of heat transfer for laminar flow in rectangular channels

Analytical solutions of heat transfer for laminar flow in rectangular channels archives of thermodynamics Vol. 35(2014), No. 4, 29 42 DOI: 10.2478/aoter-2014-0031 Analytical solutions of heat transfer for laminar flow in rectangular channels WITOLD RYBIŃSKI 1 JAROSŁAW MIKIELEWICZ

More information

Lecture 30 Review of Fluid Flow and Heat Transfer

Lecture 30 Review of Fluid Flow and Heat Transfer Objectives In this lecture you will learn the following We shall summarise the principles used in fluid mechanics and heat transfer. It is assumed that the student has already been exposed to courses in

More information

Thermodynamics 1. Lecture 7: Heat transfer Open systems. Bendiks Jan Boersma Thijs Vlugt Theo Woudstra. March 1, 2010.

Thermodynamics 1. Lecture 7: Heat transfer Open systems. Bendiks Jan Boersma Thijs Vlugt Theo Woudstra. March 1, 2010. hermodynamics Lecture 7: Heat transfer Open systems Bendiks Jan Boersma hijs Vlugt heo Woudstra March, 00 Energy echnology Summary lecture 6 Poisson relation efficiency of a two-stroke IC engine (Otto

More information

Thermal Management for LED Applications

Thermal Management for LED Applications Thermal Management for LED Applications What is the role of the PCB? http://saturnelectronics.com/thermal_pcb_design_led_signup.htm Presented by Clemens Lasance Clemens is a former Principal Scientist

More information

Unit B-4: List of Subjects

Unit B-4: List of Subjects ES312 Energy Transfer Fundamentals Unit B: First Law of Thermodynamics ROAD MAP... B-1: The Concept of Energy B-2: Work Interactions B-3: First Law of Thermodynamics B-4: Heat Transfer Fundamentals Unit

More information

Thermodynamics Heat Transfer

Thermodynamics Heat Transfer Thermodynamics Heat Transfer Lana Sheridan De Anza College April 30, 2018 Last time heat transfer conduction Newton s law of cooling Overview continue heat transfer mechanisms conduction over a distance

More information

Diffusion Processes. Lectures INF2320 p. 1/72

Diffusion Processes. Lectures INF2320 p. 1/72 Diffusion Processes Lectures INF2320 p. 1/72 Lectures INF2320 p. 2/72 Diffusion processes Examples of diffusion processes Heat conduction Heat moves from hot to cold places Diffusive (molecular) transport

More information

Chapter 3: Steady Heat Conduction

Chapter 3: Steady Heat Conduction 3-1 Steady Heat Conduction in Plane Walls 3-2 Thermal Resistance 3-3 Steady Heat Conduction in Cylinders 3-4 Steady Heat Conduction in Spherical Shell 3-5 Steady Heat Conduction with Energy Generation

More information

Introduction to First Order Equations Sections

Introduction to First Order Equations Sections A B I L E N E C H R I S T I A N U N I V E R S I T Y Department of Mathematics Introduction to First Order Equations Sections 2.1-2.3 Dr. John Ehrke Department of Mathematics Fall 2012 Course Goals The

More information

OCEAN/ESS 410. Class 3. Understanding Conductive Cooling: A Thought Experiment. Write your answers on the exercise sheet

OCEAN/ESS 410. Class 3. Understanding Conductive Cooling: A Thought Experiment. Write your answers on the exercise sheet Class 3. Understanding Conductive Cooling: A Thought Experiment Write your answers on the exercise sheet While looking at the global bathymetry maps you will have noticed that mid-ocean ridges or ocean

More information

Enhancement of heat transfer on Engine Cylinder Block

Enhancement of heat transfer on Engine Cylinder Block Enhancement of heat transfer on Engine Cylinder Block Sachin Wangikar, Jishan Balekundri, 1Assistant Professor at Shaikh College of Engineering & Technology, Belagavi, Karnataka,India Jishan Balekundri

More information

Chapter 2: Steady Heat Conduction

Chapter 2: Steady Heat Conduction 2-1 General Relation for Fourier s Law of Heat Conduction 2-2 Heat Conduction Equation 2-3 Boundary Conditions and Initial Conditions 2-4 Variable Thermal Conductivity 2-5 Steady Heat Conduction in Plane

More information

PROBLEM 1.2 ( ) 25 C 15 C dx L 0.30 m Ambient air temperature, T2 (C)

PROBLEM 1.2 ( ) 25 C 15 C dx L 0.30 m Ambient air temperature, T2 (C) PROBLEM 1.2 KNOWN: Inner surface temperature and thermal conductivity of a concrete wall. FIND: Heat loss by conduction through the wall as a function of ambient air temperatures ranging from -15 to 38

More information

Mathematics Qualifying Exam Study Material

Mathematics Qualifying Exam Study Material Mathematics Qualifying Exam Study Material The candidate is expected to have a thorough understanding of engineering mathematics topics. These topics are listed below for clarification. Not all instructors

More information

Name: ME 315: Heat and Mass Transfer Spring 2008 EXAM 2 Tuesday, 18 March :00 to 8:00 PM

Name: ME 315: Heat and Mass Transfer Spring 2008 EXAM 2 Tuesday, 18 March :00 to 8:00 PM Name: ME 315: Heat and Mass Transfer Spring 2008 EXAM 2 Tuesday, 18 March 2008 7:00 to 8:00 PM Instructions: This is an open-book eam. You may refer to your course tetbook, your class notes and your graded

More information

University of Rome Tor Vergata

University of Rome Tor Vergata University of Rome Tor Vergata Faculty of Engineering Department of Industrial Engineering THERMODYNAMIC AND HEAT TRANSFER HEAT TRANSFER dr. G. Bovesecchi gianluigi.bovesecchi@gmail.com 06-7259-727 (7249)

More information

Chapter 4: Transient Heat Conduction. Dr Ali Jawarneh Department of Mechanical Engineering Hashemite University

Chapter 4: Transient Heat Conduction. Dr Ali Jawarneh Department of Mechanical Engineering Hashemite University Chapter 4: Transient Heat Conduction Dr Ali Jawarneh Department of Mechanical Engineering Hashemite University Objectives When you finish studying this chapter, you should be able to: Assess when the spatial

More information

MAE 598 Project #1 Jeremiah Dwight

MAE 598 Project #1 Jeremiah Dwight MAE 598 Project #1 Jeremiah Dwight OVERVIEW A simple hot water tank, illustrated in Figures 1 through 3 below, consists of a main cylindrical tank and two small side pipes for the inlet and outlet. All

More information

Heat Transfer. Heat always moves from a warmer place to a cooler place. Hot objects in a cooler room will cool to room temperature.

Heat Transfer. Heat always moves from a warmer place to a cooler place. Hot objects in a cooler room will cool to room temperature. Heat Transfer Heat always moves from a warmer place to a cooler place. Hot objects in a cooler room will cool to room temperature. Cold objects in a warmer room will heat up to room temperature. Question

More information

1 One-Dimensional, Steady-State Conduction

1 One-Dimensional, Steady-State Conduction 1 One-Dimensional, Steady-State Conduction 1.1 Conduction Heat Transfer 1.1.1 Introduction Thermodynamics defines heat as a transfer of energy across the boundary of a system as a result of a temperature

More information

Transport processes. 7. Semester Chemical Engineering Civil Engineering

Transport processes. 7. Semester Chemical Engineering Civil Engineering Transport processes 7. Semester Chemical Engineering Civil Engineering 1 Course plan 1. Elementary Fluid Dynamics 2. Fluid Kinematics 3. Finite Control Volume nalysis 4. Differential nalysis of Fluid Flow

More information

If there is convective heat transfer from outer surface to fluid maintained at T W.

If there is convective heat transfer from outer surface to fluid maintained at T W. Heat Transfer 1. What are the different modes of heat transfer? Explain with examples. 2. State Fourier s Law of heat conduction? Write some of their applications. 3. State the effect of variation of temperature

More information

Documentation of the Solutions to the SFPE Heat Transfer Verification Cases

Documentation of the Solutions to the SFPE Heat Transfer Verification Cases Documentation of the Solutions to the SFPE Heat Transfer Verification Cases Prepared by a Task Group of the SFPE Standards Making Committee on Predicting the Thermal Performance of Fire Resistive Assemblies

More information

Heat and Mass Transfer Prof. S.P. Sukhatme Department of Mechanical Engineering Indian Institute of Technology, Bombay

Heat and Mass Transfer Prof. S.P. Sukhatme Department of Mechanical Engineering Indian Institute of Technology, Bombay Heat and Mass Transfer Prof. S.P. Sukhatme Department of Mechanical Engineering Indian Institute of Technology, Bombay Lecture No. 18 Forced Convection-1 Welcome. We now begin our study of forced convection

More information

PROBLEM 1.3. dt T1 T dx L 0.30 m

PROBLEM 1.3. dt T1 T dx L 0.30 m PROBLEM 1.3 KNOWN: Inner surface temperature and thermal conductivity of a concrete wall. FIND: Heat loss by conduction through the wall as a function of outer surface temperatures ranging from -15 to

More information

CHAPTER 7 NUMERICAL MODELLING OF A SPIRAL HEAT EXCHANGER USING CFD TECHNIQUE

CHAPTER 7 NUMERICAL MODELLING OF A SPIRAL HEAT EXCHANGER USING CFD TECHNIQUE CHAPTER 7 NUMERICAL MODELLING OF A SPIRAL HEAT EXCHANGER USING CFD TECHNIQUE In this chapter, the governing equations for the proposed numerical model with discretisation methods are presented. Spiral

More information

By ablation we mean the recession of a surface due to heating, usually by a hot gas. It is the key process for

By ablation we mean the recession of a surface due to heating, usually by a hot gas. It is the key process for 16.50 Lecture 15 Subject: Ablative cooling By ablation we mean the recession of a surface due to heating, usually by a hot gas. It is the key process for a) Re-entry heat shields b) Solid propellant nozzles

More information

Specific Heat Capacity. Year 9, Lesson 2 Week commencing 26th March 2012

Specific Heat Capacity. Year 9, Lesson 2 Week commencing 26th March 2012 Specific Heat Capacity Year 9, Lesson 2 Week commencing 26th March 2012 Charlie the Chef and his frozen chicken! 2 of 30 Boardworks Ltd 2006 Charlie forgot to take the chicken out of the freezer last night!

More information

How can we use Fundamental Heat Transfer to understand real devices like heat exchangers?

How can we use Fundamental Heat Transfer to understand real devices like heat exchangers? Lectures 7+8 04 CM30 /30/05 CM30 Transport I Part II: Heat Transfer Applied Heat Transfer: Heat Exchanger Modeling, Sizing, and Design Professor Faith Morrison Department of Chemical Engineering Michigan

More information

Elmer :Heat transfert with phase change solid-solid in transient problem Application to silicon properties. SIF file : phasechange solid-solid

Elmer :Heat transfert with phase change solid-solid in transient problem Application to silicon properties. SIF file : phasechange solid-solid Elmer :Heat transfert with phase change solid-solid in transient problem Application to silicon properties 3 6 1. Tb=1750 [K] 2 & 5. q=-10000 [W/m²] 0,1 1 Ω1 4 Ω2 7 3 & 6. α=15 [W/(m²K)] Text=300 [K] 4.

More information

ME 105 Mechanical Engineering Laboratory Spring Quarter Experiment #2: Temperature Measurements and Transient Conduction and Convection

ME 105 Mechanical Engineering Laboratory Spring Quarter Experiment #2: Temperature Measurements and Transient Conduction and Convection ME 105 Mechanical Engineering Lab Page 1 ME 105 Mechanical Engineering Laboratory Spring Quarter 2010 Experiment #2: Temperature Measurements and Transient Conduction and Convection Objectives a) To calibrate

More information

HEAT TRANSFER 1 INTRODUCTION AND BASIC CONCEPTS 5 2 CONDUCTION

HEAT TRANSFER 1 INTRODUCTION AND BASIC CONCEPTS 5 2 CONDUCTION HEAT TRANSFER 1 INTRODUCTION AND BASIC CONCEPTS 5 2 CONDUCTION 11 Fourier s Law of Heat Conduction, General Conduction Equation Based on Cartesian Coordinates, Heat Transfer Through a Wall, Composite Wall

More information

Rate of Heating and Cooling

Rate of Heating and Cooling Rate of Heating and Cooling 35 T [ o C] Example: Heating and cooling of Water E 30 Cooling S 25 Heating exponential decay 20 0 100 200 300 400 t [sec] Newton s Law of Cooling T S > T E : System S cools

More information

University of Macau Department of Electromechanical Engineering MECH316 Heat Transfer Syllabus 2 nd Semester 2011/2012 Part A Course Outline

University of Macau Department of Electromechanical Engineering MECH316 Heat Transfer Syllabus 2 nd Semester 2011/2012 Part A Course Outline University of Macau Department of Electromechanical Engineering MECH316 Heat Transfer Syllabus 2 nd Semester 2011/2012 Part A Course Outline Compulsory course in Electromechanical Engineering Course description:

More information

Modeling and Analysis of Dynamic Systems

Modeling and Analysis of Dynamic Systems Modeling and Analysis of Dynamic Systems Dr. Guillaume Ducard Fall 2017 Institute for Dynamic Systems and Control ETH Zurich, Switzerland G. Ducard c 1 / 46 Outline 1 Lecture 6: Electromechanical Systems

More information

Units. specified to be meaningful. between different scales. - All physical quantities must have their units. - We will always used SI units.

Units. specified to be meaningful. between different scales. - All physical quantities must have their units. - We will always used SI units. Units - All physical quantities must have their units specified to be meaningful. - We will always used SI units. - We must be comfortable with conversions between different scales. 2 General View of the

More information

AN ANALYTICAL THERMAL MODEL FOR THREE-DIMENSIONAL INTEGRATED CIRCUITS WITH INTEGRATED MICRO-CHANNEL COOLING

AN ANALYTICAL THERMAL MODEL FOR THREE-DIMENSIONAL INTEGRATED CIRCUITS WITH INTEGRATED MICRO-CHANNEL COOLING THERMAL SCIENCE, Year 2017, Vol. 21, No. 4, pp. 1601-1606 1601 AN ANALYTICAL THERMAL MODEL FOR THREE-DIMENSIONAL INTEGRATED CIRCUITS WITH INTEGRATED MICRO-CHANNEL COOLING by Kang-Jia WANG a,b, Hong-Chang

More information

TAU Solver Improvement [Implicit methods]

TAU Solver Improvement [Implicit methods] TAU Solver Improvement [Implicit methods] Richard Dwight Megadesign 23-24 May 2007 Folie 1 > Vortrag > Autor Outline Motivation (convergence acceleration to steady state, fast unsteady) Implicit methods

More information

Chapter 9b: Numerical Methods for Calculus and Differential Equations. Initial-Value Problems Euler Method Time-Step Independence MATLAB ODE Solvers

Chapter 9b: Numerical Methods for Calculus and Differential Equations. Initial-Value Problems Euler Method Time-Step Independence MATLAB ODE Solvers Chapter 9b: Numerical Methods for Calculus and Differential Equations Initial-Value Problems Euler Method Time-Step Independence MATLAB ODE Solvers Acceleration Initial-Value Problems Consider a skydiver

More information

One-Dimensional, Steady-State. State Conduction without Thermal Energy Generation

One-Dimensional, Steady-State. State Conduction without Thermal Energy Generation One-Dimensional, Steady-State State Conduction without Thermal Energy Generation Methodology of a Conduction Analysis Specify appropriate form of the heat equation. Solve for the temperature distribution.

More information

Non-Continuum Energy Transfer: Overview

Non-Continuum Energy Transfer: Overview Non-Continuum Energy Transfer: Overview D. B. Go Slide 1 Topics Covered To Date Conduction - transport of thermal energy through a medium (solid/ liquid/gas) due to the random motion of the energy carriers

More information

Circle one: School of Mechanical Engineering Purdue University ME315 Heat and Mass Transfer. Exam #1. February 20, 2014

Circle one: School of Mechanical Engineering Purdue University ME315 Heat and Mass Transfer. Exam #1. February 20, 2014 Circle one: Div. 1 (Prof. Choi) Div. 2 (Prof. Xu) School of Mechanical Engineering Purdue University ME315 Heat and Mass Transfer Exam #1 February 20, 2014 Instructions: Write your name on each page Write

More information

Solving Systems of ODEs in Python: From scalar to TOV. MP 10/2011

Solving Systems of ODEs in Python: From scalar to TOV. MP 10/2011 Solving Systems of ODEs in Python: From scalar to TOV. MP 10/2011 Homework: Integrate a scalar ODE in python y (t) =f(t, y) = 5ty 2 +5/t 1/t 2 y(1) = 1 Integrate the ODE using using the explicit Euler

More information

TRANSIENT HEAT CONDUCTION

TRANSIENT HEAT CONDUCTION TRANSIENT HEAT CONDUCTION Many heat conduction problems encountered in engineering applications involve time as in independent variable. This is transient or Unsteady State Heat Conduction. The goal of

More information

Empirical Co - Relations approach for solving problems of convection 10:06:43

Empirical Co - Relations approach for solving problems of convection 10:06:43 Empirical Co - Relations approach for solving problems of convection 10:06:43 10:06:44 Empirical Corelations for Free Convection Use T f or T b for getting various properties like Re = VL c / ν β = thermal

More information

Industrial Applications of Computational Mechanics Extended Civil Engineering Problems. Prof. Dr.-Ing. Casimir Katz SOFiSTiK AG

Industrial Applications of Computational Mechanics Extended Civil Engineering Problems. Prof. Dr.-Ing. Casimir Katz SOFiSTiK AG Industrial Applications of Computational Mechanics Extended Civil Engineering Problems Prof. Dr.-Ing. Casimir Katz SOFiSTiK AG Beyond Structural Analysis Multiphysics» Heat Conduction, Radiation» Potential

More information

x x2 2 + x3 3 x4 3. Use the divided-difference method to find a polynomial of least degree that fits the values shown: (b)

x x2 2 + x3 3 x4 3. Use the divided-difference method to find a polynomial of least degree that fits the values shown: (b) Numerical Methods - PROBLEMS. The Taylor series, about the origin, for log( + x) is x x2 2 + x3 3 x4 4 + Find an upper bound on the magnitude of the truncation error on the interval x.5 when log( + x)

More information

ELEC9712 High Voltage Systems. 1.2 Heat transfer from electrical equipment

ELEC9712 High Voltage Systems. 1.2 Heat transfer from electrical equipment ELEC9712 High Voltage Systems 1.2 Heat transfer from electrical equipment The basic equation governing heat transfer in an item of electrical equipment is the following incremental balance equation, with

More information

Validation of DNS techniques for dynamic combined indoor air and constructions simulations using an experimental scale model

Validation of DNS techniques for dynamic combined indoor air and constructions simulations using an experimental scale model Excerpt from the Proceedings of the COMSOL Conference 2008 Hannover Validation of DNS techniques for dynamic combined indoor air and constructions simulations using an experimental scale model T.A.J. (Dennis)

More information

Transport processes. 7. Semester Chemical Engineering Civil Engineering

Transport processes. 7. Semester Chemical Engineering Civil Engineering Transport processes 7. Semester Chemical Engineering Civil Engineering 1. Elementary Fluid Dynamics 2. Fluid Kinematics 3. Finite Control Volume Analysis 4. Differential Analysis of Fluid Flow 5. Viscous

More information

PROBLEM Node 5: ( ) ( ) ( ) ( )

PROBLEM Node 5: ( ) ( ) ( ) ( ) PROBLEM 4.78 KNOWN: Nodal network and boundary conditions for a water-cooled cold plate. FIND: (a) Steady-state temperature distribution for prescribed conditions, (b) Means by which operation may be extended

More information

Homework 4 in 5C1212; Part A: Incompressible Navier- Stokes, Finite Volume Methods

Homework 4 in 5C1212; Part A: Incompressible Navier- Stokes, Finite Volume Methods Homework 4 in 5C11; Part A: Incompressible Navier- Stokes, Finite Volume Methods Consider the incompressible Navier Stokes in two dimensions u x + v y = 0 u t + (u ) x + (uv) y + p x = 1 Re u + f (1) v

More information

Problem C3.5 Direct Numerical Simulation of the Taylor-Green Vortex at Re = 1600

Problem C3.5 Direct Numerical Simulation of the Taylor-Green Vortex at Re = 1600 Problem C3.5 Direct Numerical Simulation of the Taylor-Green Vortex at Re = 6 Overview This problem is aimed at testing the accuracy and the performance of high-order methods on the direct numerical simulation

More information

ECE309 INTRODUCTION TO THERMODYNAMICS & HEAT TRANSFER. 3 August 2004

ECE309 INTRODUCTION TO THERMODYNAMICS & HEAT TRANSFER. 3 August 2004 ECE309 INTRODUCTION TO THERMODYNAMICS & HEAT TRANSFER 3 August 004 Final Examination R. Culham This is a 3 hour, closed-book examination. You are permitted to use one 8.5 in. in. crib sheet (both sides),

More information

Solution Methods. Steady State Diffusion Equation. Lecture 04

Solution Methods. Steady State Diffusion Equation. Lecture 04 Solution Methods Steady State Diffusion Equation Lecture 04 1 Solution methods Focus on finite volume method. Background of finite volume method. Discretization example. General solution method. Convergence.

More information

Write Down Your NAME. Circle Your DIVISION. Div. 1 Div. 2 Div. 3 Div.4 8:30 am 9:30 pm 12:30 pm 3:30 pm Han Xu Ruan Pan

Write Down Your NAME. Circle Your DIVISION. Div. 1 Div. 2 Div. 3 Div.4 8:30 am 9:30 pm 12:30 pm 3:30 pm Han Xu Ruan Pan Write Down Your NAME, Last First Circle Your DIVISION Div. 1 Div. 2 Div. 3 Div.4 8:30 am 9:30 pm 12:30 pm 3:30 pm Han Xu Ruan Pan ME315 Heat and Mass Transfer School of Mechanical Engineering Purdue University

More information

Active Flux for Advection Diffusion

Active Flux for Advection Diffusion Active Flux for Advection Diffusion A Miracle in CFD Hiroaki Nishikawa National Institute of Aerospace! NIA CFD Seminar! August 25, 2015 In collaboration with the University of Michigan Supported by NASA

More information

Conduction Heat Transfer. Fourier Law of Heat Conduction. x=l Q x+ Dx. insulated x+ Dx. x x. x=0 Q x A

Conduction Heat Transfer. Fourier Law of Heat Conduction. x=l Q x+ Dx. insulated x+ Dx. x x. x=0 Q x A Conduction Heat Transfer Reading Problems 10-1 10-6 10-20, 10-48, 10-59, 10-70, 10-75, 10-92 10-117, 10-123, 10-151, 10-156, 10-162 11-1 11-2 11-14, 11-20, 11-36, 11-41, 11-46, 11-53, 11-104 Fourier Law

More information

Thermal System Closed-Loop Temperature Control

Thermal System Closed-Loop Temperature Control Thermal System Closed-Loop Temperature Control aluminum plate thin-film resistive heater ceramic insulation conduction and convection heat transfer AD590 temperature sensor microcontroller on-off closed-loop

More information

Relationship to Thermodynamics. Chapter One Section 1.3

Relationship to Thermodynamics. Chapter One Section 1.3 Relationship to Thermodynamics Chapter One Section 1.3 Alternative Formulations Alternative Formulations Time Basis: CONSERVATION OF ENERGY (FIRST LAW OF THERMODYNAMICS) An important tool in heat transfer

More information

Elementary Non-Steady Phenomena

Elementary Non-Steady Phenomena Elementary Non-Steady (Transient) Phenomena (T) Elementary Non-Steady Phenomena Because Transport deals with rates it is often the case that we must consider non-steady (or transient) operation (when the

More information

Conduction Heat Transfer. Fourier Law of Heat Conduction. Thermal Resistance Networks. Resistances in Series. x=l Q x+ Dx. insulated x+ Dx.

Conduction Heat Transfer. Fourier Law of Heat Conduction. Thermal Resistance Networks. Resistances in Series. x=l Q x+ Dx. insulated x+ Dx. Conduction Heat Transfer Reading Problems 17-1 17-6 17-35, 17-57, 17-68, 17-81, 17-88, 17-110 18-1 18-2 18-14, 18-20, 18-34, 18-52, 18-80, 18-104 Fourier Law of Heat Conduction insulated x+ Dx x=l Q x+

More information

First-Order Differential Equations

First-Order Differential Equations CHAPTER 1 First-Order Differential Equations 1. Diff Eqns and Math Models Know what it means for a function to be a solution to a differential equation. In order to figure out if y = y(x) is a solution

More information

Coupling Physics. Tomasz Stelmach Senior Application Engineer

Coupling Physics. Tomasz Stelmach Senior Application Engineer Coupling Physics Tomasz Stelmach Senior Application Engineer Agenda Brief look @ Multiphysics solution What is new in R18 Fluent Maxwell coupling wireless power transfer Brief look @ ANSYS Multiphysics

More information

FIND: (a) Sketch temperature distribution, T(x,t), (b) Sketch the heat flux at the outer surface, q L,t as a function of time.

FIND: (a) Sketch temperature distribution, T(x,t), (b) Sketch the heat flux at the outer surface, q L,t as a function of time. PROBLEM 5.1 NOWN: Electrical heater attached to backside of plate while front surface is exposed to convection process (T,h); initially plate is at a uniform temperature of the ambient air and suddenly

More information

Chapter 11: Heat Exchangers. Dr Ali Jawarneh Department of Mechanical Engineering Hashemite University

Chapter 11: Heat Exchangers. Dr Ali Jawarneh Department of Mechanical Engineering Hashemite University Chapter 11: Heat Exchangers Dr Ali Jawarneh Department of Mechanical Engineering Hashemite University Objectives When you finish studying this chapter, you should be able to: Recognize numerous types of

More information

ME 320L/354L Laboratory 3

ME 320L/354L Laboratory 3 ME 320L/354L Laboratory 3 Verification of numerical solution for transient conduction Introduction As we did last time around, we put on Fourier s hat, and his shoes for good measure, and pretend that

More information

C ONTENTS CHAPTER TWO HEAT CONDUCTION EQUATION 61 CHAPTER ONE BASICS OF HEAT TRANSFER 1 CHAPTER THREE STEADY HEAT CONDUCTION 127

C ONTENTS CHAPTER TWO HEAT CONDUCTION EQUATION 61 CHAPTER ONE BASICS OF HEAT TRANSFER 1 CHAPTER THREE STEADY HEAT CONDUCTION 127 C ONTENTS Preface xviii Nomenclature xxvi CHAPTER ONE BASICS OF HEAT TRANSFER 1 1-1 Thermodynamics and Heat Transfer 2 Application Areas of Heat Transfer 3 Historical Background 3 1-2 Engineering Heat

More information