C OMPUTATION AND S IMULATION EE317 2008-2009 A SSIGNMENT T WO By: Shimiao Cheng, Femi Adeleke, Hanieh Alirezaeeabyaneh.

Slides:



Advertisements
Similar presentations
Ordinary Differential Equations
Advertisements

Chapter 6 Differential Equations
SE301: Numerical Methods Topic 8 Ordinary Differential Equations (ODEs) Lecture KFUPM Read , 26-2, 27-1 CISE301_Topic8L8&9 KFUPM.
PART 7 Ordinary Differential Equations ODEs
First-Order Differential Equations
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 31 Ordinary Differential Equations.
Ch 2.1: Linear Equations; Method of Integrating Factors
Ordinary Differential Equations (ODEs) 1Daniel Baur / Numerical Methods for Chemical Engineers / Implicit ODE Solvers Daniel Baur ETH Zurich, Institut.
2.5 Implicit Differentiation. Implicit and Explicit Functions Explicit FunctionImplicit Function But what if you have a function like this…. To differentiate:
Numerical Solutions of Ordinary Differential Equations
NUMERICAL SOLUTION OF ORDINARY DIFFERENTIAL EQUATIONS
Chap 1 First-Order Differential Equations
Differential Equations and Boundary Value Problems
Numerical Solution of Ordinary Differential Equation
MATH 685/ CSI 700/ OR 682 Lecture Notes Lecture 10. Ordinary differential equations. Initial value problems.
P ROJECT : N UMERICAL S OLUTIONS TO O RDINARY D IFFERENTIAL E QUATIONS IN H ARDWARE Joseph Schneider EE 800 March 30, 2010.
PART 7 Ordinary Differential Equations ODEs
Calculus and Analytic Geometry II Cloud County Community College Spring, 2011 Instructor: Timothy L. Warkentin.
Section 6.1: Euler’s Method. Local Linearity and Differential Equations Slope at (2,0): Tangent line at (2,0): Not a good approximation. Consider smaller.
Engineering Computation and Simulation Conor Brennan Dublin City University EE317.
Fin500J Topic 6Fall 2010 Olin Business School 1 Fin500J: Mathematical Foundations in Finance Topic 6: Ordinary Differential Equations Philip H. Dybvig.
Implicit Differentiation
Computational Method in Chemical Engineering (TKK-2109)
Math 3120 Differential Equations with Boundary Value Problems
Computer Animation Algorithms and Techniques
Differential Equations. Definition A differential equation is an equation involving derivatives of an unknown function and possibly the function itself.
CSE 3802 / ECE 3431 Numerical Methods in Scientific Computation
4.2:Derivatives of Products and Quotients Objectives: Students will be able to… Use and apply the product and quotient rule for differentiation.
CHAPTER Continuity Euler’s Method Euler’s idea was to improve on linear approximation by proceeding only a short distance along the tangent line.
The elements of higher mathematics Differential Equations
Numerical Solutions of ODE
Ch 1.3: Classification of Differential Equations
Implicit Differentiation Objective: To find derivatives of functions that we cannot solve for y.
Suppose we are given a differential equation and initial condition: Then we can approximate the solution to the differential equation by its linearization.
For any function f (x), the tangent is a close approximation of the function for some small distance from the tangent point. We call the equation of the.
Ch 2.1: Linear Equations; Method of Integrating Factors A linear first order ODE has the general form where f is linear in y. Examples include equations.
Warm Up. Solving Differential Equations General and Particular solutions.
Today’s class Ordinary Differential Equations Runge-Kutta Methods
9.1 Solving Differential Equations Mon Jan 04 Do Now Find the original function if F’(x) = 3x + 1 and f(0) = 2.
Y=3x+1 y 5x + 2 =13 Solution: (, ) Solve: Do you have an equation already solved for y or x?
Section 1.1 Basic Definitions and Terminology. DIFFERENTIAL EQUATIONS Definition: A differential equation (DE) is an equation containing the derivatives.
Set #1, Question E: TRUE or FALSE: “A differential equation is a type of function.” A. TRUE B. FALSE.
Ordinary Differential Equations (ODEs). Objectives of Topic  Solve Ordinary Differential Equations (ODEs).  Appreciate the importance of numerical methods.
Differential Equations
Chapter 1: Definitions, Families of Curves
SLOPE FIELDS & EULER’S METHOD
SLOPE FIELDS & EULER’S METHOD
Basic Definitions and Terminology
Slope Fields If you enjoyed connecting the dots, you’ll love slope fields It is a graphical method to find a particular solution to any differential equation.
Implicit Differentiation
Equations of Tangents.
FE Exam Tutorial
Numerical Solution of Ordinary Differential Equation
525602:Advanced Numerical Methods for ME
Numerical Solutions of Ordinary Differential Equations
Section Euler’s Method
MATH 2140 Numerical Methods
First-Order Differential Equations
Section 11.3 Euler’s Method
Specialist Mathematics
Numerical solution of first-order ordinary differential equations
§3.10 Linear Approximations and Differentials
Choose the differential equation corresponding to this direction field
Numerical Computation and Optimization
MATH 2140 Numerical Methods
Reading Between the Lines!
Differential Equations
CISE301: Numerical Methods Topic 8 Ordinary Differential Equations (ODEs) Lecture KFUPM Read , 26-2, 27-1 CISE301_Topic8L1 KFUPM.
Numerical solution of first-order ordinary differential equations 1. First order Runge-Kutta method (Euler’s method) Let’s start with the Taylor series.
Presentation transcript:

C OMPUTATION AND S IMULATION EE A SSIGNMENT T WO By: Shimiao Cheng, Femi Adeleke, Hanieh Alirezaeeabyaneh

SOME EXAMPLES OF THE USE OF NUMERICAL SOLVERS FOR REAL - LIFE ENGINEERING / PHYSICS ODE PROBLEMS Mathematical models when simulating the behavior of physical, chemical, and biological systems often include one or more ordinary differential equations (ODES) and these equations are usually solved numerically. You have already seen acceleration a=x'' (second order derivative) and v=x′ (first order derivative) in the high school. First order Ordinary Differential Equations. In engineering applications, a first order ODE usually appears in the context of an initial value problem.

y(x0) = y0, d/dx y(x) = f(x, y(x)). The function f might be a linear or non-linear function of the independent variable x and the dependent parameter y. Euler Method, The simplest approach to solving this type of equation numerically is based on finite difference approximations to the derivative. In general, yn+1 = yn + hf(xn,yn) Effectively, we are approximating the curve y(x) by a polygon, whose first side is tangent to the curve at x0.

Runge -Kutta Method, This method uses the estimate yn+1 = yn + 1/6( A1 + 2A2 + 2A3 + A4) where the auxiliary estimates are given by A1 = f(xn, yn) A2 = f(xn +h/ 2,yn +h/ 2 A1) A3 = f(xn +h/ 2, yn +h/ 2 A2) A4 = f(xn + h, yn + hA3)

P RESENT THE RESULTS OF YOUR EFFORTS TO NUMERICALLY SOLVE ( IN M ATLAB ) THE ORDINARY DIFFERENTIAL EQUATION dy/dx = x + y, with y(0) = 0 in the range (0; 10). Note that the exact solution is y(x) = ex-x-1.

A PROJECTILE IS FIRED FROM THE ORIGIN (0 ; 0) AT ANGLE µ TO THE X - DIRECTION WITH INITIAL VELOCITY V0.

F INALLY, RESPOND ( BRIEFLY ) TO M R. O M EARA ’ S COMMENTS According to what David O’meara said, we will completely agree with him about the level of education in schools that has not met the objectives of student for their third level education. Because of this, the department of education need carefully choosing the teaching material which has to to meet the needs of the society. Another improvement which can be done is to have a better quality service in each guidance consular department. They play a major role in influencing student to pick the right field in college.

Thank you & Questions