Mathematical Modeling, Numerical Methods, and Problem Solving

Slides:



Advertisements
Similar presentations
Copyright © 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. by Lale Yurttas, Texas A&M University Chapter 301 Finite.
Advertisements

Part 2 Chapter 6 Roots: Open Methods
Part 2 Chapter 6 Roots: Open Methods
Roots: Bracketing Methods
Part 3 Chapter 13 Eigenvalues PowerPoints organized by Prof. Steve Chapra, Tufts University All images copyright © The McGraw-Hill Companies, Inc. Permission.
Part 3 Chapter 9 Gauss Elimination
Computational Biology, Part 17 Biochemical Kinetics I Robert F. Murphy Copyright  1996, All rights reserved.
CVEN Computer Applications in Engineering and Construction Dr. Jun Zhang.
Initial-Value Problems
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 2 Mathematical Modeling and Engineering Problem Solving.
The Islamic University of Gaza Faculty of Engineering Numerical Analysis ECIV 3306 Introduction.
Numerical Solutions of Ordinary Differential Equations
Homework Homework Assignment #19 Read Section 9.3 Page 521, Exercises: 1 – 41(EOO) Quiz next time Rogawski Calculus Copyright © 2008 W. H. Freeman and.
Copyright © 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. by Lale Yurttas, Texas A&M University Chapter 11.
The Islamic University of Gaza Faculty of Engineering Civil Engineering Department Numerical Analysis ECIV 3306 Chapter 1 Mathematical Modeling.
Copyright © 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 Mathematical Modeling and Engineering Problem solving.
Applications of Calculus. The logarithmic spiral of the Nautilus shell is a classical image used to depict the growth and change related to calculus.
Numerical Methods Intro to Numerical Methods &
M-files While commands can be entered directly to the command window, MATLAB also allows you to put commands in text files called M- files. M-files are.
Chapter 1 Computing Tools Analytic and Algorithmic Solutions Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
Computational Biology, Part 15 Biochemical Kinetics I Robert F. Murphy Copyright  1996, 1999, 2000, All rights reserved.
ME 254. Chapter I Integral Relations for a Control Volume An engineering science like fluid dynamics rests on foundations comprising both theory and experiment.
Part 2 Chapter 5 Roots: Bracketing Methods PowerPoints organized by Dr. Michael R. Gustafson II, Duke University All images copyright © The McGraw-Hill.
Mathematical Modeling and Engineering Problem Solving
Questions From Reading Activity? Big Idea(s):  The interactions of an object with other objects can be described by forces.  Interactions between.
Scientific Computing Numerical Solution Of Ordinary Differential Equations - Euler’s Method.
CSE 3802 / ECE 3431 Numerical Methods in Scientific Computation
Chapter 1 Computing Tools Analytic and Algorithmic Solutions Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 Part 7 - Chapter 25.
Part 3 Chapter 13 Eigenvalues {contains corrections to the Texbook} PowerPoints organized by Prof. Steve Chapra, Tufts University All images copyright.
ES 240: Scientific and Engineering Computation. Chapter 1 Chapter 1: Mathematical Modeling, Numerical Methods and Problem Solving Uchechukwu Ofoegbu Temple.
Part 1 Chapter 1 Mathematical Modeling, Numerical Methods, and Problem Solving PowerPoints organized by Dr. Michael R. Gustafson II, Duke University and.
Suppose we are given a differential equation and initial condition: Then we can approximate the solution to the differential equation by its linearization.
Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 Chapter 27.
Part 1 Chapter 1 Mathematical Modeling, Numerical Methods, and Problem Solving PowerPoints organized by Dr. Michael R. Gustafson II, Duke University and.
Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 Part 6 - Chapters 22 and 23.
Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1-1 Chapter 1.
Part 3 Chapter 9 Gauss Elimination
Part 3 Chapter 12 Iterative Methods
Fundamentals of Electric Circuits Chapter 7
Applied Numerical Methods
(of a different textbook)
Differential Equations
Polynomial Interpolation
Chapter 1.
Matrix Inverse and Condition
Boundary-Value Problems
Copyright © The McGraw-Hill Companies, Inc
Numerical Differentiation
Part 2 Chapter 6 Roots: Open Methods
Roundoff and Truncation Errors
Chapter 3 Image Slides Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
MATH 2140 Numerical Methods
Devil physics The baddest class on campus AP Physics
General Linear Least-Squares and Nonlinear Regression
Applied Numerical Methods
Assignment Pages: 10 – 12 (Day 1) Questions over Assignment? # 1 – 4
Fundamentals of Electric Circuits Chapter 15
Fundamentals of Electric Circuits Chapter 7
Title Chapter 22 Image Slides
Roots: Bracketing Methods
Mathematical Model.
Copyright © The McGraw-Hill Companies, Inc
CHAPTER 6 SKELETAL SYSTEM
Roundoff and Truncation Errors
Roots: Bracketing Methods
Part 2 Chapter 6 Roots: Open Methods
Introduction to Fluid Mechanics
1.1 Dynamical Systems MODELING CHANGE
Chapter 3 Introduction to Physical Design of Transportation Facilities.
Presentation transcript:

Mathematical Modeling, Numerical Methods, and Problem Solving Part 1 Chapter 1 Mathematical Modeling, Numerical Methods, and Problem Solving PowerPoints organized by Dr. Michael R. Gustafson II, Duke University and Prof. Steve Chapra, Tufts University All images copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.

Chapter Objectives Learning how mathematical models can be formulated on the basis of scientific principles to simulate the behavior of a simple physical system. Understanding how numerical methods afford a means to generalize solutions in a manner that can be implemented on a digital computer. Understanding the different types of conservation laws that lie beneath the models used in the various engineering disciplines and appreciating the difference between steady-state and dynamic solutions of these models. Learning about the different types of numerical methods we will cover in this book.

A Simple Mathematical Model A mathematical model can be broadly defined as a formulation or equation that expresses the essential features of a physical system or process in mathematical terms. Models can be represented by a functional relationship between dependent variables, independent variables, parameters, and forcing functions.

Model Function Dependent variable - a characteristic that usually reflects the behavior or state of the system Independent variables - dimensions, such as time and space, along which the system’s behavior is being determined Parameters - constants reflective of the system’s properties or composition Forcing functions - external influences acting upon the system

Model Function Example Assuming a bungee jumper is in mid-flight, an analytical model for the jumper’s velocity, accounting for drag, is Dependent variable - velocity v Independent variables - time t Parameters - mass m, drag coefficient cd Forcing function - gravitational acceleration g

Model Results Using a computer (or a calculator), the model can be used to generate a graphical representation of the system. For example, the graph below represents the velocity of a 68.1 kg jumper, assuming a drag coefficient of 0.25 kg/m

Numerical Modeling Some system models will be given as implicit functions or as differential equations - these can be solved either using analytical methods or numerical methods. Example - the bungee jumper velocity equation from before is the analytical solution to the differential equation where the change in velocity is determined by the gravitational forces acting on the jumper versus the drag force.

Numerical Methods To solve the problem using a numerical method, note that the time rate of change of velocity can be approximated as:

Euler's Method Substituting the finite difference into the differential equation gives Solve for dv dt = g - c d m v 2 = g - v2 cd m   v(ti+1) - v(ti) ti+1 - ti v(ti+1) = v(ti) + g - v(ti)2 cd m (ti+1 - ti) new = old + slope  step

Numerical Results Applying Euler's method in 2 s intervals yields: How do we improve the solution? Smaller steps

Bases for Numerical Models Conservation laws provide the foundation for many model functions. Different fields of engineering and science apply these laws to different paradigms within the field. Among these laws are: Conservation of mass Conservation of momentum Conservation of charge Conservation of energy

Summary of Numerical Methods The book is divided into five categories of numerical methods: