Lab 5: Post Processing and Solving Conduction Problems. Objective:

Size: px
Start display at page:

Download "Lab 5: Post Processing and Solving Conduction Problems. Objective:"

Transcription

1 Lab 5: Post Processing and Solving Conduction Problems Objective: The objective of this lab is to use the tools we have developed in MATLAB and SolidWorks to solve conduction heat transfer problems that a thermal analyst might encounter. This will include additional post-processing of your data. Background: A typical calculation that is part of post-processing a numerical solution is calculating the heat flux at a boundary. From Fourier s law, the heat flux in the y-direction is defined as: q " y = k T (1) y boudary where k is thermal conductivity and the spatial derivative for temperature must be approximated numerically from your discrete numerical results. For the finite difference method, the heat flux can be approximated using either the Taylor Series method or the control volume approach. The latter will account for any internal heat generation within the element. In either case, one-sided finite difference approximations will be needed because of the presence of the boundary. Note that the finite difference approximations should have the same order of accuracy as the internal nodes (typically 2 nd order). The appropriate 2 nd order accurate forward difference approximation derived using the Taylor Series approach for a node located at the y = 0 boundary (or for j = 1) as shown in Figure 1 is y T 3 T + 4 T T i,1 i,2 i,3. (2) y i,1 2 dy i, 3 i, 2 x i, 1 Figure 1. Schematic diagram of nodal numbering for heat flux boundary condition. 1

2 For the finite element method, the heat flux can be calculated from the numerical solution for the temperature distribution as follows: q n " = ( k T ) n! - ' = / k ). ( nne i=1 * 0 p (e) (e) i T i, 2 n! (3) + 1 where n! is the boundary outward unit normal, T is the approximate solution for temperature, T i is the temperature at the i th (e node, p ) i is the interpolation function at the i th node, and nne is the number of nodes in an element. For 3-node triangles where the temperature varies linearly over the triangle the interpolation functions are defined as: (e p ) i = 1 ( 2Δ a + b i i x + c i y), a i = x j y k x k y j, b i = y j y k, c i = x k x j (e p ) j = 1 ( 2Δ a + b j j x + c j y), a j = x k y i x i y k, b j = y k y i, c j = x i x k (4) (e p ) k = 1 ( 2Δ a + b x + c y k k k ), a k = x i y j x j y i, b k = y i y j, c k = x j x i ( ) is the area of the triangle. For heat flux where Δ = 1 x 2 j y k + x i y j + x k y i x j y i x i y k x k y j in the y-direction through a boundary with n! = ˆ j this becomes: $ q " y = k p i & % y (e) T (e) i + p (e) j y T (e) j + p (e) k y T (e) k ' ) = k ( 2 Δ c T (e) i i + c j T (e) (e) j + c k T k ( ) (5) In MATLAB, you can also use the function pdegrad(p,t,u) to calculate temperature gradient in each direction at the center of each triangular element from the PDE toolbox solution. Alternatively, you can convert the data to a regular mesh using tri2grid(p,t,u,x,y) and then calculate the boundary heat flux using the finite difference method. To calculate total heat transfer rate integrate Equation (1) over the boundary area. q y = q " y da = k T da (6) y boudary For discrete data this must be numerically integrated. The simplest method is to replace the integral with a summation. For the bottom boundary of our symmetric 2-D fin % q y = 2k ' & T dx y 1,1 N x 2 + T dx + T y i,1 i=2 y N x +1,1 dx 2 ( * w. (7) ) 2

3 Assignment: Do NOT include any code with your assignment. 1. We have studied the temperature distribution in a straight fin for 3 thermal conductivities, k, using the finite difference method (Lab 3, Part 2) and the finite element method (Lab 4, Parts 2 and 3). We will now use post-processing of the temperature to calculate heat transfer rates. (a) Calculate the fin heat transfer per unit width, q " = q w, for k = 5, 50, and 200 W/m K using the finite difference method. Recall that for an accurate solution the total error (TE), which is the sum of the dicretization error (DE), iteration error (IE), and round-off error (RO), must be minimized. This requires that (1) the mesh needs to be sufficiently refined to minimize dicretization error, (2) the tolerance set low enough for the Gauss Seidel loop convergence test to minimize iteration error, and (3) the precision needs to be high enough to minimize round-off error. For these calculations we will use a very low iteration loop tolerance (10-8 ) and doubleprecision (the default for MATLAB floating point calculations). Thus, DE for this case will be much greater that IE and RO. To check that DE decreases with mesh size, calculate q " on a series of meshes (N x = 5, 10, and 20) and use Richardson Extrapolation 1 to estimate the apparent order, extrapolated value for heat flux, and the extrapolated relative error. Make a plot of q " versus N x for each case. Note that the number of nodes needed for convergence for q " is typically more than that required for temperature to converge. For k = 50 W/m K you should get an apparent order of 1.8 and an extrapolated q " of 4,353 W/m. (b) Compare the two-dimensional numerical results to calculations made using a simple model that assumes one-dimensional conduction in the y-direction. The exact analytical solution to the model is given in Chapter 3 of Bergman, et al. 2. Our conditions correspond to Case A in Table 3.4 for fins of uniform cross section. Equation (3.72) in this table can be used to solve for the fin heat transfer rate: q f = M sinh m L + h m k y cosh m L y + h m k ( ) cosh m L y (3.72) ( ) sinh m L y m = h P k A c = h ( 2 w) ( ) = h k 2 L x w k L x M = h P k A c ( T b T ) = h ( 2 w) k ( 2 L x w) ( T b T ) = 2 w h k L x ( T b T ) 1 Celik, I. B., Ghia, U., Roach, P. J., and Frietas, C. J., "Procedure for Estimation and Reporting of Uncertainty due to Discretization in CFD Applications," 2 Bergman, T. L., Lavine, A. S., Incropera, F. P. and DeWitt, D. P., Introduction to Heat Transfer, 6 th edition, John Wiley & Sons,

4 For k = 50 W/m K: m = h k L x = 500 W/m 2 K = /m 50 W/m K 0.02 m M w = 2 h k L x ( T b T ) = W/m 2 K 50 W/m K 0.02 m ( ) K M w = W/m Substituting into (3.72) for heat flux per unit width: q " f = q f w = M w sinh [ /m ( 0.2 m) ] + cosh [ /m ( 0.2 m) ] W/m 2 K /m 50 W/m K 500 W/m 2 K /m 50 W/m K cosh [ /m ( 0.2 m )] sinh [ /m ( 0.2 m )] q " = W/m = 4471 W/m Repeat these calculations for k = 5 W/m K and k = 200 W/m K for your comparison. (c) Calculate the Biot number for each case defined as follows: Bi = h L x k where L x is the characteristic length for conduction heat transfer in the x-direction. Note that this is NOT the computational Biot number that was based on mesh spacing. For each k value show your results for q " from Parts (a) and (b), the percent difference between these results, and the Biot number in one table. Discuss the physical significance of the Biot number and the range of Biot numbers for which assuming one-dimensional conduction in the fin is reasonable. 4

5 2. Simplified schematics for two micro-electronics cooling configurations are shown in Figures 2 and 3. The top surface is cooled convectively while the remaining surfaces are all well insulated from the surroundings. For steady-state operation, the electric power dissipation results in a uniform volumetric heating rate of 10 7 W/m 3. The required cooling rate is determined by the maximum allowable chip temperature of 85 C based on industry standards. chip array substrate Figure 2. Schematic of a chip array embedded in a substrate to be modeled as two-dimensional heat transfer. single chip substrate Figure 3. Schematic of single chip embedded in a substrate to be modeled as three-dimensional heat transfer. coolant at T = 20 C and h = 500 W/m 2 K chip! k c = 50 W/m K H / 4 L / 3 H = 12 mm substrate! k s = 5 W/m K L = 27 mm Figure 4. Cross-section of a chip and substrate for both the two-dimensional and three-dimensional cases. (a) The representation shown in Figure 2 can be approximated as two-dimensional heat transfer by assuming a very long row of chips, thus neglecting end effects. Make a temperature contour plot for the chip and substrate using the PDE toolbox based on the geometry and specified operating conditions in Figure 4. Make sure to take advantage of thermal symmetry when defining your geometry. Verify that the maximum chip temperature does not exceed the maximum allowable value. Discuss if the temperatures shown in your contour plot are consistent with the imposed boundary conditions and volumetric heating. 5

6 (b) Determine the minimum convection coefficient possible for the coolant to meet industry standards. Does this convection coefficient correspond to natural and/or forced convection with a gas and/or liquid (see Chapter 1 of Introduction to Heat Transfer by Bergman, et al.)? (c) Make a similar temperature contour plot for the chip and substrate using SolidWorks Simulation for the two-dimensional case shown in Figure 2 and verify that you can get the same results as for Part (a). Next, make a new temperature contour plot for the three-dimensional case shown in Figure 3 for a square chip and a square substrate based on the same geometry and operating condtions in Figure 4. Discuss if the changes in your calculated temperatures between the two-dimensional and three-dimensional cases make sense. Notes for SolidWorks Simulation: 1. To take advantage of symmetry, use a ¼ of the domain shown in Figure 3. Begin by making separate Part drawings for the substrate and chip with the material properties specified for each one separately. For the substrate, make the bottom left hand corner at the origin and make an Extruded Cut for the ¼ chip above the origin. For the chip, make the bottom left hand corner offset ¾ H upwards from the origin. Next make an Assembly by inserting the two parts at the origin so they will be fixed at the correct relative locations with the x-y coordinates defined such that it will be easy to compare these results with your MATLAB results. (Alternatively, you can properly align the two parts by defining Mates and then move the origin.) 2. For an Assembly with multiple Parts, in the Simulation Tree under Connections you must define the contact between components to control how heat is conducted across interior boundaries (for our case this corresponds to the faces between the substrate and chip). By default under Connections and Component Contacts there will be a Global Contact (corresponding to the entire Assembly) that is set to Bonded (corresponding to no thermal resistance). If you right click on this you can change it to Insulated (corresponding to infinite thermal resistance). For this assignment you will just use the default Bonded connections. For future work, if you want to set a thermal resistance for three-dimensional cases, in the Simulation Tree right click on Connections and select Contact Sets from the pull-down menu to open the Connections window and enter the desired settings. 3. To specify the uniform internal heat generation in the chip, in the Simulation Tree right click on Thermal Loads and select Heat Power from the pull-down menu. This corresponds to the volumetric heating rate above multiplied by the chip volume. For the two-dimensional case the volume is calculated using the width that was set for the two-dimensional simplification. (d) For most engineering problems you should use simple analytical models to insure that your simulation results have the right order of magnitude. For this case, use a simple one-dimensional analytical model of the system to estimate the maximum chip temperature (at base where it is in contact with the substrate) to insure that your answer to part (a) is reasonable. For your model list all of your assumptions (for example, you can assume heat loss is only from the chip surface and not through the substrate which is required to make the problem one-dimensional) and show all of your work. 6

7 3. An automobile door panel is fabricated by a plastic hot-extrusion process resulting in the ribbed cross-section shown in Figure 5. Following a process involving air-cooling, painting, and baking, the panel is ready for assembly on a vehicle. However, upon visual inspection, the rib pattern is evident on the outer surface. In regions over the ribs, the paint has an orange peel appearance, making the door panel unacceptable for use. The apparent reason for this defect is differential cooling rates at the panel surface that affects adherence of the paint. 26 mm T 1 T 2 T 3 pannel! outer! surface 3 mm 2 mm! radius 13 mm rib 6 mm 2 mm Figure 5. Schematic of ribbed cross-section of an automotive door panel. The panel is ejected from the extrusion process at a uniform temperature of T i = 275 C and is allowed to cool on a transport table where the air temperature is T = 25 C and the convection coefficient is h = 10 W/m 2 K (corresponding to natural convection to air for slightly warm conditions). The material properties of the extruded plastic are approximately ρ = 1050 kg/m 3, c = 800 J/kg K, and k = 0.50 W/m K. Use the PDE toolbox or SolidWorks Simulation to obtain the temperature distribution as a function of time. Take advantage of symmetry for your geometry. If you use the PDE toolbox, use the union and intersection of several basic shapes to approximate the panel geometry. Answer the following questions: (a) Make a temperature contour plot at 60 seconds and discuss if it is consistent with the boundary conditions. Calculate how long it takes the temperature to drop by 99.9% of T i T or belowt T i T ( ), at all locations within in the domain. (b) Import the data into the MATLAB environment and manipulate it there to extract temperatures defined as follows (and shown in Figure 5): ( ), T 1 T 2 T 3 point above the rib center on the outer surface of the panel point 5 mm from T 1 along the outer surface point 13 mm from T 1 along the outer surface 7

8 To validate your results, compare your data to thermocouple measurements that indicate a maximum temperature difference of (T 1 T 3 ) =18.5 ± 0.2! C. Plot temperature differences ( T 1 T 2 ) and T 1 T 3 region above the rib? If so, explain what is the cause? ( ) versus time on one figure. Is there a noticeable differential cooling in the (c) View an animation of the temperature contour plots until steady state is reached. Describe major features of the cooling process. Print out 3 temperature contour plots at different times that illustrate some of the important features described. How would you redesign the ribbed panel to reduce this thermally induced defect, while still retaining the stiffening function required by the ribs? Test your proposed design with an additional simulation and present at least one plot of your results along with a discussion. 8

Revision of the thermal chip simulation, J.E. Akin, Rice University

Revision of the thermal chip simulation, J.E. Akin, Rice University Revision of the thermal chip simulation, J.E. Akin, Rice University A SolidWorks simulation tutorial is just intended to illustrate where to find various icons that you would need in a real engineering

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

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

Chapter 3. Formulation of FEM for Two-Dimensional Problems

Chapter 3. Formulation of FEM for Two-Dimensional Problems Chapter Formulation of FEM for Two-Dimensional Problems.1 Two-Dimensional FEM Formulation Many details of 1D and 2D formulations are the same. To demonstrate how a 2D formulation works we ll use the following

More information

Example Resistive Heating

Example Resistive Heating Example Resistive Heating SOLVED WITH COMSOL MULTIPHYSICS 3.5a COPYRIGHT 2008. All right reserved. No part of this documentation may be photocopied or reproduced in any form without prior written consent

More information

Multiphysics Modeling

Multiphysics Modeling 11 Multiphysics Modeling This chapter covers the use of FEMLAB for multiphysics modeling and coupled-field analyses. It first describes the various ways of building multiphysics models. Then a step-by-step

More information

Transient Heat Transfer Experiment. ME 331 Introduction to Heat Transfer. June 1 st, 2017

Transient Heat Transfer Experiment. ME 331 Introduction to Heat Transfer. June 1 st, 2017 Transient Heat Transfer Experiment ME 331 Introduction to Heat Transfer June 1 st, 2017 Abstract The lumped capacitance assumption for transient conduction was tested for three heated spheres; a gold plated

More information

Application of Solution Mapping to Reduce Computational Time in Actively Cooled Power Electronics

Application of Solution Mapping to Reduce Computational Time in Actively Cooled Power Electronics Excerpt from the Proceedings of the COMSOL Conference 2008 Boston Application of Solution Mapping to Reduce Computational Time in Actively Cooled Power Electronics Kirk T. Lowe *,1,2 and Rao V. Arimilli

More information

Analysis of the Cooling Design in Electrical Transformer

Analysis of the Cooling Design in Electrical Transformer Analysis of the Cooling Design in Electrical Transformer Joel de Almeida Mendes E-mail: joeldealmeidamendes@hotmail.com Abstract This work presents the application of a CFD code Fluent to simulate the

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

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

Numerical Heat and Mass Transfer

Numerical Heat and Mass Transfer Master Degree in Mechanical Engineering Numerical Heat and Mass Transfer 03 Finned Surfaces Fausto Arpino f.arpino@unicas.it Outline Introduction Straight fin with constant circular cross section Long

More information

Chapter 5. Formulation of FEM for Unsteady Problems

Chapter 5. Formulation of FEM for Unsteady Problems Chapter 5 Formulation of FEM for Unsteady Problems Two alternatives for formulating time dependent problems are called coupled space-time formulation and semi-discrete formulation. The first one treats

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

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

Workshop 6.1. Steady State Thermal Analysis. Workbench - Mechanical Introduction 12.0 WS6.1-1

Workshop 6.1. Steady State Thermal Analysis. Workbench - Mechanical Introduction 12.0 WS6.1-1 Workbench - Mechanical Introduction 12.0 Workshop 6.1 Steady State Thermal Analysis WS6.1-1 Workshop 6.1 - Goals In this workshop we will analyze the pump housing shown below for its heat transfer characteristics.

More information

Applied CFD Project 1. Christopher Light MAE 598

Applied CFD Project 1. Christopher Light MAE 598 Applied CFD Project 1 Christopher Light MAE 598 October 5, 2017 Task 1 The hot water tank shown in Fig 1 is used for analysis of cool water flow with the heat from a hot plate at the bottom. For all tasks,

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

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

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

3.0 FINITE ELEMENT MODEL

3.0 FINITE ELEMENT MODEL 3.0 FINITE ELEMENT MODEL In Chapter 2, the development of the analytical model established the need to quantify the effect of the thermal exchange with the dome in terms of a single parameter, T d. In

More information

Ceiling Radiant Cooling Panels Employing Heat-Conducting Rails: Deriving the Governing Heat Transfer Equations

Ceiling Radiant Cooling Panels Employing Heat-Conducting Rails: Deriving the Governing Heat Transfer Equations Authors may request permission to reprint or post on their personal or company Web site once the final version of the article has been published. A reprint permission form may be found at www.ashrae.org.

More information

Pin Fin Lab Report Example. Names. ME331 Lab

Pin Fin Lab Report Example. Names. ME331 Lab Pin Fin Lab Report Example Names ME331 Lab 04/12/2017 1. Abstract The purposes of this experiment are to determine pin fin effectiveness and convective heat transfer coefficients for free and forced convection

More information

INSTRUCTOR: PM DR MAZLAN ABDUL WAHID

INSTRUCTOR: PM DR MAZLAN ABDUL WAHID SMJ 4463: HEAT TRANSFER INSTRUCTOR: PM ABDUL WAHID http://www.fkm.utm.my/~mazlan TEXT: Introduction to Heat Transfer by Incropera, DeWitt, Bergman, Lavine 6 th Edition, John Wiley and Sons Chapter 7 External

More information

Tdyn-CFD+HT - Validation Case 9

Tdyn-CFD+HT - Validation Case 9 Two-dimensional heat conduction with heat generation Version 14.0.0 Compass Ingeniería y Sistemas http://www.compassis.com Tel.: +34 932 181 989 - Fax.: +34 933 969 746 - E: info@compassis.com - C/ Tuset

More information

The Influence of Channel Aspect Ratio on Performance of Optimized Thermal-Fluid Structures

The Influence of Channel Aspect Ratio on Performance of Optimized Thermal-Fluid Structures Excerpt from the Proceedings of the COMSOL Conference 2010 Boston The Influence of Channel Aspect Ratio on Performance of Optimized Thermal-Fluid Structures Ercan M. Dede 1* 1 Technical Research Department,

More information

1. Nusselt number and Biot number are computed in a similar manner (=hd/k). What are the differences between them? When and why are each of them used?

1. Nusselt number and Biot number are computed in a similar manner (=hd/k). What are the differences between them? When and why are each of them used? 1. Nusselt number and Biot number are computed in a similar manner (=hd/k). What are the differences between them? When and why are each of them used?. During unsteady state heat transfer, can the temperature

More information

Department of Mechanical Engineering ME 96. Free and Forced Convection Experiment. Revised: 25 April Introduction

Department of Mechanical Engineering ME 96. Free and Forced Convection Experiment. Revised: 25 April Introduction CALIFORNIA INSTITUTE OF TECHNOLOGY Department of Mechanical Engineering ME 96 Free and Forced Convection Experiment Revised: 25 April 1994 1. Introduction The term forced convection refers to heat transport

More information

This chapter focuses on the study of the numerical approximation of threedimensional

This chapter focuses on the study of the numerical approximation of threedimensional 6 CHAPTER 6: NUMERICAL OPTIMISATION OF CONJUGATE HEAT TRANSFER IN COOLING CHANNELS WITH DIFFERENT CROSS-SECTIONAL SHAPES 3, 4 6.1. INTRODUCTION This chapter focuses on the study of the numerical approximation

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

Chapter 5: Ball Grid Array (BGA)

Chapter 5: Ball Grid Array (BGA) Chapter 5: Ball Grid Array (BGA) 5.1 Development of the Models The following sequence of pictures explains schematically how the FE-model of the Ball Grid Array (BGA) was developed. Initially a single

More information

FINITE ELEMENTS ANALYSIS OF THERMAL STEADY STATE, USING ANSYS

FINITE ELEMENTS ANALYSIS OF THERMAL STEADY STATE, USING ANSYS FINITE ELEMENTS ANALYSIS OF THERMAL STEADY STATE, USING ANSYS Gavril GREBENIŞAN 1, Ioan Eugen RADU 2 Ioan ANTON 3 1 University of Oradea, grebe@uoradea.ro 2 University of Oradea, iradu@uoradea.ro 3 GMAB

More information

Experimentally estimating a convection coefficient. 2. Demonstration and preliminary data reduction

Experimentally estimating a convection coefficient. 2. Demonstration and preliminary data reduction Thermocouple Parameter Identification ES 205 Analysis and Design of Engineering Systems 1. Summary Experimentally estimating a convection coefficient Parameter identification is the experimental determination

More information

August 7, 2007 NUMERICAL SOLUTION OF LAPLACE'S EQUATION

August 7, 2007 NUMERICAL SOLUTION OF LAPLACE'S EQUATION August 7, 007 NUMERICAL SOLUTION OF LAPLACE'S EQUATION PURPOSE: This experiment illustrates the numerical solution of Laplace's Equation using a relaxation method. The results of the relaxation method

More information

Tutorial Number 18: Heat transfer analysis of a teapot

Tutorial Number 18: Heat transfer analysis of a teapot Tutorial Number 18: Heat transfer analysis of a teapot Stefano Morlacchi September 2014 T. 01608 811777 F. 01608811770 E.info@ssanalysis.co.uk W. www.ssanalysis.co.uk 1. Introduction In this tutorial,

More information

3. Numerical integration

3. Numerical integration 3. Numerical integration... 3. One-dimensional quadratures... 3. Two- and three-dimensional quadratures... 3.3 Exact Integrals for Straight Sided Triangles... 5 3.4 Reduced and Selected Integration...

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

Natural Convection from a Long Horizontal Cylinder

Natural Convection from a Long Horizontal Cylinder Natural Convection from a Long Horizontal Cylinder Hussein Awad Kurdi Saad Engineering Technical College of Al Najaf, Al-Furat Al-Awsat Technical University, Iraq ABSTRACT: Natural convection from a Long

More information

HEAT and MASS TRANSFER

HEAT and MASS TRANSFER SEVENTH EDITION FUNDAMENTALS OF HEAT and MASS TRANSFER SUPPLEMENTAL MATERIAL BERGMAN / LAVINE / INCROPERA / DEWITT Contents CHAPTER 4 Two-dimensional, Steady-State Conduction 4S.1 The Graphical Method

More information

(Refer Slide Time: 01:17)

(Refer Slide Time: 01:17) Heat and Mass Transfer Prof. S.P. Sukhatme Department of Mechanical Engineering Indian Institute of Technology, Bombay Lecture No. 7 Heat Conduction 4 Today we are going to look at some one dimensional

More information

INVESTIGATIONS ON THE INTERNAL SHAPE OF CONSTRUCTAL CAVITIES INTRUDING A HEAT GENERATING BODY

INVESTIGATIONS ON THE INTERNAL SHAPE OF CONSTRUCTAL CAVITIES INTRUDING A HEAT GENERATING BODY THERMAL SCIENCE: Year 2015, Vol. 19, No. 2, pp. 609-618 609 INVESTIGATIONS ON THE INTERNAL SHAPE OF CONSTRUCTAL CAVITIES INTRUDING A HEAT GENERATING BODY by Abouzar POUZESH, Mohammad Reza HAJMOHAMMADI

More information

Chapter 2 HEAT CONDUCTION EQUATION

Chapter 2 HEAT CONDUCTION EQUATION Heat and Mass Transfer: Fundamentals & Applications 5th Edition in SI Units Yunus A. Çengel, Afshin J. Ghajar McGraw-Hill, 2015 Chapter 2 HEAT CONDUCTION EQUATION Mehmet Kanoglu University of Gaziantep

More information

Chapter 2 HEAT CONDUCTION EQUATION

Chapter 2 HEAT CONDUCTION EQUATION Heat and Mass Transfer: Fundamentals & Applications Fourth Edition Yunus A. Cengel, Afshin J. Ghajar McGraw-Hill, 2011 Chapter 2 HEAT CONDUCTION EQUATION Mehmet Kanoglu University of Gaziantep Copyright

More information

HEAT TRANSFER FROM FINNED SURFACES

HEAT TRANSFER FROM FINNED SURFACES Fundamentals of Thermal-Fluid Sciences, 3rd Edition Yunus A. Cengel, Robert H. Turner, John M. Cimbala McGraw-Hill, 2008 HEAT TRANSFER FROM FINNED SURFACES Mehmet Kanoglu Copyright The McGraw-Hill Companies,

More information

Crossing Pipes Discussion

Crossing Pipes Discussion Crossing Pipes Discussion Draft 2, 9/21/06 Chapter 7 of [4] outlines a steady state thermal analysis of an assumed pipeline junction. Here alternate points of view and additional post-processing features

More information

FINITE ELEMENT ANALYSIS USING THE TANGENT STIFFNESS MATRIX FOR TRANSIENT NON-LINEAR HEAT TRANSFER IN A BODY

FINITE ELEMENT ANALYSIS USING THE TANGENT STIFFNESS MATRIX FOR TRANSIENT NON-LINEAR HEAT TRANSFER IN A BODY Heat transfer coeff Temperature in Kelvin International Journal of Engineering Research and Applications (IJERA) ISSN: 2248-9622 FINITE ELEMENT ANALYSIS USING THE TANGENT STIFFNESS MATRIX FOR TRANSIENT

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

Finite Element Analysis of the Heat Transfer in a Copper Mould during Continuous Casting of Steel Slabs. 14 May 2005

Finite Element Analysis of the Heat Transfer in a Copper Mould during Continuous Casting of Steel Slabs. 14 May 2005 Finite Element Analysis of the Heat Transfer in a Copper Mould during Continuous Casting of Steel Slabs 14 May 2005 D. Hodgson, Sami Vapalahti, and B.G. Thomas Department of Mechanical and Industrial Engineering

More information

ASSUMPTIONS: (1) Homogeneous medium with constant properties, (2) Negligible radiation effects.

ASSUMPTIONS: (1) Homogeneous medium with constant properties, (2) Negligible radiation effects. PROBEM 5.88 KNOWN: Initial temperature of fire clay bric which is cooled by convection. FIND: Center and corner temperatures after 50 minutes of cooling. ASSUMPTIONS: () Homogeneous medium with constant

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

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

LaserComp, Inc., DESCRIPTION OF THE INSTRUMENT

