Handbook of Computational Analytical Heat Conduction

Size: px
Start display at page:

Download "Handbook of Computational Analytical Heat Conduction"

Transcription

1 Filippo de Monte, James V. Beck, et al. January 27, Contents 1. Problem description 2 2. Dimensional governing equations Dimensionless variables Dimensionless governing equations Dimensionless temperature and heat flux solutions 3 6. Plots and tables of dimensionless temperature and heat flux. 4 Appendix. Matlab function.. 10

2 2 H Handbook of Computational Analytical Heat Conduction Filippo de Monte, James V. Beck, et al. January 27, Problem description Semi-infinite Cartesian body, initially at zero temperature and with temperatureindependent properties, subject to a step change in heat flux at x = 0, as depicted in Fig. 1. Fig. 1 Schematic of the 1D transient. 2. Dimensional governing equations The mathematical formulation of the problem is 2 T 2 x 1 T = α t ( 0 < x < ; t > 0) (1a) k T x x=0 = q 0 ( t > 0) (1b) T (,t) = finite ( t > 0 ) (1c) T (x,0) = 0 ( 0 < x < ) (1d)

3 Filippo de Monte, James V. Beck, et al. January 27, Dimensionless variables We have a total of four dimensionless groups T = T q 0 L / k, q = q = T q 0 x, x = x L, t = αt = Fo, (2) 2 L where q 0 L / k is the steady-state temperature of the X21B10T0 problem at x = 0, x [0,1] and Fo is the well-known Fourier number ( 0 ). 4. Dimensionless governing equations The mathematical formulation in dimensionless form is 2 T x 2 = T t ( 0 < x < ; t > 0 ) (3a) T x x=0 = 1 ( t > 0 ) (3b) T (, t ) = finite ( t > 0 ) (3c) T ( x,0) = 0 ( 0 < x < ) (3d) 5. Dimensionless temperature and heat flux solutions The solution to the current is a well-established exact analytical solution available in the heat conduction literature [1]. The solution is unique and is given in Ref. [1, p. 75, Eq. (6)] as x T ( x, t ) 2 t ierfc 2 t ( 0 x ) (4a) x q( x, t ) erfc 2 t ( 0 x ) (4b) where ierfc(z) is the so-called complementary error function integral defined as

4 4 H 2 z Filippo de Monte, James V. Beck, et al. January 27, 2013 e ierfc( z) = zerfc( z) (4c) π As the above function is not available in Matlab ambient, a simple code is given in Appendix for computing it. 6. Plots and tables of dimensionless temperature and heat flux By using the exact analytical solutions listed before and implemented in Matlab ambient (see Appendix), 2D plots, 3D plots and tables of temperature and heat flux can be derived. In detail, 2D plots of temperature and heat flux are shown in Figs. 2 and 3. 3D plots of temperature and heat flux are given in Figs. 4 and 5. Tables 1 and 2 provide numerical values of temperature and heat flux.

5 Filippo de Monte, James V. Beck, et al. January 27, Fig. 2 Temperature graphs.

6 6 H Filippo de Monte, James V. Beck, et al. January 27, 2013 Fig. 3 Heat flux graphs.

7 Filippo de Monte, James V. Beck, et al. January 27, Fig. 4 Temperature surface plot. Fig. 5 Heat flux surface plot.

8 8 H Handbook of Computational Analytical Heat Conduction Table 1 Numerical values of temperature. Filippo de Monte, James V. Beck, et al. January 27, 2013 t x = 0 x = 0.25 x = 0.50 x = 0.75 x =

9 Filippo de Monte, James V. Beck, et al. January 27, Table 2 Numerical values of heat flux. t x = 0 x = 0.25 x = 0.50 x = 0.75 x =

10 10 Filippo de Monte, James V. Beck, et al. January 27, 2013 Appendix. Matlab function fdx20b1t0 Heat conduction function for the X20B1T0 case. Syntax [Td,qd] = fdx20b1t0(xd,td) Description fdx20b1t0 (xd, td) returns the dimensionless temperature Td and heat flux qd solutions at a given dimensionless location xd from the heated surface, between 0 and infinity, and at a given dimensionless time td, for the. If xd and td are not single values but arrays (length(xd) = n and length(td) = m) defining the dimensionless locations and times of interest, respectively, the above function returns the dimensionless temperature Td and heat flux qd as double subscripted arrays, where size(td) = size(qd) = [m, n]. Examples Example 1 >> [Td, qd]=fdx20b1t0(.25,.1) Td = qd =

11 Filippo de Monte, James V. Beck, et al. January 27, Example 2 >> xd=[ ]' xd = >> td=[ ]' td = >> [Td, qd]=fdx20b1t0(xd,td) Td = qd =

12 12 Filippo de Monte, James V. Beck, et al. January 27, 2013 Matlab function: fdx20b1t0.m % fdx20b1t0 function % Revision History % James V. Beck, Matthew Lempke and Filippo de Monte % INPUTS: % xd: dimensionless location starting at xd=0 % td: dimensionless time starting at td=0 % OUPUTS: % Td: dimensionless temperature calculated at (xd,td) % qd: dimensionless heat flux calculated at (xd,td) % Calling Sequence: % ierfc(z) for computing the complementray error function integral function [Td,qd]=fdX20B1T0(xd,td) lengthx=length(xd); lengtht=length(td); Td=zeros(lengtht,lengthx); % Preallocating Arrays for speed qd=zeros(lengtht,lengthx); % Preallocating Arrays for speed for it=1:lengtht % Begin time loop td_it=td(it); % Set current time for ix=1:lengthx % Begin space loop xd_ix=xd(ix); % Set current space if td_it == 0 % For time t=0 condition Td(it,ix)=0; % Set inital temperature qd(it,ix)=0; % Set inital heat flux else % Solution at any time Td(it,ix)=sqrt(4*td_it)*ierfc(xd_ix/sqrt(4*td_it)); qd(it,ix)=erfc(xd_ix/sqrt(4*td_it)); end % if td_it end % for ix end % for it function [ierfc]=ierfc(z) ierfc =(1/sqrt(pi))*exp(-z^2)-z*erfc(z);

Handbook of Computational Analytical Heat Conduction

Handbook of Computational Analytical Heat Conduction Filippo de Monte, James V. Beck, et al. January 7, 2013 1 Contents 1. Problem description 2 2. Dimensional governing equations. 2 3. Dimensionless variables. 3 4. Dimensionless governing equations.. 3

More information

sin 11( x) (1 x) 2 () i cos ExACT -- Exact Analytical Conduction Toolbox James Beck, Index

sin 11( x) (1 x) 2 () i cos ExACT -- Exact Analytical Conduction Toolbox James Beck, Index ExACT -- Exact Analytical Conduction Toolbox Jaes Beck, 8 1 Index X11B(,1)0T0, Linearly increasing teperature at x = 0 page X11B(,)0T0, Quadratic increasing teperature at x = 0 page 7 X11B(,)0T0, Cubic

More information

ExACT Exact Analytical Conduction Toolbox

ExACT Exact Analytical Conduction Toolbox ExACT Exact Analytical Conduction Toolbox X23B60T0 case Kevin D. Cole and Lukas G. Brettmann April 28, 2014 "Copyright (c) by Kevin D. Cole and Lukas Brettmann" 1 Description Slab body initially at ambient

More information

Chapter 3: Transient Heat Conduction

Chapter 3: Transient Heat Conduction 3-1 Lumped System Analysis 3- Nondimensional Heat Conduction Equation 3-3 Transient Heat Conduction in Semi-Infinite Solids 3-4 Periodic Heating Y.C. Shih Spring 009 3-1 Lumped System Analysis (1) In heat

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

Chapter 6 Steady-State Analysis of Continuous-Time Systems

Chapter 6 Steady-State Analysis of Continuous-Time Systems Chapter 6 Steady-State Analysis of Continuous-Time Systems 6.1 INTRODUCTION One of the objectives of a control systems engineer is to minimize the steady-state error of the closed-loop system response

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

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

Modeling Transient Conduction in Enclosed Regions Between Isothermal Boundaries of Arbitrary Shape

Modeling Transient Conduction in Enclosed Regions Between Isothermal Boundaries of Arbitrary Shape JOURNAL OF THERMOPHYSICS AND HEAT TRANSFER Vol. 19, No., July September 2005 Modeling Transient Conduction in Enclosed Regions Between Isothermal Boundaries of Arbitrary Shape Peter Teertstra, M. Michael

More information

HEAT CONDUCTION USING GREEN S FUNCTIONS

HEAT CONDUCTION USING GREEN S FUNCTIONS HEAT CONDUCTION USING GREEN S FUNCTIONS Preface to the first edition Preface to the second edition Author Biographies Nomenclature TABLE OF CONTENTS FOR SECOND EDITION December 2009 Page viii x xii xiii

More information

Heat Transfer in a Slab

Heat Transfer in a Slab Heat Transfer in a Slab Consider a large planar solid whose thickness (y-direction) is L. What is the temperature history of the slab if it is suddenly brought into contact with a fluid at temperature

More information

Chapter 4 TRANSIENT HEAT CONDUCTION

Chapter 4 TRANSIENT HEAT CONDUCTION Heat and Mass Transfer: Fundamentals & Applications Fourth Edition Yunus A. Cengel, Afshin J. Ghajar McGraw-Hill, 2011 Chapter 4 TRANSIENT HEAT CONDUCTION LUMPED SYSTEM ANALYSIS Interior temperature of

More information

Jim Lambers ENERGY 281 Spring Quarter Homework Assignment 3 Solution. 2 Ei r2 D., 4t D and the late time approximation to this solution,

Jim Lambers ENERGY 281 Spring Quarter Homework Assignment 3 Solution. 2 Ei r2 D., 4t D and the late time approximation to this solution, Jim Lambers ENERGY 8 Spring Quarter 7-8 Homework Assignment 3 Solution Plot the exponential integral solution p D (r D,t D ) = ) ( Ei r D, 4t D and the late time approximation to this solution, p D (r

More information

Chapter 5 Time-Dependent Conduction

Chapter 5 Time-Dependent Conduction Chapter 5 Time-Dependent Conduction 5.1 The Lumped Capacitance Method This method assumes spatially uniform solid temperature at any instant during the transient process. It is valid if 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

Research Article An Analytical Development of the Hyperbolic Behaviour of Micro Thermoelectric Coolers

Research Article An Analytical Development of the Hyperbolic Behaviour of Micro Thermoelectric Coolers Mathematical Problems in Engineering Volume 15, Article ID 697639, 1 pages http://dx.doi.org/1.1155/15/697639 Research Article An Analytical Development of the Hyperbolic Behaviour of Micro Thermoelectric

More information

QUESTION ANSWER. . e. Fourier number:

QUESTION ANSWER. . e. Fourier number: QUESTION 1. (0 pts) The Lumped Capacitance Method (a) List and describe the implications of the two major assumptions of the lumped capacitance method. (6 pts) (b) Define the Biot number by equations and

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

Chapter 3 Three Dimensional Finite Difference Modeling

Chapter 3 Three Dimensional Finite Difference Modeling Chapter 3 Three Dimensional Finite Difference Modeling As has been shown in previous chapters, the thermal impedance of microbolometers is an important property affecting device performance. In chapter

More information

Inverse Heat Flux Evaluation using Conjugate Gradient Methods from Infrared Imaging

Inverse Heat Flux Evaluation using Conjugate Gradient Methods from Infrared Imaging 11 th International Conference on Quantitative InfraRed Thermography Inverse Heat Flux Evaluation using Conjugate Gradient Methods from Infrared Imaging by J. Sousa*, L. Villafane*, S. Lavagnoli*, and

More information

Faculté Polytechnique

Faculté Polytechnique Faculté Polytechnique The use of heat transfer functions for heat flow computation through multilayer walls Master Thesis Xavier Botey i Bassols Under the supervision of teachers Mr. Eric DUMONT Mr. Renato

More information

NETWORK ANALYSIS WITH APPLICATIONS

NETWORK ANALYSIS WITH APPLICATIONS NETWORK ANALYSIS WITH APPLICATIONS Third Edition William D. Stanley Old Dominion University Prentice Hall Upper Saddle River, New Jersey I Columbus, Ohio CONTENTS 1 BASIC CIRCUIT LAWS 1 1-1 General Plan

More information

CONTROL * ~ SYSTEMS ENGINEERING

CONTROL * ~ SYSTEMS ENGINEERING CONTROL * ~ SYSTEMS ENGINEERING H Fourth Edition NormanS. Nise California State Polytechnic University, Pomona JOHN WILEY& SONS, INC. Contents 1. Introduction 1 1.1 Introduction, 2 1.2 A History of Control

More information

Physics 6303 Lecture 22 November 7, There are numerous methods of calculating these residues, and I list them below. lim

Physics 6303 Lecture 22 November 7, There are numerous methods of calculating these residues, and I list them below. lim Physics 6303 Lecture 22 November 7, 208 LAST TIME:, 2 2 2, There are numerous methods of calculating these residues, I list them below.. We may calculate the Laurent series pick out the coefficient. 2.

More information

1 Constant Pressure Inner Boundary Condition

1 Constant Pressure Inner Boundary Condition Jim Lambers ENERGY 281 Spring Quarter 2007-08 Lecture 8 Notes These notes are based on Rosalind Archer s PE281 lecture notes, with some revisions by Jim Lambers. 1 Constant Pressure Inner Boundary Condition

More information

Haus, Hermann A., and James R. Melcher. Electromagnetic Fields and Energy. Englewood Cliffs, NJ: Prentice-Hall, ISBN:

Haus, Hermann A., and James R. Melcher. Electromagnetic Fields and Energy. Englewood Cliffs, NJ: Prentice-Hall, ISBN: MIT OpenCourseWare http://ocw.mit.edu Haus, Hermann A., and James R. Melcher. Electromagnetic Fields and Energy. Englewood Cliffs, NJ: Prentice-Hall, 1989. ISBN: 9780132490207. Please use the following

More information

UNSTEADY FREE CONVECTION BOUNDARY-LAYER FLOW PAST AN IMPULSIVELY STARTED VERTICAL SURFACE WITH NEWTONIAN HEATING

UNSTEADY FREE CONVECTION BOUNDARY-LAYER FLOW PAST AN IMPULSIVELY STARTED VERTICAL SURFACE WITH NEWTONIAN HEATING FLUID DYNAMICS UNSTEADY FREE CONVECTION BOUNDARY-LAYER FLOW PAST AN IMPULSIVELY STARTED VERTICAL SURFACE WITH NEWTONIAN HEATING R. C. CHAUDHARY, PREETI JAIN Department of Mathematics, University of Rajasthan

More information

Table of Contents. Foreword... Introduction...

Table of Contents. Foreword... Introduction... Table of Contents Foreword.... Introduction.... xi xiii Chapter 1. Fundamentals of Heat Transfer... 1 1.1. Introduction... 1 1.2. A review of the principal modes of heat transfer... 1 1.2.1. Diffusion...

More information

LAB 1: MATLAB - Introduction to Programming. Objective:

LAB 1: MATLAB - Introduction to Programming. Objective: LAB 1: MATLAB - Introduction to Programming Objective: The objective of this laboratory is to review how to use MATLAB as a programming tool and to review a classic analytical solution to a steady-state

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

Jim Lambers ENERGY 281 Spring Quarter Lecture 3 Notes

Jim Lambers ENERGY 281 Spring Quarter Lecture 3 Notes Jim Lambers ENERGY 8 Spring Quarter 7-8 Lecture 3 Notes These notes are based on Rosalind Archer s PE8 lecture notes, with some revisions by Jim Lambers. Introduction The Fourier transform is an integral

More information

Numerical Solution of Mass Transfer Effects on Unsteady Flow Past an Accelerated Vertical Porous Plate with Suction

Numerical Solution of Mass Transfer Effects on Unsteady Flow Past an Accelerated Vertical Porous Plate with Suction BULLETIN of the Malaysian Mathematical Sciences Society http://math.usm.my/bulletin Bull. Malays. Math. Sci. Soc. (2) 29(1) (2006), 33 42 Numerical Solution of Mass Transfer Effects on Unsteady Flow Past

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. 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

Unsteady State Heat Conduction in a Bounded Solid

Unsteady State Heat Conduction in a Bounded Solid Unsteady State Heat Conduction in a Bounded Solid Consider a sphere of radius R. Initially the sphere is at a uniform temperature T. It is cooled by convection to an air stream at temperature T a. What

More information

The temperature of a body, in general, varies with time as well

The temperature of a body, in general, varies with time as well cen58933_ch04.qd 9/10/2002 9:12 AM Page 209 TRANSIENT HEAT CONDUCTION CHAPTER 4 The temperature of a body, in general, varies with time as well as position. In rectangular coordinates, this variation is

More information

Numerical Heat and Mass Transfer

Numerical Heat and Mass Transfer Master degree in Mechanical Engineering Numerical Heat and Mass Transfer 02-Transient Conduction Fausto Arpino f.arpino@unicas.it Outline Introduction Conduction ü Heat conduction equation ü Boundary conditions

More information

Chapter 5. Magnetostatics

Chapter 5. Magnetostatics Chapter 5. Magnetostatics 5.4 Magnetic Vector Potential 5.1.1 The Vector Potential In electrostatics, E Scalar potential (V) In magnetostatics, B E B V A Vector potential (A) (Note) The name is potential,

More information

Chapter 2: Numeric, Cell, and Structure Arrays

Chapter 2: Numeric, Cell, and Structure Arrays Chapter 2: Numeric, Cell, and Structure Arrays Topics Covered: Vectors Definition Addition Multiplication Scalar, Dot, Cross Matrices Row, Column, Square Transpose Addition Multiplication Scalar-Matrix,

More information

CONTROL SYSTEMS ENGINEERING Sixth Edition International Student Version

CONTROL SYSTEMS ENGINEERING Sixth Edition International Student Version CONTROL SYSTEMS ENGINEERING Sixth Edition International Student Version Norman S. Nise California State Polytechnic University, Pomona John Wiley fir Sons, Inc. Contents PREFACE, vii 1. INTRODUCTION, 1

More information

Unsteady State Heat Conduction in a Bounded Solid How Does a Solid Sphere Cool?

Unsteady State Heat Conduction in a Bounded Solid How Does a Solid Sphere Cool? Unstead State Heat Conduction in a Bounded Solid How Does a Solid Sphere Cool? We examined the cooling a sphere of radius R. Initiall the sphere is at a uniform temperature T 0. It is cooled b convection

More information

Mathematical modeling of temperature during laser forming using bimodal beam

Mathematical modeling of temperature during laser forming using bimodal beam Engineering Solid Mechanics 3 (015) 187-194 Contents lists available at GrowingScience Engineering Solid Mechanics homepage: www.growingscience.com/esm Mathematical modeling of temperature during laser

More information

Infiltration from irrigation channels into soil with impermeable inclusions

Infiltration from irrigation channels into soil with impermeable inclusions ANZIAM J. 46 (E) pp.c1055 C1068, 2005 C1055 Infiltration from irrigation channels into soil with impermeable inclusions Maria Lobo David L. Clements Nyoman Widana (Received 15 October 2004; revised 16

More information

3.3 Unsteady State Heat Conduction

3.3 Unsteady State Heat Conduction 3.3 Unsteady State Heat Conduction For many applications, it is necessary to consider the variation of temperature with time. In this case, the energy equation for classical heat conduction, eq. (3.8),

More information

Solving Systems of Equations

Solving Systems of Equations Daily Do from last class Graph y = 2x 6 Write the slope in 3 different ways Write the y intercept Homework Please get out your colored zombie graphing worksheet, I will be collecting it. Lesson 9 7 Solving

More information

TEMPERATURE DISTRIBUTION OF AN INFINITE SLAB UNDER POINT HEAT SOURCE

TEMPERATURE DISTRIBUTION OF AN INFINITE SLAB UNDER POINT HEAT SOURCE THERMAL SCIENCE, Year 14, Vol. 18, No. 5, pp. 1597-161 1597 TEMPERATURE DISTRIBUTION OF AN INFINITE SLAB UNDER POINT HEAT SOURCE by Zhao-Chun WU * and Dao-Lai CHENG School of Urban Construction and Safety

More information

11th International Conference on Heat Transfer, Fluid Mechanics and Thermodynamics

11th International Conference on Heat Transfer, Fluid Mechanics and Thermodynamics Effect of Axial Wall Conduction and Ambient Heat-in-Leak on the Performance of a Two- Fluid Counter-Flow Cryogenic Heat Exchanger, Using Finite Element Method Avinash Gouda D.*, Animesh Kumar Sinha, Chiranth

More information

Fourier Integral. Dr Mansoor Alshehri. King Saud University. MATH204-Differential Equations Center of Excellence in Learning and Teaching 1 / 22

Fourier Integral. Dr Mansoor Alshehri. King Saud University. MATH204-Differential Equations Center of Excellence in Learning and Teaching 1 / 22 Dr Mansoor Alshehri King Saud University MATH4-Differential Equations Center of Excellence in Learning and Teaching / Fourier Cosine and Sine Series Integrals The Complex Form of Fourier Integral MATH4-Differential

More information

COMPARISON OF TWO METHODS TO SOLVE PRESSURES IN SMALL VOLUMES IN REAL-TIME SIMULATION OF A MOBILE DIRECTIONAL CONTROL VALVE

COMPARISON OF TWO METHODS TO SOLVE PRESSURES IN SMALL VOLUMES IN REAL-TIME SIMULATION OF A MOBILE DIRECTIONAL CONTROL VALVE COMPARISON OF TWO METHODS TO SOLVE PRESSURES IN SMALL VOLUMES IN REAL-TIME SIMULATION OF A MOBILE DIRECTIONAL CONTROL VALVE Rafael ÅMAN*, Heikki HANDROOS*, Pasi KORKEALAAKSO** and Asko ROUVINEN** * Laboratory

More information

Control Systems Engineering ( Chapter 8. Root Locus Techniques ) Prof. Kwang-Chun Ho Tel: Fax:

Control Systems Engineering ( Chapter 8. Root Locus Techniques ) Prof. Kwang-Chun Ho Tel: Fax: Control Systems Engineering ( Chapter 8. Root Locus Techniques ) Prof. Kwang-Chun Ho kwangho@hansung.ac.kr Tel: 02-760-4253 Fax:02-760-4435 Introduction In this lesson, you will learn the following : The

More information

Energetic Balance for the Flow Induced by a Constantly Accelerating Plate in a Second Grade Fluid

Energetic Balance for the Flow Induced by a Constantly Accelerating Plate in a Second Grade Fluid Engineering 466-47 doi:.46/eng..66 Published Online June (http://www.scirp.org/journal/eng) Energetic Balance for the Flow Induced by a Constantly Accelerating Plate in a Second Grade Fluid Abstract Corina

More information

Course roadmap. ME451: Control Systems. What is Root Locus? (Review) Characteristic equation & root locus. Lecture 18 Root locus: Sketch of proofs

Course roadmap. ME451: Control Systems. What is Root Locus? (Review) Characteristic equation & root locus. Lecture 18 Root locus: Sketch of proofs ME451: Control Systems Modeling Course roadmap Analysis Design Lecture 18 Root locus: Sketch of proofs Dr. Jongeun Choi Department of Mechanical Engineering Michigan State University Laplace transform

More information

NEW ANALYTICAL SOLUTION FOR SOLVING STEADY-STATE HEAT CONDUCTION PROBLEMS WITH SINGULARITIES

NEW ANALYTICAL SOLUTION FOR SOLVING STEADY-STATE HEAT CONDUCTION PROBLEMS WITH SINGULARITIES THERMAL SCIENCE: Year 3, Vol. 7, No. 3, pp. 665-67 665 NEW ANALYTICAL SOLUTION FOR SOLVING STEADY-STATE HEAT CONDUCTION PROBLEMS WITH SINGULARITIES by Najib LARAQI a* and Eric MONIER-VINARD b a Paris West

More information

REVIEW OF REFLECTIVE INSULATION ESTIMATION METHODS James M Fricker 1 and David Yarbrough 2

REVIEW OF REFLECTIVE INSULATION ESTIMATION METHODS James M Fricker 1 and David Yarbrough 2 REVIEW OF REFLECTIVE INSULATION ESTIMATION METHODS James M Fricker 1 and David Yarbrough 2 1 James M Fricker Pty Ltd, Melbourne, Australia 2 R&D Services, Inc., TN, U.S.A. ABSTRACT This paper reviews the

More information

Laser Heat Processing: Advantages Laser radiation very "clean" no containments with other materials Working atmosphere can be controlled as needed

Laser Heat Processing: Advantages Laser radiation very clean no containments with other materials Working atmosphere can be controlled as needed Laser Heat Processing: Adantages Laser radiation ery "clean" no containments with other materials Woring atmosphere can be controlled as needed Lasers can be focused to small spots ery localized heating

More information

Physics 102 Spring 2007: Final Exam Multiple-Choice Questions

Physics 102 Spring 2007: Final Exam Multiple-Choice Questions Last Name: First Name: Physics 102 Spring 2007: Final Exam Multiple-Choice Questions 1. The circuit on the left in the figure below contains a battery of potential V and a variable resistor R V. The circuit

More information

ME 563 HOMEWORK # 7 SOLUTIONS Fall 2010

ME 563 HOMEWORK # 7 SOLUTIONS Fall 2010 ME 563 HOMEWORK # 7 SOLUTIONS Fall 2010 PROBLEM 1: Given the mass matrix and two undamped natural frequencies for a general two degree-of-freedom system with a symmetric stiffness matrix, find the stiffness

More information

Contents. PART I METHODS AND CONCEPTS 2. Transfer Function Approach Frequency Domain Representations... 42

Contents. PART I METHODS AND CONCEPTS 2. Transfer Function Approach Frequency Domain Representations... 42 Contents Preface.............................................. xiii 1. Introduction......................................... 1 1.1 Continuous and Discrete Control Systems................. 4 1.2 Open-Loop

More information

Getting J e (x), J h (x), E(x), and p'(x), knowing n'(x) Solving the diffusion equation for n'(x) (using p-type example)

Getting J e (x), J h (x), E(x), and p'(x), knowing n'(x) Solving the diffusion equation for n'(x) (using p-type example) 6.012 - Electronic Devices and Circuits Lecture 4 - Non-uniform Injection (Flow) Problems - Outline Announcements Handouts - 1. Lecture Outline and Summary; 2. Thermoelectrics Review Thermoelectricity:

More information

Exact Solution of an MHD Natural Convection Flow in Vertical Concentric Annulus with Heat Absorption

Exact Solution of an MHD Natural Convection Flow in Vertical Concentric Annulus with Heat Absorption International Journal of Fluid Mechanics & Thermal Sciences 217; 3(5): 52-61 http://www.sciencepublishinggroup.com/j/ijfmts doi: 1.11648/j.ijfmts.21735.12 ISSN: 2469-815 (Print); ISSN: 2469-8113 (Online)

More information

Heat Transfer II ENGR 7901 Spring, Dr. Y. Muzychka EN 3058

Heat Transfer II ENGR 7901 Spring, Dr. Y. Muzychka EN 3058 Heat Transfer II ENGR 7901 Spring, 2010 Dr. Y. Muzychka EN 3058 Course Materials Text: Fundamentals of Heat Transfer Incropera and DeWiP, 6 th EdiRon Course Notes and Handouts Most Course Material on Webpage

More information

Chain-configuration and rate dependent rheological properties in transient networks

Chain-configuration and rate dependent rheological properties in transient networks Electronic Supplementary Material (ESI) for Soft Matter. This journal is The Royal Society of Chemistry 204 Supplementary Information Chain-configuration and rate dependent rheological properties in transient

More information

Coupling TRIGRS and TOPMODEL in shallow landslide prediction. 1 Presenter: 王俊皓 Advisor: 李錫堤老師 Date: 2016/10/13

Coupling TRIGRS and TOPMODEL in shallow landslide prediction. 1 Presenter: 王俊皓 Advisor: 李錫堤老師 Date: 2016/10/13 Coupling TRIGRS and TOPMODEL in shallow landslide prediction 1 Presenter: 王俊皓 Advisor: 李錫堤老師 Date: 016/10/13 Outline Introduction Literature review Methodology Pre-result Future work Introduction 3 Motivation

More information

Estimating Transient Surface Heating using a Cellular Automaton Energy-transport Model

Estimating Transient Surface Heating using a Cellular Automaton Energy-transport Model Estimating Transient Surface Heating using a Cellular Automaton Energy-transport Model Vallorie J. Peridier College of Engineering, Temple University, 1947 North Twelfth Street, Philadelphia, PA 19122

More information

HEAT TRANSFER THERMAL MANAGEMENT OF ELECTRONICS YOUNES SHABANY. C\ CRC Press W / Taylor Si Francis Group Boca Raton London New York

HEAT TRANSFER THERMAL MANAGEMENT OF ELECTRONICS YOUNES SHABANY. C\ CRC Press W / Taylor Si Francis Group Boca Raton London New York HEAT TRANSFER THERMAL MANAGEMENT OF ELECTRONICS YOUNES SHABANY C\ CRC Press W / Taylor Si Francis Group Boca Raton London New York CRC Press is an imprint of the Taylor & Francis Group, an informa business

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

Finite Difference Solution of the Heat Equation

Finite Difference Solution of the Heat Equation Finite Difference Solution of the Heat Equation Adam Powell 22.091 March 13 15, 2002 In example 4.3 (p. 10) of his lecture notes for March 11, Rodolfo Rosales gives the constant-density heat equation as:

More information

Calculation of the Fermi wave vector for thin films, quantum wires and quantum dots

Calculation of the Fermi wave vector for thin films, quantum wires and quantum dots Materials Science-Poland, Vol. 24, No. 3, 2006 Calculation of the Fermi wave vector for thin films, quantum wires and quantum dots T. BALCERZAK * Department of Solid State Physics, University of Łódź,

More information

ECE 585 Power System Stability

ECE 585 Power System Stability Homework 1, Due on January 29 ECE 585 Power System Stability Consider the power system below. The network frequency is 60 Hz. At the pre-fault steady state (a) the power generated by the machine is 400

More information

Finite Element Modules for Enhancing Undergraduate Transport Courses: Application to Fuel Cell Fundamentals

Finite Element Modules for Enhancing Undergraduate Transport Courses: Application to Fuel Cell Fundamentals Finite Element Modules for Enhancing Undergraduate Transport Courses: Application to Fuel Cell Fundamentals Originally published in 007 American Society for Engineering Education Conference Proceedings

More information

DIFFUSION COEFFICIENT MEASUREMENTS USING STEFAN TUBE AT SUPERCRITICAL CONDITIONS

DIFFUSION COEFFICIENT MEASUREMENTS USING STEFAN TUBE AT SUPERCRITICAL CONDITIONS DIFFUSION COEFFICIENT MESUREMENTS USING STEFN TUBE T SUPERCRITICL CONDITIONS Irmak E. Ozguler, Sermin G. Sunol and ydin K. Sunol* Department of Chemical Engineering University of South Florida 4 East Fowler

More information

Multiple-source optical diffusion approximation for a multilayer scattering medium

Multiple-source optical diffusion approximation for a multilayer scattering medium Multiple-source optical diffusion approximation for a multilayer scattering medium Joseph. Hollmann 1 and ihong V. Wang 1,2, * 1 Optical Imaging aboratory, Department of Biomedical Engineering, Texas A&M

More information

1 Finite difference example: 1D implicit heat equation

1 Finite difference example: 1D implicit heat equation 1 Finite difference example: 1D implicit heat equation 1.1 Boundary conditions Neumann and Dirichlet We solve the transient heat equation ρc p t = ( k ) (1) on the domain L/2 x L/2 subject to the following

More information

EEE 184: Introduction to feedback systems

EEE 184: Introduction to feedback systems EEE 84: Introduction to feedback systems Summary 6 8 8 x 7 7 6 Level() 6 5 4 4 5 5 time(s) 4 6 8 Time (seconds) Fig.. Illustration of BIBO stability: stable system (the input is a unit step) Fig.. step)

More information

Practice Test - Chapter 2

Practice Test - Chapter 2 Graph and analyze each function. Describe the domain, range, intercepts, end behavior, continuity, and where the function is increasing or decreasing. 1. f (x) = 0.25x 3 Evaluate the function for several

More information

MIXED CONVECTION HEAT TRANSFER FROM A PARTICLE IN SUPERCRITICAL WATER

MIXED CONVECTION HEAT TRANSFER FROM A PARTICLE IN SUPERCRITICAL WATER THERMAL SCIENCE, Year 2016, Vol. 20, No. 2, pp. 483-492 483 MIXED CONVECTION HEAT TRANSFER FROM A PARTICLE IN SUPERCRITICAL WATER by Liping WEI, Youjun LU*, and Jinjia WEI State Key Laboratory of Multiphase

More information

Two-Dimensional Numerical Investigation on Applicability of 45 Heat Spreading Angle

Two-Dimensional Numerical Investigation on Applicability of 45 Heat Spreading Angle Journal of Electronics Cooling and Thermal Control, 24, 4, - Published Online March 24 in SciRes. http://www.scirp.org/journal/jectc http://dx.doi.org/.4236/jectc.24.4 Two-Dimensional Numerical Investigation

More information

COMPARING THE THERMAL PERFORMANCE OF GROUND HEAT EXCHANGERS OF VARIOUS LENGTHS

COMPARING THE THERMAL PERFORMANCE OF GROUND HEAT EXCHANGERS OF VARIOUS LENGTHS COMPARING THE THERMAL PERFORMANCE OF GROUND HEAT EXCHANGERS OF VARIOUS LENGTHS Marco Fossa Diptem, University of Genova, Via Opera pia 15a, 16145 Genova, ITALY marco.fossa@unige.it Odile Cauret EDF R&D,

More information

Finite Difference Solution of Unsteady Free Convection Heat and Mass Transfer Flow past a Vertical Plate

Finite Difference Solution of Unsteady Free Convection Heat and Mass Transfer Flow past a Vertical Plate Daffodil International University Institutional Repository DIU Journal of Science and Technology Volume 1, Issue 1, January 17 17-1 Finite Difference Solution of Unsteady Free Convection Heat and Mass

More information

AMS 212A Applied Mathematical Methods I Lecture 14 Copyright by Hongyun Wang, UCSC. with initial condition

AMS 212A Applied Mathematical Methods I Lecture 14 Copyright by Hongyun Wang, UCSC. with initial condition Lecture 14 Copyright by Hongyun Wang, UCSC Recap of Lecture 13 Semi-linear PDE a( x, t) u t + b( x, t)u = c ( x, t, u ) x Characteristics: dt d = a x, t dx d = b x, t with initial condition t ( 0)= t 0

More information

ON HEAT CONDUCTION IN PERIODICALLY STRATIFIED COMPOSITES WITH SLANT LAYERING TO BOUNDARIES

ON HEAT CONDUCTION IN PERIODICALLY STRATIFIED COMPOSITES WITH SLANT LAYERING TO BOUNDARIES THERMAL SCIENCE: Year 05, Vol. 9, No., pp. 83-94 83 ON HEAT CONDUCTION IN PERIODICALLY STRATIFIED COMPOSITES WITH SLANT LAYERING TO BOUNDARIES by Stanislaw J. MATYSIA a and Dariusz M. PEROWSI b a Institute

More information

Fluid Neutral Momentum Transport Reference Problem D. P. Stotler, PPPL S. I. Krasheninnikov, UCSD

Fluid Neutral Momentum Transport Reference Problem D. P. Stotler, PPPL S. I. Krasheninnikov, UCSD Fluid Neutral Momentum Transport Reference Problem D. P. Stotler, PPPL S. I. Krasheninnikov, UCSD 1 Summary Type of problem: kinetic or fluid neutral transport Physics or algorithm stressed: thermal force

More information

Application Note 1031

Application Note 1031 Achieving Uniform Front Panel Appearance using Avago Technologies 2 Intensity Bin Select Option LED Devices Application Note 1031 Introduction Matching different displays on a front panel to have the same

More information

Convective Vaporization and Burning of Fuel Droplet Arrays

Convective Vaporization and Burning of Fuel Droplet Arrays Convective Vaporization and Burning of Fuel Droplet Arrays Guang Wu and William A. Sirignano Mechanical & Aerospace Engineering University of California, Irvine May 19, 2009 Background and Task In many

More information

DEMONSTRATIONS OF TRANSIENT CONDUCTION HEAT FLUX PHENOMENA FOR THE ENGINEERING LABORATORY

DEMONSTRATIONS OF TRANSIENT CONDUCTION HEAT FLUX PHENOMENA FOR THE ENGINEERING LABORATORY DEMONSTRATIONS OF TRANSIENT CONDUCTION HEAT FLUX PHENOMENA FOR THE ENGINEERING LABORATORY B. Terry Beck 1 Abstract The main objective of this paper is to present two different eperiments that have been

More information

Solution of Partial Differential Equations

Solution of Partial Differential Equations Solution of Partial Differential Equations Introduction and Problem Statement Combination of Variables R. Shankar Subramanian We encounter partial differential equations routinely in transport phenomena.

More information

Laplace s Equation on a Sphere

Laplace s Equation on a Sphere Laplace s Equation on a Sphere Pierre Simon de Laplace Domenic Scorzetti Millersville University dascorze@marauder.millersville.edu April 5, 6 Problem Outline A spherical shell has an inner radius, and

More information

Finite Element Analysis of Transient Ballistic-Diffusive Heat Transfer in Two-Dimensional Structures

Finite Element Analysis of Transient Ballistic-Diffusive Heat Transfer in Two-Dimensional Structures 014 COMSOL Conference, Boston, MA October 7-9, 014 Finite Element Analysis of Transient Ballistic-Diffusive Heat Transfer in Two-Dimensional Structures Sina Hamian 1, Toru Yamada, Mohammad Faghri 3, and

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

Physics 9 WS M5 (rev. 1.0) Page 1

Physics 9 WS M5 (rev. 1.0) Page 1 Physics 9 WS M5 (rev. 1.0) Page 1 M-3. Faraday s Law Questions for discussion 1. In the figure below, there is a non-uniform magnetic field pointing into the page. a) If you move the metal loop to the

More information

Spis treści Contents List of Examples Preface to Third Edition 21

Spis treści Contents List of Examples Preface to Third Edition 21 An engineer's guide to MATLAB : with applications from mechanical, aerospace, electrical, civil, and biological systems engineering / Edward B. Magrab [et al.]. - 3rd ed. - Boston, cop. 2011 Spis treści

More information

132 NOTES [Vol. XI, No. 1 PULSED SURFACE HEATING OF A SEMI-INFINITE SOLID* By J. C. JAEGER (Australian National University)

132 NOTES [Vol. XI, No. 1 PULSED SURFACE HEATING OF A SEMI-INFINITE SOLID* By J. C. JAEGER (Australian National University) 132 NOTES [Vol. XI, No. 1 PULSED SURFACE HEATING OF A SEMI-INFINITE SOLID* By J. C. JAEGER (Australian National University) 1. Introduction. In many practical systems heat is supplied to the surface of

More information

ECE341 Test 2 Your Name: Thu 4/12/2018

ECE341 Test 2 Your Name: Thu 4/12/2018 Problem 2 One surface of an infinitely large ideal conductor plate is at the plane = 0 of the Cartesian coordinate system, as shown in the figure. The conductor plate is grounded (i.e. at a potential 0).

More information

Time Analysis of Sorting and Searching Algorithms

Time Analysis of Sorting and Searching Algorithms Time Analysis of Sorting and Searching Algorithms CSE21 Winter 2017, Day 5 (B00), Day 3 (A00) January 20, 2017 http://vlsicad.ucsd.edu/courses/cse21-w17 Big-O : How to determine? Is f(n) big-o of g(n)?

More information

Analytical and Numerical Investigation of Transient Gas Blow down

Analytical and Numerical Investigation of Transient Gas Blow down Analytical and Numerical Investigation of Transient Gas Blow down Hameed Balassim Mahood, Farhan Lafta Rasheed & Abdulsattar K. Abbas Ministry of Sciences and Technology, Baghdad, Iraq Received: August

More information

Entropy Generation Analysis of Transient Heat Conduction in a Solid Slab with Fixed Temperature Boundary Conditions

Entropy Generation Analysis of Transient Heat Conduction in a Solid Slab with Fixed Temperature Boundary Conditions WSEAS RASACIOS on HEA and MASS RASFER Entropy Generation Analysis of ransient Heat Conduction in a Solid Slab with Fixed emperature Boundary Conditions SOMPOP JARUGHAMMACHOE Mechanical Engineering Department

More information

30 Classification of States

30 Classification of States 30 Classification of States In a Markov chain, each state can be placed in one of the three classifications. 1 Since each state falls into one and only one category, these categories partition the states.

More information

GEORGIA INSTITUTE OF TECHNOLOGY SCHOOL OF ELECTRICAL AND COMPUTER ENGINEERING

GEORGIA INSTITUTE OF TECHNOLOGY SCHOOL OF ELECTRICAL AND COMPUTER ENGINEERING GEORGIA INSTITUTE OF TECHNOLOGY SCHOOL OF ELECTRICAL AND COMPUTER ENGINEERING ECE 2026 Summer 2018 Problem Set #1 Assigned: May 14, 2018 Due: May 22, 2018 Reading: Chapter 1; App. A on Complex Numbers,

More information

a. Closed-loop system; b. equivalent transfer function Then the CLTF () T is s the poles of () T are s from a contribution of a

a. Closed-loop system; b. equivalent transfer function Then the CLTF () T is s the poles of () T are s from a contribution of a Root Locus Simple definition Locus of points on the s- plane that represents the poles of a system as one or more parameter vary. RL and its relation to poles of a closed loop system RL and its relation

More information

AN INSPECTION TO THE HYPERBOLIC HEAT CONDUCTION PROBLEM IN PROCESSED MEAT

AN INSPECTION TO THE HYPERBOLIC HEAT CONDUCTION PROBLEM IN PROCESSED MEAT THERMAL SCIENCE: Year 0, Vol. 1, No. 1A, pp. 303-308 303 AN INSPECTION TO THE HYPERBOLIC HEAT CONDUCTION PROBLEM IN PROCESSED MEAT by Kuo-Chi LIU a*, Han-Taw CHEN b, and Yan-Nan WANG c a Department of

More information