Diffusion - The Heat Equation

Size: px
Start display at page:

Download "Diffusion - The Heat Equation"

Transcription

1 Chapter 6 Diffusion - The Heat Equation 6.1 Goal Understand how to model a simple diffusion process and apply it to derive the heat equation in one dimension. We begin with the fundamental conservation law given in equation 5.4. The diffusion model will result in a different expression for the flux, φ (x, t), hence we will have a different PDE for the diffusion model. In the process, we will explain what diffusion is. We will not solve the heat equation yet. 6.2 Diffusion In the previous model, advection, the flow of the quantity being studied was caused by the motion of the supporting fluid. In the example of a pollutant in a river, the flow of the pollutant is caused by the current of the water in the river. Flow may be the result of other physical phenomena. In this section, we consider another model, diffusion. Diffusion is the transport of a material or chemical by molecular motion. Molecules of a substance exhibit microscopic erratic motions due to being randomly struck by other molecules of that substance, or other substances also present. As a result, individual particles or molecules will follow paths sometimes known as "random walks". This is possible because whether a substance is in the gas state, the fluid state or the solid state, its molecules can have some motion with respect to one another. In the case of a gas, individual molecules can move freely with respect to one another. In the case of a liquid, the bonds between molecules are weak and molecules can have a wide range of motion with respect to one another. For solids, the bonds between molecules are stronger, but they can still vibrate with respect to one another. The important point is that molecules can exhibit some motion with respect to one another. If 37

2 38 CHAPTER 6. DIFFUSION - THE HEAT EQUATION the substance is in a steady state, all the molecules move or vibrate at the same rate, there is equilibrium. If for some reason, some molecules of a substance move at a higher speed, then they will strike other molecules and cause them to move faster. These molecules will in turn strike other molecules and cause them to move faster. This will create a flow. The flow is always from the molecules which move at higher speed to the ones which move at lower speed. This phenomenon can be observed in the following experiment. Consider a box separated in two halves with a membrane. Both halves contain the same gas. In one half, the molecules are much more agitated than in the other half. If we remove the membrane, the more agitated molecules will strike the less agitated ones and cause them to move faster. After a while, an equilibrium will be reached. To model this random motion, we make two observations. The first one was already mentioned above: flow is always from more agitated molecules (higher kinetic energy) to less agitated molecules. Since the agitation of molecules is related to the temperature of the substance as well as the density of the substance, the greater the temperature or density, the greater the agitation. This leads to the second observation. The steeper the density gradient of the substance being studied, the greater the flow. In other words, the flux, which measures the speed of the flow, will be proportional to the gradient of the concentration of the substance being studied. In one dimension, where there is only one spatial variable, the gradient is simply the first derivative with respect to the spatial variable. Thus we can write φ (x, t) = Du x Where D>0 is a constant of proportionality. It is called the diffusion constant. u is the density of the quantity being studied. We see that if u x > 0, that is the density increases from left to right, the the flow should be from right to left, that is will be negative. If u x < 0, that is the density decreases from right to left, then the flux will be from left to right, thus will be positive. If we use this expression for φ in equation 5.4, then we get u t Du xx = f (x, t) For now, we will focus on the diffusion process only and assume there is no sources, that is f (x, t) =0. Thus, we obtain the general diffusion equation Equation 6.1 is known as Fick s law. 6.3 Diffusion and Other Models Again, we start with the conservation law u t Du xx =0 (6.1) u t + φ x = f (x, t)

3 6.4. HEAT EQUATION WITH ONLY DIFFUSION PRESENT If both diffusion and advection are present and there are no sources, then the flux is given by φ = cu Du x Thus, the conservation law becomes u t + cu x Du xx =0 (6.2) This is the advection-diffusion equation. This equation could govern the density of a pollutant in a river. Advection would be caused by the flow of the river with speed c. As the pollutant is flowing, it would also diffuse according to Fick s law. 2. In the above example, if the pollutant also decays at rate λ>0, then f (x, t) = λu and the equation governing this model becomes u t + cu x Du xx = λu (6.3) This is the advection-diffusion-decay equation. 6.4 Heat Equation With Only Diffusion Present We now apply equation 6.1 to the study of heat flow. Heat can flow according to the diffusion model. The warmer a substance is, the more agitated its molecules are. If we consider a rod and assume that one part of the rod is warmer, then the molecules of that warmer part will be more agitated. As they strike surrounding molecules, they will cause these molecules to be more agitated thus the heat will spread. This is diffusion. Let us introduce some notation. Consider a thin rod having a constant density ρ and specific heat C. The specific heat of a substance is the amount of energy needed to raise the temperature of a unit mass of the substance by one degree. Both ρ and C are known for known substances, they can be found in engineering and physics handbooks. If u (x, t) is the energy density, then u (x, t) =ρcθ (x, t) If we apply the conservation law with no sources (equation 5.4), we obtain ρcθ t + φ x =0 Because of heat flow follows a diffusion model, φ = Kθ x where K is the thermal conductivity, another constant which can be found for each known substance in engineering and physics handbooks. This is known as Fourier s heat law. This, combining these two equations gives ρcθ t Kθ xx =0 (6.4)

4 40 CHAPTER 6. DIFFUSION - THE HEAT EQUATION or θ t kθ xx =0 (6.5) where k = K,itiscalledthediffusivity or thermal diffusivity. This is ρc known as the heat equation. It is the same equation you were given earlier. Now, we have derived it using the conservation law. Remark 44 In deriving this equation, we made some assumptions about the rod.theseassumptionsleadustoassumethatρ and C and K were constants. If the rod is not homogeneous, K will also depend on x. In addition, if we consider wide ranges of temperatures, K mayalsodependonθ. So, equation 6.4 would become ρcθ t (K (x, θ) θ x ) x =0 (6.6) This is a non-linear model. 6.5 Auxiliary Conditions As we have already discussed, there are two kinds of auxiliary conditions. They are the boundary conditions and the initial conditions Initial Conditions These conditions specify the value of the unknown function for some value of t, usually when t =0. If one were to study the temperature of a thin rod of length L, an initial condition would have the form u (x, 0) = u 0 (x) for 0 x L Where u 0 (x) is the given initial density distribution Boundary Conditions There are three kind of boundary conditions. 1. Dirichlet Condition. In this case, the value of the unknown function is specified at the boundary. Again, in the case of a thin rod of length L, the Dirichlet condition might be u (0,t)=g 1 (t), u (L, t) =g 2 (t) for t>0 2. Neumann Condition. In this case, the flux at the boundary is specified. Again, in the case of a thin rod of length L, the Neumann condition might be Du x (0,t)=h 1 (t), Du x (L, t) =h 2 (t) for t>0

5 6.6. STEADY STATE SOLUTION Mixed Condition. This condition expresses Newton s law of cooling which states that the heat flux is proportional to the temperature difference between the end of the bar and the given temperature which would represent the temperature of the surrounding medium. Again, in the case of a thin rod of length L, the mixed condition might be Du x (0,t)= β 1 (u (0,t) ψ 1 (t)), Du x (L, t) = β 2 (u (L, t) ψ 2 (t)) for t>0 6.6 Steady State Solution Many PDE models, in particular diffusion problems, have the property that after a long time, they approach a steady state, that is a solution which is no longer evolving with time. In other words, for large t, u (x, t) becomes a function of x only and u t =0. Even if we do not yet know how to solve PDE s, we can, in most cases, find the steady state solution. To do so, we set u t =0 in the diffusion equation. The resulting equation is a second-order linear ODE, which we know how to solve. Remember that the solution should be a function of x only. The example below illustrate how. Example 45 Find the steady state solution of equation 6.1. The steady state solution is reached when u t =0. Thus, we solve u xx =0 The steady state solution is u (x) =ax + b forsomeconstanta and b which can be determined from the boundary conditions. For example, in the case of a rod of length L, ifweknowthatu (0,t)=T 1 and u (L, t) =T 2 for all t>0, thenit follows for the steady state solution that u (0,t)=a (0) + b = T 1 So, And b = T 1 u (L, t) = al + b So = al + T 1 = T 2 al + T 1 = T 2 Thus a = T 2 T 1 L Therefore, the steady state solution is u (x) = T 2 T 1 x + T 1 L