LaserComp, Inc., DESCRIPTION OF THE INSTRUMENT LaserComp, Inc., 2001-2004 1. DESCRIPTION OF THE INSTRUMENT The FOX50 instrument consists of the parallel round plates assembly with guard insulation cylinders, and a body where all electronics is contained

More information

MATLAB Solution of Flow and Heat Transfer through a Porous Cooling Channel and the Conjugate Heat Transfer in the Surrounding Wall

MATLAB Solution of Flow and Heat Transfer through a Porous Cooling Channel and the Conjugate Heat Transfer in the Surrounding Wall MATLAB Solution of Flow and Heat Transfer through a Porous Cooling Channel and the Conjugate Heat Transfer in the Surrounding Wall James Cherry, Mehmet Sözen Grand Valley State University, cherryj1@gmail.com,

More information

Experiment 1. Measurement of Thermal Conductivity of a Metal (Brass) Bar

Experiment 1. Measurement of Thermal Conductivity of a Metal (Brass) Bar Experiment 1 Measurement of Thermal Conductivity of a Metal (Brass) Bar Introduction: Thermal conductivity is a measure of the ability of a substance to conduct heat, determined by the rate of heat flow

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

Experiment 5: Measurements Magnetic Fields

Experiment 5: Measurements Magnetic Fields Experiment 5: Measurements Magnetic Fields Introduction In this laboratory you will use fundamental electromagnetic Equations and principles to measure the magnetic fields of two magnets. 1 Physics 1.1

More information

External Forced Convection :

External Forced Convection : External Forced Convection : Flow over Bluff Objects (Cylinders, Spheres, Packed Beds) and Impinging Jets Chapter 7 Sections 7.4 through 7.8 7.4 The Cylinder in Cross Flow Conditions depend on special

More information

SOLIDWORKS Simulation Time Based Thermal Stress

SOLIDWORKS Simulation Time Based Thermal Stress SOLIDWORKS Simulation Time Based Thermal Stress Overview Given that SOLIDWORKS Simulation is capable of running a transient thermal analysis on models it leads to the question of whether the transient

More information

Using Excel to Implement the Finite Difference Method for 2-D Heat Transfer in a Mechanical Engineering Technology Course

Using Excel to Implement the Finite Difference Method for 2-D Heat Transfer in a Mechanical Engineering Technology Course Paper ID #9196 Using Excel to Implement the Finite Difference Method for -D Heat ransfer in a Mechanical Engineering echnology Course Mr. Robert Edwards, Pennsylvania State University, Erie Bob Edwards

More information

Journal of Industrial Engineering Research. Spreadsheet Modelling for Temperature Profile inside Palm Oil Fresh Fruit Bunch

Journal of Industrial Engineering Research. Spreadsheet Modelling for Temperature Profile inside Palm Oil Fresh Fruit Bunch IWNEST PUBLISHER Journal of Industrial Engineering Research (ISSN: 2077-4559) Journal home page: http://www.iwnest.com/aace/ Spreadsheet Modelling for Temperature Profile inside Palm Oil Fresh Fruit Bunch

More information

Simulation and improvement of the ventilation of a welding workshop using a Finite volume scheme code

Simulation and improvement of the ventilation of a welding workshop using a Finite volume scheme code 1 st. Annual (National) Conference on Industrial Ventilation-IVC2010 Feb 24-25, 2010, Sharif University of Technology, Tehran, Iran IVC2010 Simulation and improvement of the ventilation of a welding workshop

More information

7 Mathematical Methods 7.6 Insulation (10 units)

7 Mathematical Methods 7.6 Insulation (10 units) 7 Mathematical Methods 7.6 Insulation (10 units) There are no prerequisites for this project. 1 Introduction When sheets of plastic and of other insulating materials are used in the construction of building

More information

Lab 1: Numerical Solution of Laplace s Equation

Lab 1: Numerical Solution of Laplace s Equation Lab 1: Numerical Solution of Laplace s Equation ELEC 3105 last modified August 27, 2012 1 Before You Start This lab and all relevant files can be found at the course website. You will need to obtain an

More information

Lecture 12: Finite Elements

Lecture 12: Finite Elements Materials Science & Metallurgy Part III Course M6 Computation of Phase Diagrams H. K. D. H. Bhadeshia Lecture 2: Finite Elements In finite element analysis, functions of continuous quantities such as temperature

More information

ME 4/549 Lab Assignment 5: Single Block Experiment Spring 2006 due 1 June 2006

ME 4/549 Lab Assignment 5: Single Block Experiment Spring 2006 due 1 June 2006 ME 4/549 Lab Assignment 5: Single Block Experiment Spring 2006 due 1 June 2006 version May 23, 2006 1 Objective The objective of the laboratory exercise is to measure the convective heat transfer coefficient

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

Observations of Thermo-Electric MHD Driven Flows in the SLiDE Apparatus

Observations of Thermo-Electric MHD Driven Flows in the SLiDE Apparatus Observations of Thermo-Electric MHD Driven Flows in the SLiDE Apparatus M.A. Jaworski, Wenyu Xu, M. Antonelli, J.J. Kim, M.B. Lee, V. Surla and D.N. Ruzic Department of Nuclear, Plasma and Radiological

More information

This section develops numerically and analytically the geometric optimisation of

This section develops numerically and analytically the geometric optimisation of 7 CHAPTER 7: MATHEMATICAL OPTIMISATION OF LAMINAR-FORCED CONVECTION HEAT TRANSFER THROUGH A VASCULARISED SOLID WITH COOLING CHANNELS 5 7.1. INTRODUCTION This section develops numerically and analytically

More information

Basic Aspects of Discretization

Basic Aspects of Discretization Basic Aspects of Discretization Solution Methods Singularity Methods Panel method and VLM Simple, very powerful, can be used on PC Nonlinear flow effects were excluded Direct numerical Methods (Field Methods)

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

Heat Transfer: Physical Origins and Rate Equations. Chapter One Sections 1.1 and 1.2

Heat Transfer: Physical Origins and Rate Equations. Chapter One Sections 1.1 and 1.2 Heat Transfer: Physical Origins and Rate Equations Chapter One Sections 1.1 and 1. Heat Transfer and Thermal Energy What is heat transfer? Heat transfer is thermal energy in transit due to a temperature

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

Thermally activated wall system with latent heat thermal energy storage comparison of 1D and 3D model

Thermally activated wall system with latent heat thermal energy storage comparison of 1D and 3D model Thermally activated wall system with latent heat thermal energy storage comparison of 1D and 3D model Pavel Charvat 1, Lubomir Klimes 1,2, Milan Ostry 2 1 Faculty of Mechanical Engineering, Brno University

More information

University of New Mexico Mechanical Engineering Fall 2012 PhD qualifying examination Heat Transfer

University of New Mexico Mechanical Engineering Fall 2012 PhD qualifying examination Heat Transfer University of New Mexico Mechanical Engineering Fall 2012 PhD qualifying examination Heat Transfer Closed book. Formula sheet and calculator are allowed, but not cell phones, computers or any other wireless

More information

International Journal of Modern Trends in Engineering and Research e-issn No.: , Date: April, 2016

International Journal of Modern Trends in Engineering and Research   e-issn No.: , Date: April, 2016 International Journal of Modern Trends in Engineering and Research www.ijmter.com e-issn No.:2349-9745, Date: 28-30 April, 2016 An Experimental and Numerical Study of Thermal Performance of a Radial Heat

More information

Simulation of the Temperature Profile During Welding with COMSOL Multiphysics Software Using Rosenthal s Approach

Simulation of the Temperature Profile During Welding with COMSOL Multiphysics Software Using Rosenthal s Approach Simulation of the Temperature Profile During Welding with COMSOL Multiphysics Software Using Rosenthal s Approach A. Lecoanet*, D. G. Ivey, H. Henein Department of Chemical & Materials Engineering, University

More information

Transmission Matrix Model of a Quarter-Wave-Tube with Gas Temperature Gradients

Transmission Matrix Model of a Quarter-Wave-Tube with Gas Temperature Gradients Transmission Matrix Model of a Quarter-Wave-Tube with Gas Temperature Gradients Carl Howard School of Mechanical Engineering, University of Adelaide, South Australia, Australia ABSTRACT A transmission

More information

11. Advanced Radiation

11. Advanced Radiation . Advanced adiation. Gray Surfaces The gray surface is a medium whose monochromatic emissivity ( λ does not vary with wavelength. The monochromatic emissivity is defined as the ratio of the monochromatic

More information

University of New Mexico Mechanical Engineering Spring 2012 PhD qualifying examination Heat Transfer

University of New Mexico Mechanical Engineering Spring 2012 PhD qualifying examination Heat Transfer University of New Mexico Mechanical Engineering Spring 2012 PhD qualifying examination Heat Transfer Closed book. Formula sheet and calculator are allowed, but not cell phones, computers or any other wireless

More information

PROBLEM 3.8 ( ) 20 C 10 C m m m W m K W m K 1.4 W m K. 10 W m K 80 W m K

PROBLEM 3.8 ( ) 20 C 10 C m m m W m K W m K 1.4 W m K. 10 W m K 80 W m K PROBLEM 3.8 KNOWN: Dimensions of a thermopane window. Room and ambient air conditions. FIND: (a) Heat loss through window, (b) Effect of variation in outside convection coefficient for double and triple

More information

Autumn 2005 THERMODYNAMICS. Time: 3 Hours

Autumn 2005 THERMODYNAMICS. Time: 3 Hours CORK INSTITUTE OF TECHNOOGY Bachelor of Engineering (Honours) in Mechanical Engineering Stage 3 (Bachelor of Engineering in Mechanical Engineering Stage 3) (NFQ evel 8) Autumn 2005 THERMODYNAMICS Time:

More information

Gauss Law 1. Name Date Partners GAUSS' LAW. Work together as a group on all questions.

Gauss Law 1. Name Date Partners GAUSS' LAW. Work together as a group on all questions. Gauss Law 1 Name Date Partners 1. The statement of Gauss' Law: (a) in words: GAUSS' LAW Work together as a group on all questions. The electric flux through a closed surface is equal to the total charge

More information

CONVECTIVE HEAT TRANSFER COEFFICIENTS IN TURNING

CONVECTIVE HEAT TRANSFER COEFFICIENTS IN TURNING CONVECTIVE HEAT TRANSFER COEFFICIENTS IN TURNING L. Kops M. Arenson Department of Mechanical Engineering McGill University 817 Sherbrooke St. W., Montreal, Quebec, Canada H3A 2K6 Abstract. Methodology

More information

CHAPTER 8: Thermal Analysis

CHAPTER 8: Thermal Analysis CHAPER 8: hermal Analysis hermal Analysis: calculation of temperatures in a solid body. Magnitude and direction of heat flow can also be calculated from temperature gradients in the body. Modes of heat

More information

Using Computational Fluid Dynamics And Analysis Of Microchannel Heat Sink

Using Computational Fluid Dynamics And Analysis Of Microchannel Heat Sink International Journal of Engineering Inventions e-issn: 2278-7461, p-issn: 2319-6491 Volume 4, Issue 12 [Aug. 2015] PP: 67-74 Using Computational Fluid Dynamics And Analysis Of Microchannel Heat Sink M.

More information

Thermo-mechanical Investigation of Ventilated Disc Brake with Finite Element Analysis

Thermo-mechanical Investigation of Ventilated Disc Brake with Finite Element Analysis Thermo-mechanical Investigation of Ventilated Disc Brake with Finite Element Analysis Arifin #1, Mohammad Tauviqirrahman #2, Muchammad *3, J. Jamari #, A.P. Bayuseno # # Laboratory for Engineering Design

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

1D-HAM. Coupled Heat, Air and Moisture Transport in Multi-layered Wall Structures. Manual with brief theory and an example. Version 2.

1D-HAM. Coupled Heat, Air and Moisture Transport in Multi-layered Wall Structures. Manual with brief theory and an example. Version 2. 1D-HAM Coupled Heat, Air and Moisture Transport in Multi-layered Wall Structures. Manual with brief theory and an example. Version 2.0 30 t=70 days (1680 h) 100 Temperatures ( C) v (g/m³) 25 20 15 10 5

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

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

Determining the Average R-Value of Tapered Insulation

Determining the Average R-Value of Tapered Insulation 2011. American Society of Heating, Refrigerating and Air-Conditioning Engineers, Inc. (www.ashrae.org). Published in ASHRAE Transactions, Volume 117, Part 1. For personal use only. Additional reproduction,

More information

Single Stop Transient Thermal Coupled with Structural Analysis and Repeated Braking Analysis with Convective Cooling for Ventilated Rotor

Single Stop Transient Thermal Coupled with Structural Analysis and Repeated Braking Analysis with Convective Cooling for Ventilated Rotor Single Stop Transient Thermal Coupled with Structural Analysis and Repeated Braking Analysis with Convective Cooling for Ventilated Rotor Tirth Sodagar 1, Avadhoot Ahire 2 1Tirth Sodagar, Student, School

More information

Finite Difference Methods (FDMs) 1

Finite Difference Methods (FDMs) 1 Finite Difference Methods (FDMs) 1 1 st - order Approxima9on Recall Taylor series expansion: Forward difference: Backward difference: Central difference: 2 nd - order Approxima9on Forward difference: Backward

More information

Thermal Characterization of Packaged RFIC, Modeled vs. Measured Junction to Ambient Thermal Resistance

Thermal Characterization of Packaged RFIC, Modeled vs. Measured Junction to Ambient Thermal Resistance Thermal Characterization of Packaged RFIC, Modeled vs. Measured Junction to Ambient Thermal Resistance Steven Brinser IBM Microelectronics Abstract Thermal characterization of a semiconductor device is

More information

of the heat is dissipated as a result of the flow of electrical current in various conductors. In order to predict temperatures

of the heat is dissipated as a result of the flow of electrical current in various conductors. In order to predict temperatures Transient Coupled Thermal / Electrical Analysis of a Printed Wiring Board Ben Zandi TES International: (248 362-29 bzandi@tesint.com Jeffrey Lewis TES International Hamish Lewis TES International Abstract

More information

CFD AND CONJUGATE HEAT TRANSFER ANALYSIS OF HEAT SINKS WITH DIFFERENT FIN GEOMETRIES SUBJECTED TO FORCED CONVECTION USED IN ELECTRONICS COOLING

CFD AND CONJUGATE HEAT TRANSFER ANALYSIS OF HEAT SINKS WITH DIFFERENT FIN GEOMETRIES SUBJECTED TO FORCED CONVECTION USED IN ELECTRONICS COOLING CFD AND CONJUGATE HEAT TRANSFER ANALYSIS OF HEAT SINKS WITH DIFFERENT FIN GEOMETRIES SUBJECTED TO FORCED CONVECTION USED IN ELECTRONICS COOLING V. M Kulkarni 1, Basavaraj Dotihal 2 1 Professor, Thermal

More information

Lumped Mass Heat Transfer Experiment

Lumped Mass Heat Transfer Experiment Lumped Mass Heat Transfer Experiment Thermal Network Solution with TNSolver Bob Cochran Applied Computational Heat Transfer Seattle, WA TNSolver@heattransfer.org ME 331 Introduction to Heat Transfer University

More information

Transmission Matrix Model of a Quarter-Wave-Tube with Gas Temperature Gradients

Transmission Matrix Model of a Quarter-Wave-Tube with Gas Temperature Gradients Proceedings of Acoustics 2013 Victor Harbor Transmission Matrix Model of a Quarter-Wave-Tube with Gas Temperature Gradients Carl Howard School of Mechanical Engineering, University of Adelaide, South Australia,

More information

Tutorial 11. Use of User-Defined Scalars and User-Defined Memories for Modeling Ohmic Heating

Tutorial 11. Use of User-Defined Scalars and User-Defined Memories for Modeling Ohmic Heating Tutorial 11. Use of User-Defined Scalars and User-Defined Memories for Modeling Ohmic Heating Introduction The purpose of this tutorial is to illustrate the use of user-defined scalars (UDS) and user defined

More information

Solution of the Two-Dimensional Steady State Heat Conduction using the Finite Volume Method

Solution of the Two-Dimensional Steady State Heat Conduction using the Finite Volume Method Ninth International Conference on Computational Fluid Dynamics (ICCFD9), Istanbul, Turkey, July 11-15, 2016 ICCFD9-0113 Solution of the Two-Dimensional Steady State Heat Conduction using the Finite Volume

More information