6 42 CHAPTER 6. DIFFUSION - THE HEAT EQUATION 6.7 Problems 1. Show that the diffusion-advection-decay equation u t Du xx + cu x = λu can be transformed into the diffusion equation by the transformation u (x, t) =w (x, t) e αx βt where α = c c2 and β = λ + 2D 4D. 2. Let u = u (x, t) satisfy the PDE model u t = ku xx 0 <x<l, t>0 u (0,t)=u(L, t) =0 t>0 u (x, 0) = u 0 (x) 0 x L (a) Find the steady-state solution. (b) Show that L 0 u (x, t)2 dx L 0 u 0 (x) 2 dx. (hint: LetE (t) = L 0 u (x, t)2 dx and show that E (t) 0). What can be said of u (x, t) if u 0 (x) =0? 3. Consider an initial value problem for the diffusion-decay equation u t Du xx + ru =0 0<x<L, t>0 u (0,t)=0, Du x (L, t) = 1 t>0 u (x, 0) = g (x) 0 <x<l Find the steady-state solution. 4. Heat flow in a metal rod with an internal heat source is given by { u t ku xx =1 0<x<1, t>0 u (0,t)=0, u (1,t)=1 t>0 Find the steady state. Does it matter that no initial condition is given?

Introduction to Partial Differential Equations

Introduction to Partial Differential Equations Introduction to Partial Differential Equations Philippe B. Laval KSU Current Semester Philippe B. Laval (KSU) 1D Heat Equation: Derivation Current Semester 1 / 19 Introduction The derivation of the heat

More information

Introduction to Partial Differential Equations

Introduction to Partial Differential Equations Introduction to Partial Differential Equations Philippe B. Laval KSU Current Semester Philippe B. Laval (KSU) Key Concepts Current Semester 1 / 25 Introduction The purpose of this section is to define

More information

Math 46, Applied Math (Spring 2009): Final

Math 46, Applied Math (Spring 2009): Final Math 46, Applied Math (Spring 2009): Final 3 hours, 80 points total, 9 questions worth varying numbers of points 1. [8 points] Find an approximate solution to the following initial-value problem which

More information

Final: Solutions Math 118A, Fall 2013

Final: Solutions Math 118A, Fall 2013 Final: Solutions Math 118A, Fall 2013 1. [20 pts] For each of the following PDEs for u(x, y), give their order and say if they are nonlinear or linear. If they are linear, say if they are homogeneous or

More information

13 PDEs on spatially bounded domains: initial boundary value problems (IBVPs)

13 PDEs on spatially bounded domains: initial boundary value problems (IBVPs) 13 PDEs on spatially bounded domains: initial boundary value problems (IBVPs) A prototypical problem we will discuss in detail is the 1D diffusion equation u t = Du xx < x < l, t > finite-length rod u(x,

More information

Conservation and dissipation principles for PDEs

Conservation and dissipation principles for PDEs Conservation and dissipation principles for PDEs Modeling through conservation laws The notion of conservation - of number, energy, mass, momentum - is a fundamental principle that can be used to derive

More information

Problem set 3: Solutions Math 207B, Winter Suppose that u(x) is a non-zero solution of the eigenvalue problem. (u ) 2 dx, u 2 dx.

Problem set 3: Solutions Math 207B, Winter Suppose that u(x) is a non-zero solution of the eigenvalue problem. (u ) 2 dx, u 2 dx. Problem set 3: Solutions Math 27B, Winter 216 1. Suppose that u(x) is a non-zero solution of the eigenvalue problem u = λu < x < 1, u() =, u(1) =. Show that λ = (u ) 2 dx u2 dx. Deduce that every eigenvalue

More information

Lecture 7. Heat Conduction. BENG 221: Mathematical Methods in Bioengineering. References

Lecture 7. Heat Conduction. BENG 221: Mathematical Methods in Bioengineering. References BENG 221: Mathematical Methods in Bioengineering Lecture 7 Heat Conduction References Haberman APDE, Ch. 1. http://en.wikipedia.org/wiki/heat_equation Lecture 5 BENG 221 M. Intaglietta Heat conduction

More information

Mathematical Methods - Lecture 9

Mathematical Methods - Lecture 9 Mathematical Methods - Lecture 9 Yuliya Tarabalka Inria Sophia-Antipolis Méditerranée, Titane team, http://www-sop.inria.fr/members/yuliya.tarabalka/ Tel.: +33 (0)4 92 38 77 09 email: yuliya.tarabalka@inria.fr

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

Diffusion of a density in a static fluid

Diffusion of a density in a static fluid Diffusion of a density in a static fluid u(x, y, z, t), density (M/L 3 ) of a substance (dye). Diffusion: motion of particles from places where the density is higher to places where it is lower, due to

More information

Boundary conditions. Diffusion 2: Boundary conditions, long time behavior

Boundary conditions. Diffusion 2: Boundary conditions, long time behavior Boundary conditions In a domain Ω one has to add boundary conditions to the heat (or diffusion) equation: 1. u(x, t) = φ for x Ω. Temperature given at the boundary. Also density given at the boundary.

More information

Modeling using conservation laws. Let u(x, t) = density (heat, momentum, probability,...) so that. u dx = amount in region R Ω. R

Modeling using conservation laws. Let u(x, t) = density (heat, momentum, probability,...) so that. u dx = amount in region R Ω. R Modeling using conservation laws Let u(x, t) = density (heat, momentum, probability,...) so that u dx = amount in region R Ω. R Modeling using conservation laws Let u(x, t) = density (heat, momentum, probability,...)

More information

INTRODUCTION TO PDEs

INTRODUCTION TO PDEs INTRODUCTION TO PDEs In this course we are interested in the numerical approximation of PDEs using finite difference methods (FDM). We will use some simple prototype boundary value problems (BVP) and initial

More information

Partial Differential Equations

Partial Differential Equations Partial Differential Equations Xu Chen Assistant Professor United Technologies Engineering Build, Rm. 382 Department of Mechanical Engineering University of Connecticut xchen@engr.uconn.edu Contents 1

More information

Lecture 4: Classical Illustrations of Macroscopic Thermal Effects. Heat capacity of solids & liquids. Thermal conductivity

Lecture 4: Classical Illustrations of Macroscopic Thermal Effects. Heat capacity of solids & liquids. Thermal conductivity Lecture 4: Classical Illustrations of Macroscopic Thermal Effects Heat capacity of solids & liquids Thermal conductivity References for this Lecture: Elements Ch 3,4A-C Reference for Lecture 5: Elements

More information

Q ( q(m, t 0 ) n) S t.

Q ( q(m, t 0 ) n) S t. THE HEAT EQUATION The main equations that we will be dealing with are the heat equation, the wave equation, and the potential equation. We use simple physical principles to show how these equations are

More information

CHAPTER 4. Introduction to the. Heat Conduction Model

CHAPTER 4. Introduction to the. Heat Conduction Model A SERIES OF CLASS NOTES FOR 005-006 TO INTRODUCE LINEAR AND NONLINEAR PROBLEMS TO ENGINEERS, SCIENTISTS, AND APPLIED MATHEMATICIANS DE CLASS NOTES 4 A COLLECTION OF HANDOUTS ON PARTIAL DIFFERENTIAL EQUATIONS

More information

Math 5587 Lecture 2. Jeff Calder. August 31, Initial/boundary conditions and well-posedness

Math 5587 Lecture 2. Jeff Calder. August 31, Initial/boundary conditions and well-posedness Math 5587 Lecture 2 Jeff Calder August 31, 2016 1 Initial/boundary conditions and well-posedness 1.1 ODE vs PDE Recall that the general solutions of ODEs involve a number of arbitrary constants. Example

More information

Finite difference method for solving Advection-Diffusion Problem in 1D

Finite difference method for solving Advection-Diffusion Problem in 1D Finite difference method for solving Advection-Diffusion Problem in 1D Author : Osei K. Tweneboah MATH 5370: Final Project Outline 1 Advection-Diffusion Problem Stationary Advection-Diffusion Problem in

More information

25.2. Applications of PDEs. Introduction. Prerequisites. Learning Outcomes

25.2. Applications of PDEs. Introduction. Prerequisites. Learning Outcomes Applications of PDEs 25.2 Introduction In this Section we discuss briefly some of the most important PDEs that arise in various branches of science and engineering. We shall see that some equations can

More information

Homework for Math , Fall 2016

Homework for Math , Fall 2016 Homework for Math 5440 1, Fall 2016 A. Treibergs, Instructor November 22, 2016 Our text is by Walter A. Strauss, Introduction to Partial Differential Equations 2nd ed., Wiley, 2007. Please read the relevant

More information

Dispersion relations, linearization and linearized dynamics in PDE models

Dispersion relations, linearization and linearized dynamics in PDE models Dispersion relations, linearization and linearized dynamics in PDE models 1 Dispersion relations Suppose that u(x, t) is a function with domain { < x 0}, and it satisfies a linear, constant coefficient

More information

surface area per unit time is w(x, t). Derive the partial differential

surface area per unit time is w(x, t). Derive the partial differential 1.2 Conduction of Heat in One-Dimension 11 1.2.4. Derive the diffusion equation for a chemical pollutant. (a) Consider the total amount of the chemical in a thin region between x and x + Ax. (b) Consider

More information

Introduction of Partial Differential Equations and Boundary Value Problems

Introduction of Partial Differential Equations and Boundary Value Problems Introduction of Partial Differential Equations and Boundary Value Problems 2009 Outline Definition Classification Where PDEs come from? Well-posed problem, solutions Initial Conditions and Boundary Conditions

More information

Strauss PDEs 2e: Section Exercise 1 Page 1 of 6

Strauss PDEs 2e: Section Exercise 1 Page 1 of 6 Strauss PDEs 2e: Section 3 - Exercise Page of 6 Exercise Carefully derive the equation of a string in a medium in which the resistance is proportional to the velocity Solution There are two ways (among

More information

What Is Air Temperature?

What Is Air Temperature? 2.2 Read What Is Air Temperature? In Learning Set 1, you used a thermometer to measure air temperature. But what exactly was the thermometer measuring? What is different about cold air and warm air that

More information

Some Aspects of Solutions of Partial Differential Equations

Some Aspects of Solutions of Partial Differential Equations Some Aspects of Solutions of Partial Differential Equations K. Sakthivel Department of Mathematics Indian Institute of Space Science & Technology(IIST) Trivandrum - 695 547, Kerala Sakthivel@iist.ac.in

More information

Lecture 5: Travelling Waves

Lecture 5: Travelling Waves Computational Biology Group (CoBI), D-BSSE, ETHZ Lecture 5: Travelling Waves Prof Dagmar Iber, PhD DPhil MSc Computational Biology 2015 26. Oktober 2016 2 / 68 Contents 1 Introduction to Travelling Waves

More information

Transforming Nonhomogeneous BCs Into Homogeneous Ones

Transforming Nonhomogeneous BCs Into Homogeneous Ones Chapter 10 Transforming Nonhomogeneous s Into Homogeneous Ones 10.1 Goal In the previous chapter, we looked at separation of variables. We saw that this method applies if both the boundary conditions and

More information

Math 5440 Problem Set 2 Solutions

Math 5440 Problem Set 2 Solutions Math Math Problem Set Solutions Aaron Fogelson Fall, 1: (Logan, 1. # 1) How would the derivation of the basic conservation law u t + φ = f change if the tube had variable cross-sectional area A = A() rather

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

My signature below certifies that I have complied with the University of Pennsylvania s Code of Academic Integrity in completing this exam.

My signature below certifies that I have complied with the University of Pennsylvania s Code of Academic Integrity in completing this exam. My signature below certifies that I have complied with the University of Pennsylvania s Code of Academic Integrity in completing this exam. Signature Printed Name Math 241 Exam 1 Jerry Kazdan Feb. 17,

More information

The Heat Equation with partial differential equations

The Heat Equation with partial differential equations Applications of Differential Equations 1/100 The Heat Equation with partial differential equations David Richards and Adam Abrahamsen Introduction The purpose of our presentation is to derive the heat

More information

Assess why particular characteristics are necessary for effective conduction KEY POINTS

Assess why particular characteristics are necessary for effective conduction KEY POINTS Conduction LEARNING OBJECTIVES Assess why particular characteristics are necessary for effective conduction KEY POINTS On a microscopic scale, conduction occurs as rapidly moving or vibrating atoms and

More information

(The) Three Linear Partial Differential Equations

(The) Three Linear Partial Differential Equations (The) Three Linear Partial Differential Equations 1 Introduction A partial differential equation (PDE) is an equation of a function of 2 or more variables, involving 2 or more partial derivatives in different

More information

Chapter One: Where PDEs come from

Chapter One: Where PDEs come from Chapter One: Where PDEs come from After thinking about the meaning of a partial differential equation, we will flex our mathematical muscles by solving a few of them. Then we will see how naturally they

More information

Chapter 1 INTRODUCTION AND BASIC CONCEPTS

Chapter 1 INTRODUCTION AND BASIC CONCEPTS Heat and Mass Transfer: Fundamentals & Applications 5th Edition in SI Units Yunus A. Çengel, Afshin J. Ghajar McGraw-Hill, 2015 Chapter 1 INTRODUCTION AND BASIC CONCEPTS Mehmet Kanoglu University of Gaziantep

More information

- Apply closed system energy balances, observe sign convention for work and heat transfer.

- Apply closed system energy balances, observe sign convention for work and heat transfer. CHAPTER : ENERGY AND THE FIRST LAW OF THERMODYNAMICS Objectives: - In this chapter we discuss energy and develop equations for applying the principle of conservation of energy. Learning Outcomes: - Demonstrate

More information

Differential equations, comprehensive exam topics and sample questions

Differential equations, comprehensive exam topics and sample questions Differential equations, comprehensive exam topics and sample questions Topics covered ODE s: Chapters -5, 7, from Elementary Differential Equations by Edwards and Penney, 6th edition.. Exact solutions

More information

Numerical Solutions to Partial Differential Equations

Numerical Solutions to Partial Differential Equations Numerical Solutions to Partial Differential Equations Zhiping Li LMAM and School of Mathematical Sciences Peking University Numerical Methods for Partial Differential Equations Finite Difference Methods

More information

DUHAMEL S PRINCIPLE FOR THE WAVE EQUATION HEAT EQUATION WITH EXPONENTIAL GROWTH or DECAY COOLING OF A SPHERE DIFFUSION IN A DISK SUMMARY of PDEs

DUHAMEL S PRINCIPLE FOR THE WAVE EQUATION HEAT EQUATION WITH EXPONENTIAL GROWTH or DECAY COOLING OF A SPHERE DIFFUSION IN A DISK SUMMARY of PDEs DUHAMEL S PRINCIPLE FOR THE WAVE EQUATION HEAT EQUATION WITH EXPONENTIAL GROWTH or DECAY COOLING OF A SPHERE DIFFUSION IN A DISK SUMMARY of PDEs MATH 4354 Fall 2005 December 5, 2005 1 Duhamel s Principle

More information

ENGI 9420 Lecture Notes 8 - PDEs Page 8.01

ENGI 9420 Lecture Notes 8 - PDEs Page 8.01 ENGI 940 Lecture Notes 8 - PDEs Page 8.01 8. Partial Differential Equations Partial differential equations (PDEs) are equations involving functions of more than one variable and their partial derivatives

More information

Mechanical Engineering. Postal Correspondence Course HEAT TRANSFER. GATE, IES & PSUs

Mechanical Engineering. Postal Correspondence Course HEAT TRANSFER. GATE, IES & PSUs Heat Transfer-ME GATE, IES, PSU 1 SAMPLE STUDY MATERIAL Mechanical Engineering ME Postal Correspondence Course HEAT TRANSFER GATE, IES & PSUs Heat Transfer-ME GATE, IES, PSU 2 C O N T E N T 1. INTRODUCTION

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

CLASSIFICATION AND PRINCIPLE OF SUPERPOSITION FOR SECOND ORDER LINEAR PDE

CLASSIFICATION AND PRINCIPLE OF SUPERPOSITION FOR SECOND ORDER LINEAR PDE CLASSIFICATION AND PRINCIPLE OF SUPERPOSITION FOR SECOND ORDER LINEAR PDE 1. Linear Partial Differential Equations A partial differential equation (PDE) is an equation, for an unknown function u, that

More information

Mathématiques appliquées (MATH0504-1) B. Dewals, Ch. Geuzaine

Mathématiques appliquées (MATH0504-1) B. Dewals, Ch. Geuzaine Lecture 2 The wave equation Mathématiques appliquées (MATH0504-1) B. Dewals, Ch. Geuzaine V1.0 28/09/2018 1 Learning objectives of this lecture Understand the fundamental properties of the wave equation

More information

Math 251 December 14, 2005 Final Exam. 1 18pt 2 16pt 3 12pt 4 14pt 5 12pt 6 14pt 7 14pt 8 16pt 9 20pt 10 14pt Total 150pt

Math 251 December 14, 2005 Final Exam. 1 18pt 2 16pt 3 12pt 4 14pt 5 12pt 6 14pt 7 14pt 8 16pt 9 20pt 10 14pt Total 150pt Math 251 December 14, 2005 Final Exam Name Section There are 10 questions on this exam. Many of them have multiple parts. The point value of each question is indicated either at the beginning of each question

More information

McGill University April 20, Advanced Calculus for Engineers

McGill University April 20, Advanced Calculus for Engineers McGill University April 0, 016 Faculty of Science Final examination Advanced Calculus for Engineers Math 64 April 0, 016 Time: PM-5PM Examiner: Prof. R. Choksi Associate Examiner: Prof. A. Hundemer Student

More information

Transforming Nonhomogeneous BCs Into Homogeneous Ones

Transforming Nonhomogeneous BCs Into Homogeneous Ones Chapter 8 Transforming Nonhomogeneous s Into Homogeneous Ones 8.1 Goal In this chapter we look at more challenging example of problems which can be solved by separation of variables. A restriction of the

More information

The One-Dimensional Heat Equation

The One-Dimensional Heat Equation The One-Dimensional Heat Equation R. C. Trinity University Partial Differential Equations February 24, 2015 Introduction The heat equation Goal: Model heat (thermal energy) flow in a one-dimensional object

More information

Lecture Introduction

Lecture Introduction Lecture 1 1.1 Introduction The theory of Partial Differential Equations (PDEs) is central to mathematics, both pure and applied. The main difference between the theory of PDEs and the theory of Ordinary

More information

Boundary-value Problems in Rectangular Coordinates

Boundary-value Problems in Rectangular Coordinates Boundary-value Problems in Rectangular Coordinates 2009 Outline Separation of Variables: Heat Equation on a Slab Separation of Variables: Vibrating String Separation of Variables: Laplace Equation Review

More information

1. Differential Equations (ODE and PDE)

1. Differential Equations (ODE and PDE) 1. Differential Equations (ODE and PDE) 1.1. Ordinary Differential Equations (ODE) So far we have dealt with Ordinary Differential Equations (ODE): involve derivatives with respect to only one variable

More information

Numerical Solutions to Partial Differential Equations

Numerical Solutions to Partial Differential Equations Numerical Solutions to Partial Differential Equations Zhiping Li LMAM and School of Mathematical Sciences Peking University Introduction to Hyperbolic Equations The Hyperbolic Equations n-d 1st Order Linear

More information

MA 201, Mathematics III, July-November 2016, Partial Differential Equations: 1D wave equation (contd.) and 1D heat conduction equation

MA 201, Mathematics III, July-November 2016, Partial Differential Equations: 1D wave equation (contd.) and 1D heat conduction equation MA 201, Mathematics III, July-November 2016, Partial Differential Equations: 1D wave equation (contd.) and 1D heat conduction equation Lecture 12 Lecture 12 MA 201, PDE (2016) 1 / 24 Formal Solution of

More information

Matter is made of atoms and molecules

Matter is made of atoms and molecules Name Per Talking to the Text Atoms and Molecules pt.2 Author Says (important ideas, vocabulary) Matter is made of atoms and molecules We have already used the term atom and molecule a couple of times.

More information

Lecture 2: Fundamentals. Sourav Saha

Lecture 2: Fundamentals. Sourav Saha ME 267: Mechanical Engineering Fundamentals Credit hours: 3.00 Lecture 2: Fundamentals Sourav Saha Lecturer Department of Mechanical Engineering, BUET Email address: ssaha09@me.buet.ac.bd, souravsahame17@gmail.com

More information

IV. Transport Phenomena Lecture 18: Forced Convection in Fuel Cells II

IV. Transport Phenomena Lecture 18: Forced Convection in Fuel Cells II IV. Transport Phenomena Lecture 18: Forced Convection in Fuel Cells II MIT Student (and MZB) As discussed in the previous lecture, we are interested in forcing fluid to flow in a fuel cell in order to

More information

Vibrating Strings and Heat Flow

Vibrating Strings and Heat Flow Vibrating Strings and Heat Flow Consider an infinite vibrating string Assume that the -ais is the equilibrium position of the string and that the tension in the string at rest in equilibrium is τ Let u(,

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

Lecture 4: Classical Illustrations of Macroscopic Thermal Effects

Lecture 4: Classical Illustrations of Macroscopic Thermal Effects Lecture 4: Classical Illustrations of Macroscopic Thermal Effects Heat capacity of solids & liquids Thermal conductivity Irreversibility References for this Lecture: Elements Ch 3,4A-C Reference for Lecture

More information

Partial Differential Equations Summary

Partial Differential Equations Summary Partial Differential Equations Summary 1. The heat equation Many physical processes are governed by partial differential equations. temperature of a rod. In this chapter, we will examine exactly that.

More information

Plasma Physics Prof. Vijayshri School of Sciences, IGNOU. Lecture No. # 38 Diffusion in Plasmas

Plasma Physics Prof. Vijayshri School of Sciences, IGNOU. Lecture No. # 38 Diffusion in Plasmas Plasma Physics Prof. Vijayshri School of Sciences, IGNOU Lecture No. # 38 Diffusion in Plasmas In today s lecture, we will be taking up the topic diffusion in plasmas. Diffusion, why do you need to study

More information

Chapter 21: Temperature, Heat and Expansion

Chapter 21: Temperature, Heat and Expansion Chapter 21: Temperature, Heat and Expansion All matter solid, liquid and gas is made of atoms or molecules, which are continually jiggling. As this jiggling is a movement, all these particles must have

More information

Lecture Outline Chapter 17. Physics, 4 th Edition James S. Walker. Copyright 2010 Pearson Education, Inc.

Lecture Outline Chapter 17. Physics, 4 th Edition James S. Walker. Copyright 2010 Pearson Education, Inc. Lecture Outline Chapter 17 Physics, 4 th Edition James S. Walker Chapter 17 Phases and Phase Changes Ideal Gases Kinetic Theory Units of Chapter 17 Solids and Elastic Deformation Phase Equilibrium and

More information

Module 5: Rise and Fall of the Clockwork Universe. You should be able to demonstrate and show your understanding of:

Module 5: Rise and Fall of the Clockwork Universe. You should be able to demonstrate and show your understanding of: OCR B Physics H557 Module 5: Rise and Fall of the Clockwork Universe You should be able to demonstrate and show your understanding of: 5.2: Matter Particle model: A gas consists of many very small, rapidly

More information

6 Non-homogeneous Heat Problems

6 Non-homogeneous Heat Problems 6 Non-homogeneous Heat Problems Up to this point all the problems we have considered for the heat or wave equation we what we call homogeneous problems. This means that for an interval < x < l the problems

More information

Plot of temperature u versus x and t for the heat conduction problem of. ln(80/π) = 820 sec. τ = 2500 π 2. + xu t. = 0 3. u xx. + u xt 4.

Plot of temperature u versus x and t for the heat conduction problem of. ln(80/π) = 820 sec. τ = 2500 π 2. + xu t. = 0 3. u xx. + u xt 4. 10.5 Separation of Variables; Heat Conduction in a Rod 579 u 20 15 10 5 10 50 20 100 30 150 40 200 50 300 x t FIGURE 10.5.5 Example 1. Plot of temperature u versus x and t for the heat conduction problem

More information

M.Sc. in Meteorology. Numerical Weather Prediction

M.Sc. in Meteorology. Numerical Weather Prediction M.Sc. in Meteorology UCD Numerical Weather Prediction Prof Peter Lynch Meteorology & Climate Centre School of Mathematical Sciences University College Dublin Second Semester, 2005 2006. In this section

More information

Math 342 Partial Differential Equations «Viktor Grigoryan

Math 342 Partial Differential Equations «Viktor Grigoryan Math 342 Partial Differential Equations «Viktor Grigoryan 15 Heat with a source So far we considered homogeneous wave and heat equations and the associated initial value problems on the whole line, as

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

ENGI 9420 Lecture Notes 8 - PDEs Page 8.01

ENGI 9420 Lecture Notes 8 - PDEs Page 8.01 ENGI 940 ecture Notes 8 - PDEs Page 8.0 8. Partial Differential Equations Partial differential equations (PDEs) are equations involving functions of more than one variable and their partial derivatives

More information

Partial Differential Equations for Engineering Math 312, Fall 2012

Partial Differential Equations for Engineering Math 312, Fall 2012 Partial Differential Equations for Engineering Math 312, Fall 2012 Jens Lorenz July 17, 2012 Contents Department of Mathematics and Statistics, UNM, Albuquerque, NM 87131 1 Second Order ODEs with Constant

More information

Properties of Vapors

Properties of Vapors Properties of Vapors Topics for Discussion The Pressure/Temperature Relationship Vaporization Condensation Enthalpy Properties of Vapors Topics for Discussion Entropy Properties of Substances Saturated

More information

Second-Order Linear ODEs (Textbook, Chap 2)

Second-Order Linear ODEs (Textbook, Chap 2) Second-Order Linear ODEs (Textbook, Chap ) Motivation Recall from notes, pp. 58-59, the second example of a DE that we introduced there. d φ 1 1 φ = φ 0 dx λ λ Q w ' (a1) This equation represents conservation

More information

1D heat conduction problems

1D heat conduction problems Chapter 1D heat conduction problems.1 1D heat conduction equation When we consider one-dimensional heat conduction problems of a homogeneous isotropic solid, the Fourier equation simplifies to the form:

More information

Tutorial 2. Introduction to numerical schemes

Tutorial 2. Introduction to numerical schemes 236861 Numerical Geometry of Images Tutorial 2 Introduction to numerical schemes c 2012 Classifying PDEs Looking at the PDE Au xx + 2Bu xy + Cu yy + Du x + Eu y + Fu +.. = 0, and its discriminant, B 2

More information

TRANSPORT PHENOMENON FICK S LAW OF DIFFUSION ATP-POWERED PUMPS -II-

TRANSPORT PHENOMENON FICK S LAW OF DIFFUSION ATP-POWERED PUMPS -II- TRANSPORT PHENOMENON FICK S LAW OF DIFFUSION ATP-POWERED PUMPS -II- Yalçın İŞLER, PhD Izmir Katip Celebi University Department of Biomedical Engineering islerya@yahoo.com DIFFUSION Diffusion describes

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

MATH-UA 263 Partial Differential Equations Recitation Summary

MATH-UA 263 Partial Differential Equations Recitation Summary MATH-UA 263 Partial Differential Equations Recitation Summary Yuanxun (Bill) Bao Office Hour: Wednesday 2-4pm, WWH 1003 Email: yxb201@nyu.edu 1 February 2, 2018 Topics: verifying solution to a PDE, dispersion

More information

Wave Equation With Homogeneous Boundary Conditions

Wave Equation With Homogeneous Boundary Conditions Wave Equation With Homogeneous Boundary Conditions MATH 467 Partial Differential Equations J. Robert Buchanan Department of Mathematics Fall 018 Objectives In this lesson we will learn: how to solve the

More information

Gas transfer rates If either phase concentration can not be predicted by Henry's law then there will be a transfer of mass across the interface until

Gas transfer rates If either phase concentration can not be predicted by Henry's law then there will be a transfer of mass across the interface until Gas transfer rates If either phase concentration can not be predicted by Henry's law then there will be a transfer of mass across the interface until equilibrium is reached. The mechanisms and rate expressions

More information

BASICS OF HMT-1. This subject is always fun to teach/study in winters

BASICS OF HMT-1. This subject is always fun to teach/study in winters BASICS OF HMT-1 This subject is always fun to teach/study in winters #1 What is heat? Heat is a form of thermal energy which is defined ONLY when it moves from one place to other. Otherwise, the thermal

More information

Kinetics. Rate of change in response to thermodynamic forces

Kinetics. Rate of change in response to thermodynamic forces Kinetics Rate of change in response to thermodynamic forces Deviation from local equilibrium continuous change T heat flow temperature changes µ atom flow composition changes Deviation from global equilibrium

More information

Classification of partial differential equations and their solution characteristics

Classification of partial differential equations and their solution characteristics 9 TH INDO GERMAN WINTER ACADEMY 2010 Classification of partial differential equations and their solution characteristics By Ankita Bhutani IIT Roorkee Tutors: Prof. V. Buwa Prof. S. V. R. Rao Prof. U.

More information

Chemical Processes. Transport Processes in the Environment. Transport Processes. Advection. Advection. t 1 t 2

Chemical Processes. Transport Processes in the Environment. Transport Processes. Advection. Advection. t 1 t 2 hemical Processes by Stefan Trapp (taken from course 4) Transport Processes in the Environment a definition of our nomenklatura Transport Processes Only 3 types of transport processes exist ) by advection

More information

Math 251 December 14, 2005 Answer Key to Final Exam. 1 18pt 2 16pt 3 12pt 4 14pt 5 12pt 6 14pt 7 14pt 8 16pt 9 20pt 10 14pt Total 150pt

Math 251 December 14, 2005 Answer Key to Final Exam. 1 18pt 2 16pt 3 12pt 4 14pt 5 12pt 6 14pt 7 14pt 8 16pt 9 20pt 10 14pt Total 150pt Name Section Math 51 December 14, 5 Answer Key to Final Exam There are 1 questions on this exam. Many of them have multiple parts. The point value of each question is indicated either at the beginning

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

Ordinary Differential Equations

Ordinary Differential Equations Ordinary Differential Equations Swaroop Nandan Bora swaroop@iitg.ernet.in Department of Mathematics Indian Institute of Technology Guwahati Guwahati-781039 Modelling a situation We study a model, a sort

More information

Introduction to Partial Differential Equation - I. Quick overview

Introduction to Partial Differential Equation - I. Quick overview Introduction to Partial Differential Equation - I. Quick overview To help explain the correspondence between a PDE and a real world phenomenon, we will use t to denote time and (x, y, z) to denote the

More information

Lecture 12: Detailed balance and Eigenfunction methods

Lecture 12: Detailed balance and Eigenfunction methods Miranda Holmes-Cerfon Applied Stochastic Analysis, Spring 2015 Lecture 12: Detailed balance and Eigenfunction methods Readings Recommended: Pavliotis [2014] 4.5-4.7 (eigenfunction methods and reversibility),

More information

THE WAVE EQUATION. F = T (x, t) j + T (x + x, t) j = T (sin(θ(x, t)) + sin(θ(x + x, t)))

THE WAVE EQUATION. F = T (x, t) j + T (x + x, t) j = T (sin(θ(x, t)) + sin(θ(x + x, t))) THE WAVE EQUATION The aim is to derive a mathematical model that describes small vibrations of a tightly stretched flexible string for the one-dimensional case, or of a tightly stretched membrane for the

More information

Section 12.6: Non-homogeneous Problems

Section 12.6: Non-homogeneous Problems Section 12.6: Non-homogeneous Problems 1 Introduction Up to this point all the problems we have considered are we what we call homogeneous problems. This means that for an interval < x < l the problems

More information

Conservation Laws of Surfactant Transport Equations

Conservation Laws of Surfactant Transport Equations Conservation Laws of Surfactant Transport Equations Alexei Cheviakov Department of Mathematics and Statistics, University of Saskatchewan, Saskatoon, Canada Winter 2011 CMS Meeting Dec. 10, 2011 A. Cheviakov

More information

THE CORPUSCULAR NATURE OF MATTER AND ITS PHYSICAL STATES

THE CORPUSCULAR NATURE OF MATTER AND ITS PHYSICAL STATES THE CORPUSCULAR NATURE OF MATTER AND ITS PHYSICAL STATES In this unit we are going to study the matter from a microscopic point of view using the kinetic theory. We will understand the properties of the

More information

Chapter 7.1. States of Matter

Chapter 7.1. States of Matter Chapter 7.1 States of Matter In this chapter... we will learn about matter and different states of matter, many of which we are already familiar with! Learning about Kinetic Molecular Theory will help

More information

Partial Differential Equations

Partial Differential Equations Partial Differential Equations Partial differential equations (PDEs) are equations involving functions of more than one variable and their partial derivatives with respect to those variables. Most (but

More information

Math 46, Applied Math (Spring 2008): Final

Math 46, Applied Math (Spring 2008): Final Math 46, Applied Math (Spring 2008): Final 3 hours, 80 points total, 9 questions, roughly in syllabus order (apart from short answers) 1. [16 points. Note part c, worth 7 points, is independent of the

More information

The One Dimensional Heat Equation

The One Dimensional Heat Equation The One Dimensional Heat Equation Adam Abrahamsen and David Richards May 22, 2002 Abstract In this document we will study the flow of heat in one dimension through a small thin rod. We will use the derivation

More information