Numerical integration of DAE s

Size: px
Start display at page:

Download "Numerical integration of DAE s"

Transcription

1 Numerical integration of DAE s seminar Sandra Allaart-Bruin sbruin@win.tue.nl seminar p.1

2 Seminar overview February 18 Arie Verhoeven Introduction to DAE s seminar p.2

3 Seminar overview February 18 Arie Verhoeven Introduction to DAE s March 10 Sandra Allaart-Bruin Numerical Integration of DAE s seminar p.2

4 Seminar overview February 18 Arie Verhoeven Introduction to DAE s March 10 Sandra Allaart-Bruin Numerical Integration of DAE s March 17 Pieter Heres DAE s in electrical circuits seminar p.2

5 Seminar overview February 18 Arie Verhoeven Introduction to DAE s March 10 Sandra Allaart-Bruin Numerical Integration of DAE s March 17 Pieter Heres DAE s in electrical circuits March 31 Mikhail Sizov DAE s in Multibody systems seminar p.2

6 Seminar overview February 18 Arie Verhoeven Introduction to DAE s March 10 Sandra Allaart-Bruin Numerical Integration of DAE s March 17 Pieter Heres DAE s in electrical circuits March 31 Mikhail Sizov DAE s in Multibody systems April 28 Michael Guenther Expert seminar p.2

7 Overview Test DAE seminar p.3

8 Overview Test DAE Trapezoidal rule seminar p.3

9 Overview Test DAE Trapezoidal rule Backward Differentiation Formulae seminar p.3

10 Overview Test DAE Trapezoidal rule Backward Differentiation Formulae Modified Extended BDF seminar p.3

11 Overview Test DAE Trapezoidal rule Backward Differentiation Formulae Modified Extended BDF Codes seminar p.3

12 Simple test-case DAE: x(t) = sin(t) x (t) + y(t) = 0 seminar p.4

13 Simple test-case DAE: x(t) = sin(t) x (t) + y(t) = 0 exact solution x(t) = sin(t) y(t) = cos(t) seminar p.4

14 Simple test-case DAE: x(t) = sin(t) x (t) + y(t) = 0 exact solution x(t) = sin(t) y(t) = cos(t) linear constant coefficients: Ax (t) + Bx(t) = g(t) [ ] ( ) [ ] ( ) ( ) 0 0 x (t) 1 0 x(t) sin(t) 1 0 y + = (t) 0 1 y(t) 0 seminar p.4

15 Simple test-case DAE: x(t) = sin(t) x (t) + y(t) = 0 exact solution x(t) = sin(t) y(t) = cos(t) linear constant coefficients: Ax (t) + Bx(t) = g(t) [ ] ( ) [ ] ( ) ( ) 0 0 x (t) 1 0 x(t) sin(t) 1 0 y + = (t) 0 1 y(t) 0 What is the index? seminar p.4

16 Differential index The differential index k of a (non)linear, sufficiently smooth DAE is the smallest k such that f(x, x, t) = 0 d dt f(x, x, t) = 0. d k dt k f(x, x, t) = 0 uniquely determines x as a continuous function of (x, t). seminar p.5

17 Index Differential index δ = 2 seminar p.6

18 Index Differential index δ = 2 Tractability index τ = 2 seminar p.6

19 Index Differential index δ = 2 Tractability index τ = 2 Perturbation index π = 2 seminar p.6

20 Index Differential index δ = 2 Tractability index τ = 2 Perturbation index π = 2 There always holds that: δ τ δ + 1 seminar p.6

21 Consistent Initial Values f(x, x, t) = 0 x 0 is a consistent initial value, if there exists a smooth solution that fullfills x(t 0 ) = x 0 and this solution is defined for all t. seminar p.7

22 Consistent Initial Values x(t) = sin(t) x (t) + y(t) = 0 x 0 is a consistent initial value, if there exists a smooth solution that fullfills x(t 0 ) = x 0 and this solution is defined for all t. seminar p.7

23 Consistent Initial Values x(t) = sin(t) x (t) + y(t) = 0 x 0 is a consistent initial value, if there exists a smooth solution that fullfills x(t 0 ) = x 0 and this solution is defined for all t. Algebraic constraint: x(t) = sin(t) seminar p.7

24 Consistent Initial Values x(t) = sin(t) x (t) + y(t) = 0 x 0 is a consistent initial value, if there exists a smooth solution that fullfills x(t 0 ) = x 0 and this solution is defined for all t. Algebraic constraint: x(t) = sin(t) Hidden algebraic constraint: y(t) = cos(t) seminar p.7

25 Consistent Initial Values x(t) = sin(t) x (t) + y(t) = 0 x 0 is a consistent initial value, if there exists a smooth solution that fullfills x(t 0 ) = x 0 and this solution is defined for all t. Algebraic constraint: x(t) = sin(t) Hidden algebraic constraint: y(t) = cos(t) Consistent initial values: x 0 y 0 = sin(0) = cos(0) seminar p.7

26 Trapezoidal rule Consider the following ODE: x (t) = f(x(t), t) The trapezoidal rule applied: x n+1 x n h = 1 2 (f(x n+1, t n+1 ) + f(x n, t n )) seminar p.8

27 Trapezoidal rule test DAE x(t) = sin(t) x (t) + y(t) = 0 The Trapezoidal rule applied: x n+1 + x n = sin(t n+1 ) + sin(t n ) x n+1 x n h (y n+1 + y n ) = 0 seminar p.9

28 Trapezoidal rule 1.5 Trapeziodal rule 1 x 0 = sin(0) y 0 = cos(0) x y 1.5 seminar p.10

29 Trapezoidal rule 1.5 Trapezoidal rule 1 x 0 = sin(0) y 0 = cos(0) h x y 1.5 seminar p.10

30 Trapezoidal rule x y Trapezoidal rule x 0 = h y 0 = cos(0) seminar p.10

31 Analysis Trapezoidal rule x n+1 = sin(t n+1 ) + x n sin(t n ) y n+1 = y n 2 h (x n+1 x n ) If x 0 sin(0) then x n+1 is never equal to sin(t n+1 ). seminar p.11

32 Backward Diff. Formula Consider the following ODE: x (t) = f(x(t), t) The Backward Differentiation Formula applied: k j=1 α j x n+j = hβ k f(x n+k, t n+k ) Remark: 1-step BDF is Euler Implicit (α 0 = 1, α 1 = 1, β 1 = 1) seminar p.12

33 Backward Diff. Formula test DAE x(t) = sin(t) x (t) + y(t) = 0 1-step BDF x n+1 = sin(t n+1 ) x n+1 x n h + y n+1 = 0 seminar p.13

34 Backward Diff. Formula step BDF 1 x 0 = sin(0) y 0 = cos(0) x y 1.5 seminar p.14

35 Backward Diff. Formula step BDF 1 x 0 = sin(0) y 0 = cos(0) h x y 1.5 seminar p.14

36 Backward Diff. Formula step BDF 1 x 0 = h y 0 = cos(0) x y 1.5 seminar p.14

37 analysis 1-step BDF x n+1 = sin(t n+1 ) y n+1 = x n+1 x n h seminar p.15

38 analysis 1-step BDF x n+1 = sin(t n+1 ) y n+1 = x n+1 x n h BDF solves the algebraic equation exact! seminar p.15

39 BDF convergence A k step BDF with constant stepsize, applied to a const. coeff. DAE with diff. index µ, is convergent with order p = k after (µ 1)k + 1 steps. seminar p.16

40 BDF convergence A k step BDF with constant stepsize, applied to a const. coeff. DAE with diff. index µ, is convergent with order p = k after (µ 1)k + 1 steps. What if we use variable stepsizes? seminar p.16

41 BDF BDF method perfect? seminar p.17

42 BDF BDF method perfect? A-stable up to order 2 (Dalhquist Barrier). seminar p.17

43 BDF BDF method perfect? A-stable up to order 2 (Dalhquist Barrier). A(α) stable up to order 6. seminar p.17

44 BDF BDF method perfect? A-stable up to order 2 (Dalhquist Barrier). A(α) stable up to order 6. other methods? seminar p.17

45 Modified Extended BDF Ax (t) + g(x(t), t) = 0 1st BDF step x n k x n k 1 x n 1 x n x n+1 2nd BDF step g( x n,t n ) g(x n+1,t n ) Evaluation step Final step x n (3 x same Jacobian) seminar p.18

46 Order reduction k-step Convergence order consistent method index-1 DAE index-2 DAE solutions BDF k k + MEBDF k+1 k + seminar p.19

47 Available codes code method authors DAE index IDE RADAU IRK Hairer, Wanner 3 - GELDA BDF,RK Mehrmann + MEBDFI MEBDF Abdulla, Cash 3 + DASSL BDF Petzold 1 + PSIDE IRK De Swart a.o. 3 + GAMD BVM Iavernaro, 3 + Mazzia seminar p.20

48 Available codes lamour/ code for index reduction and computing consistent initial values. seminar p.21

49 Available codes lamour/ code for index reduction and computing consistent initial values. index 2: x(t) = sin(t) x (t) + y(t) = 0 seminar p.21

50 Available codes lamour/ code for index reduction and computing consistent initial values. index 2: x(t) = sin(t) x (t) + y(t) = 0 index 1: x(t) = cos(t) x (t) + y(t) = 0 seminar p.21

51 Summary Trapezoidal rule is not suited for DAE s. seminar p.22

52 Summary Trapezoidal rule is not suited for DAE s. BDF with fixed stepsize is suited for DAE s. seminar p.22

53 Summary Trapezoidal rule is not suited for DAE s. BDF with fixed stepsize is suited for DAE s. Index of DAE is important for convergence results. seminar p.22

54 Summary Trapezoidal rule is not suited for DAE s. BDF with fixed stepsize is suited for DAE s. Index of DAE is important for convergence results. There are a lot of different codes available for DAE s with index 3. seminar p.22

55 References Ordinary Differential Equations in Theory and Practice, Mattheij and Molenaar Solving Ordinary Differential Equations II, Hairer and Wanner Numerical Solution of Initial-Value Problems in Differential-Algebraic Equations, Brenan, Campbell and Petzold testset seminar p.23

56 Questions? seminar p.24

ODE - Problem ROBER. 0.04y y 2 y y y 2 y y y 2 2

ODE - Problem ROBER. 0.04y y 2 y y y 2 y y y 2 2 ODE - Problem ROBER II-10-1 10 Problem ROBER 10.1 General information The problem consists of a stiff system of 3 non-linear ordinary differential equations. It was proposed by H.H. Robertson in 1966 [Rob66].

More information

6.2 Mathematical description of the problem. i = m j (y j y i )=r 3 2

6.2 Mathematical description of the problem. i = m j (y j y i )=r 3 2 II-6-1 6 Pleiades problem 6.1 General information The problem consists of a nonsti system of 14 special second order dierential equations rewritten to rst order form, thus providing a nonsti system of

More information

Efficient numerical methods for the solution of stiff initial-value problems and differential algebraic equations

Efficient numerical methods for the solution of stiff initial-value problems and differential algebraic equations 10.1098/rspa.2003.1130 R EVIEW PAPER Efficient numerical methods for the solution of stiff initial-value problems and differential algebraic equations By J. R. Cash Department of Mathematics, Imperial

More information

Numerical Integration of Equations of Motion

Numerical Integration of Equations of Motion GraSMech course 2009-2010 Computer-aided analysis of rigid and flexible multibody systems Numerical Integration of Equations of Motion Prof. Olivier Verlinden (FPMs) Olivier.Verlinden@fpms.ac.be Prof.

More information

c 2004 Society for Industrial and Applied Mathematics

c 2004 Society for Industrial and Applied Mathematics SIAM J. SCI. COMPUT. Vol. 26, No. 2, pp. 359 374 c 24 Society for Industrial and Applied Mathematics A POSTERIORI ERROR ESTIMATION AND GLOBAL ERROR CONTROL FOR ORDINARY DIFFERENTIAL EQUATIONS BY THE ADJOINT

More information

INRIA Rocquencourt, Le Chesnay Cedex (France) y Dept. of Mathematics, North Carolina State University, Raleigh NC USA

INRIA Rocquencourt, Le Chesnay Cedex (France) y Dept. of Mathematics, North Carolina State University, Raleigh NC USA Nonlinear Observer Design using Implicit System Descriptions D. von Wissel, R. Nikoukhah, S. L. Campbell y and F. Delebecque INRIA Rocquencourt, 78 Le Chesnay Cedex (France) y Dept. of Mathematics, North

More information

An Implicit Runge Kutta Solver adapted to Flexible Multibody System Simulation

An Implicit Runge Kutta Solver adapted to Flexible Multibody System Simulation An Implicit Runge Kutta Solver adapted to Flexible Multibody System Simulation Johannes Gerstmayr 7. WORKSHOP ÜBER DESKRIPTORSYSTEME 15. - 18. March 2005, Liborianum, Paderborn, Germany Austrian Academy

More information

Time domain analog circuit simulation

Time domain analog circuit simulation Time domain analog circuit simulation J.G. Fijnvandraat Philips Research Laboratories Eindhoven S.H.M.J. Houben Magma Design Automation Eindhoven E.J.W. ter Maten Philips Research Laboratories Eindhoven

More information

ETNA Kent State University

ETNA Kent State University Electronic Transactions on Numerical Analysis. Volume 34, pp. 14-19, 2008. Copyrigt 2008,. ISSN 1068-9613. ETNA A NOTE ON NUMERICALLY CONSISTENT INITIAL VALUES FOR HIGH INDEX DIFFERENTIAL-ALGEBRAIC EQUATIONS

More information

19.2 Mathematical description of the problem. = f(p; _p; q; _q) G(p; q) T ; (II.19.1) g(p; q) + r(t) _p _q. f(p; v. a p ; q; v q ) + G(p; q) T ; a q

19.2 Mathematical description of the problem. = f(p; _p; q; _q) G(p; q) T ; (II.19.1) g(p; q) + r(t) _p _q. f(p; v. a p ; q; v q ) + G(p; q) T ; a q II-9-9 Slider rank 9. General Information This problem was contributed by Bernd Simeon, March 998. The slider crank shows some typical properties of simulation problems in exible multibody systems, i.e.,

More information

Stabilität differential-algebraischer Systeme

Stabilität differential-algebraischer Systeme Stabilität differential-algebraischer Systeme Caren Tischendorf, Universität zu Köln Elgersburger Arbeitstagung, 11.-14. Februar 2008 Tischendorf (Univ. zu Köln) Stabilität von DAEs Elgersburg, 11.-14.02.2008

More information

INTEGRATION OF THE EQUATIONS OF MOTION OF MULTIBODY SYSTEMS USING ABSOLUTE NODAL COORDINATE FORMULATION

INTEGRATION OF THE EQUATIONS OF MOTION OF MULTIBODY SYSTEMS USING ABSOLUTE NODAL COORDINATE FORMULATION INTEGRATION OF THE EQUATIONS OF MOTION OF MULTIBODY SYSTEMS USING ABSOLUTE NODAL COORDINATE FORMULATION Grzegorz ORZECHOWSKI *, Janusz FRĄCZEK * * The Institute of Aeronautics and Applied Mechanics, The

More information

ONE-STEP 4-STAGE HERMITE-BIRKHOFF-TAYLOR DAE SOLVER OF ORDER 12

ONE-STEP 4-STAGE HERMITE-BIRKHOFF-TAYLOR DAE SOLVER OF ORDER 12 CANADIAN APPLIED MATHEMATICS QUARTERLY Volume 16, Number 4, Winter 2008 ONE-STEP 4-STAGE HERMITE-BIRKHOFF-TAYLOR DAE SOLVER OF ORDER 12 TRUONG NGUYEN-BA, HAN HAO, HEMZA YAGOUB AND RÉMI VAILLANCOURT ABSTRACT.

More information

12 Chemical Akzo Nobel problem

12 Chemical Akzo Nobel problem II-12-1 12 Chemical Akzo Nobel problem 12.1 General information This IVP is a sti system of 6 non-linear DAEs of index 1 and has been taken from [Sto98]. The parallel-ivp-algorithm group of CWI contributed

More information

Differential-Algebraic Equations (DAEs)

Differential-Algebraic Equations (DAEs) Differential-Algebraic Equations (DAEs) L. T. Biegler Chemical Engineering Department Carnegie Mellon University Pittsburgh, PA 15213 biegler@cmu.edu http://dynopt.cheme.cmu.edu Introduction Simple Examples

More information

Lecture 10: Singular Perturbations and Averaging 1

Lecture 10: Singular Perturbations and Averaging 1 Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.243j (Fall 2003): DYNAMICS OF NONLINEAR SYSTEMS by A. Megretski Lecture 10: Singular Perturbations and

More information

The DAETS Differential-Algebraic Equation Solver

The DAETS Differential-Algebraic Equation Solver The DAETS Differential-Algebraic Equation Solver John Pryce 1 Ned Nedialkov 2 1 Dept of Information Systems, Cranfield U., UK j.d.pryce@ntlworld.com 2 Dept of Computing and Software, McMaster U., Canada

More information

Modelling Physical Phenomena

Modelling Physical Phenomena Modelling Physical Phenomena Limitations and Challenges of the Differential Algebraic Equations Approach Olaf Trygve Berglihn Department of Chemical Engineering 30. June 2010 2 Outline Background Classification

More information

A note on the uniform perturbation index 1

A note on the uniform perturbation index 1 Rostock. Math. Kolloq. 52, 33 46 (998) Subject Classification (AMS) 65L5 M. Arnold A note on the uniform perturbation index ABSTRACT. For a given differential-algebraic equation (DAE) the perturbation

More information

Lecture 13 - Wednesday April 29th

Lecture 13 - Wednesday April 29th Lecture 13 - Wednesday April 29th jacques@ucsdedu Key words: Systems of equations, Implicit differentiation Know how to do implicit differentiation, how to use implicit and inverse function theorems 131

More information

Technische Universität Berlin

Technische Universität Berlin Technische Universität Berlin Institut für Mathematik M7 - A Skateboard(v1.) Andreas Steinbrecher Preprint 216/8 Preprint-Reihe des Instituts für Mathematik Technische Universität Berlin http://www.math.tu-berlin.de/preprints

More information

Advanced methods for ODEs and DAEs. Lecture 9: Multistep methods/ Differential algebraic equations

Advanced methods for ODEs and DAEs. Lecture 9: Multistep methods/ Differential algebraic equations Advanced methods for ODEs and DAEs Lecture 9: Multistep methods/ Differential algebraic equations Bojana Rosic, 22. Juni 2016 PART I: MULTISTEP METHODS 22. Juni 2016 Bojana Rosić Advanced methods for ODEs

More information

Defect-based a posteriori error estimation for index-1 DAEs

Defect-based a posteriori error estimation for index-1 DAEs Defect-based a posteriori error estimation for index-1 DAEs W. Auzinger, H. Lehner, E. Weinmüller Institute for Analysis and Scientific Computing Vienna University of Technology Wiedner Hauptstrasse 8

More information

Advanced methods for ODEs and DAEs

Advanced methods for ODEs and DAEs Advanced methods for ODEs and DAEs Lecture 13: Overview Bojana Rosic, 13. Juli 2016 Dynamical system is a system that evolves over time possibly under external excitations: river flow, car, etc. The dynamics

More information

Ordinary differential equation II

Ordinary differential equation II Ordinary Differential Equations ISC-5315 1 Ordinary differential equation II 1 Some Basic Methods 1.1 Backward Euler method (implicit method) The algorithm looks like this: y n = y n 1 + hf n (1) In contrast

More information

Semi-implicit Krylov Deferred Correction Methods for Ordinary Differential Equations

Semi-implicit Krylov Deferred Correction Methods for Ordinary Differential Equations Semi-implicit Krylov Deferred Correction Methods for Ordinary Differential Equations Sunyoung Bu University of North Carolina Department of Mathematics CB # 325, Chapel Hill USA agatha@email.unc.edu Jingfang

More information

Numerical Methods for Differential Equations

Numerical Methods for Differential Equations Numerical Methods for Differential Equations Chapter 2: Runge Kutta and Linear Multistep methods Gustaf Söderlind and Carmen Arévalo Numerical Analysis, Lund University Textbooks: A First Course in the

More information

Solving Constrained Differential- Algebraic Systems Using Projections. Richard J. Hanson Fred T. Krogh August 16, mathalacarte.

Solving Constrained Differential- Algebraic Systems Using Projections. Richard J. Hanson Fred T. Krogh August 16, mathalacarte. Solving Constrained Differential- Algebraic Systems Using Projections Richard J. Hanson Fred T. Krogh August 6, 2007 www.vni.com mathalacarte.com Abbreviations and Terms ODE = Ordinary Differential Equations

More information

Numerical Algorithms for ODEs/DAEs (Transient Analysis)

Numerical Algorithms for ODEs/DAEs (Transient Analysis) Numerical Algorithms for ODEs/DAEs (Transient Analysis) Slide 1 Solving Differential Equation Systems d q ( x(t)) + f (x(t)) + b(t) = 0 dt DAEs: many types of solutions useful DC steady state: state no

More information

10.34: Numerical Methods Applied to Chemical Engineering. Lecture 19: Differential Algebraic Equations

10.34: Numerical Methods Applied to Chemical Engineering. Lecture 19: Differential Algebraic Equations 10.34: Numerical Methods Applied to Chemical Engineering Lecture 19: Differential Algebraic Equations 1 Recap Differential algebraic equations Semi-explicit Fully implicit Simulation via backward difference

More information

CHAPTER 10: Numerical Methods for DAEs

CHAPTER 10: Numerical Methods for DAEs CHAPTER 10: Numerical Methods for DAEs Numerical approaches for the solution of DAEs divide roughly into two classes: 1. direct discretization 2. reformulation (index reduction) plus discretization Direct

More information

The collocation method for ODEs: an introduction

The collocation method for ODEs: an introduction 058065 - Collocation Methods for Volterra Integral Related Functional Differential The collocation method for ODEs: an introduction A collocation solution u h to a functional equation for example an ordinary

More information

Ordinary Differential Equations

Ordinary Differential Equations Ordinary Differential Equations Introduction: first order ODE We are given a function f(t,y) which describes a direction field in the (t,y) plane an initial point (t 0,y 0 ) We want to find a function

More information

Logistic Map, Euler & Runge-Kutta Method and Lotka-Volterra Equations

Logistic Map, Euler & Runge-Kutta Method and Lotka-Volterra Equations Logistic Map, Euler & Runge-Kutta Method and Lotka-Volterra Equations S. Y. Ha and J. Park Department of Mathematical Sciences Seoul National University Sep 23, 2013 Contents 1 Logistic Map 2 Euler and

More information

An initialization subroutine for DAEs solvers: DAEIS

An initialization subroutine for DAEs solvers: DAEIS Computers and Chemical Engineering 25 (2001) 301 311 www.elsevier.com/locate/compchemeng An initialization subroutine for DAEs solvers: DAEIS B. Wu, R.E. White * Department of Chemical Engineering, Uniersity

More information

Inverse Dynamics of Flexible Manipulators

Inverse Dynamics of Flexible Manipulators Technical report from Automatic Control at Linköpings universitet Inverse Dynamics of Flexible Manipulators Stig Moberg, Sven Hanssen Division of Automatic Control E-mail: stig@isy.liu.se, soha@kth.se

More information

Stability analysis of differential algebraic systems

Stability analysis of differential algebraic systems Stability analysis of differential algebraic systems Volker Mehrmann TU Berlin, Institut für Mathematik with Vu Hoang Linh and Erik Van Vleck DFG Research Center MATHEON Mathematics for key technologies

More information

Index Reduction and Discontinuity Handling using Substitute Equations

Index Reduction and Discontinuity Handling using Substitute Equations Mathematical and Computer Modelling of Dynamical Systems, vol. 7, nr. 2, 2001, 173-187. Index Reduction and Discontinuity Handling using Substitute Equations G. Fábián, D.A. van Beek, J.E. Rooda Abstract

More information

SDE Coefficients. March 4, 2008

SDE Coefficients. March 4, 2008 SDE Coefficients March 4, 2008 The following is a summary of GARD sections 3.3 and 6., mainly as an overview of the two main approaches to creating a SDE model. Stochastic Differential Equations (SDE)

More information

EXISTENCE OF NEUTRAL STOCHASTIC FUNCTIONAL DIFFERENTIAL EQUATIONS WITH ABSTRACT VOLTERRA OPERATORS

EXISTENCE OF NEUTRAL STOCHASTIC FUNCTIONAL DIFFERENTIAL EQUATIONS WITH ABSTRACT VOLTERRA OPERATORS International Journal of Differential Equations and Applications Volume 7 No. 1 23, 11-17 EXISTENCE OF NEUTRAL STOCHASTIC FUNCTIONAL DIFFERENTIAL EQUATIONS WITH ABSTRACT VOLTERRA OPERATORS Zephyrinus C.

More information

EXTENSIONS OF THE HHT-α METHOD TO DIFFERENTIAL-ALGEBRAIC EQUATIONS IN MECHANICS

EXTENSIONS OF THE HHT-α METHOD TO DIFFERENTIAL-ALGEBRAIC EQUATIONS IN MECHANICS EXTENSIONS OF THE HHT-α METHOD TO DIFFERENTIAL-ALGEBRAIC EQUATIONS IN MECHANICS LAURENT O. JAY AND DAN NEGRUT Abstract. We present second-order extensions of the Hilber-Hughes-Taylor-α HHT-α) method for

More information

CHAPTER 5: Linear Multistep Methods

CHAPTER 5: Linear Multistep Methods CHAPTER 5: Linear Multistep Methods Multistep: use information from many steps Higher order possible with fewer function evaluations than with RK. Convenient error estimates. Changing stepsize or order

More information

A family of A-stable Runge Kutta collocation methods of higher order for initial-value problems

A family of A-stable Runge Kutta collocation methods of higher order for initial-value problems IMA Journal of Numerical Analysis Advance Access published January 3, 2007 IMA Journal of Numerical Analysis Pageof20 doi:0.093/imanum/drl00 A family of A-stable Runge Kutta collocation methods of higher

More information

On the stability regions of implicit linear multistep methods

On the stability regions of implicit linear multistep methods On the stability regions of implicit linear multistep methods arxiv:1404.6934v1 [math.na] 8 Apr 014 Lajos Lóczi April 9, 014 Abstract If we apply the accepted definition to determine the stability region

More information

A definition of stiffness for initial value problems for ODEs SciCADE 2011, University of Toronto, hosted by the Fields Institute, Toronto, Canada

A definition of stiffness for initial value problems for ODEs SciCADE 2011, University of Toronto, hosted by the Fields Institute, Toronto, Canada for initial value problems for ODEs SciCADE 2011, University of Toronto, hosted by the Fields Institute, Toronto, Canada Laurent O. Jay Joint work with Manuel Calvo (University of Zaragoza, Spain) Dedicated

More information

Numerical Treatment of Unstructured. Differential-Algebraic Equations. with Arbitrary Index

Numerical Treatment of Unstructured. Differential-Algebraic Equations. with Arbitrary Index Numerical Treatment of Unstructured Differential-Algebraic Equations with Arbitrary Index Peter Kunkel (Leipzig) SDS2003, Bari-Monopoli, 22. 25.06.2003 Outline Numerical Treatment of Unstructured Differential-Algebraic

More information

Numerical Methods for Differential Equations

Numerical Methods for Differential Equations Numerical Methods for Differential Equations Chapter 2: Runge Kutta and Multistep Methods Gustaf Söderlind Numerical Analysis, Lund University Contents V4.16 1. Runge Kutta methods 2. Embedded RK methods

More information

Lecture 4: Numerical solution of ordinary differential equations

Lecture 4: Numerical solution of ordinary differential equations Lecture 4: Numerical solution of ordinary differential equations Department of Mathematics, ETH Zürich General explicit one-step method: Consistency; Stability; Convergence. High-order methods: Taylor

More information

Mathematical Computing

Mathematical Computing IMT2b2β Department of Mathematics University of Ruhuna A.W.L. Pubudu Thilan Differential Equations Types of Differential Equations Differential equations can basically be classified as ordinary differential

More information

Part 1: Overview of Ordinary Dierential Equations 1 Chapter 1 Basic Concepts and Problems 1.1 Problems Leading to Ordinary Dierential Equations Many scientic and engineering problems are modeled by systems

More information

Optimal control of nonstructured nonlinear descriptor systems

Optimal control of nonstructured nonlinear descriptor systems Optimal control of nonstructured nonlinear descriptor systems TU Berlin DFG Research Center Institut für Mathematik MATHEON Workshop Elgersburg 19.02.07 joint work with Peter Kunkel Overview Applications

More information

369 Nigerian Research Journal of Engineering and Environmental Sciences 2(2) 2017 pp

369 Nigerian Research Journal of Engineering and Environmental Sciences 2(2) 2017 pp 369 Nigerian Research Journal of Engineering and Environmental Sciences 2(2) 27 pp. 369-374 Original Research Article THIRD DERIVATIVE MULTISTEP METHODS WITH OPTIMIZED REGIONS OF ABSOLUTE STABILITY FOR

More information

Defect-based a-posteriori error estimation for implicit ODEs and DAEs

Defect-based a-posteriori error estimation for implicit ODEs and DAEs 1 / 24 Defect-based a-posteriori error estimation for implicit ODEs and DAEs W. Auzinger Institute for Analysis and Scientific Computing Vienna University of Technology Workshop on Innovative Integrators

More information

Geometric Numerical Integration

Geometric Numerical Integration Geometric Numerical Integration (Ernst Hairer, TU München, winter 2009/10) Development of numerical ordinary differential equations Nonstiff differential equations (since about 1850), see [4, 2, 1] Adams

More information

Second Derivative Generalized Backward Differentiation Formulae for Solving Stiff Problems

Second Derivative Generalized Backward Differentiation Formulae for Solving Stiff Problems IAENG International Journal of Applied Mathematics, 48:, IJAM_48 Second Derivative Generalized Bacward Differentiation Formulae for Solving Stiff Problems G C Nwachuwu,TOor Abstract Second derivative generalized

More information

Differential Equation Types. Moritz Diehl

Differential Equation Types. Moritz Diehl Differential Equation Types Moritz Diehl Overview Ordinary Differential Equations (ODE) Differential Algebraic Equations (DAE) Partial Differential Equations (PDE) Delay Differential Equations (DDE) Ordinary

More information

Polytechnic Institute of NYU MA 2132 Final Practice Answers Fall 2012

Polytechnic Institute of NYU MA 2132 Final Practice Answers Fall 2012 Polytechnic Institute of NYU MA Final Practice Answers Fall Studying from past or sample exams is NOT recommended. If you do, it should be only AFTER you know how to do all of the homework and worksheet

More information

Consistency and Convergence

Consistency and Convergence Jim Lambers MAT 77 Fall Semester 010-11 Lecture 0 Notes These notes correspond to Sections 1.3, 1.4 and 1.5 in the text. Consistency and Convergence We have learned that the numerical solution obtained

More information

Research Article On the Numerical Solution of Differential-Algebraic Equations with Hessenberg Index-3

Research Article On the Numerical Solution of Differential-Algebraic Equations with Hessenberg Index-3 Discrete Dynamics in Nature and Society Volume, Article ID 474, pages doi:.55//474 Research Article On the Numerical Solution of Differential-Algebraic Equations with Hessenberg Inde- Melike Karta and

More information

Ordinary Differential Equations I

Ordinary Differential Equations I Ordinary Differential Equations I CS 205A: Mathematical Methods for Robotics, Vision, and Graphics Justin Solomon CS 205A: Mathematical Methods Ordinary Differential Equations I 1 / 27 Theme of Last Three

More information

Solving PDEs with PGI CUDA Fortran Part 4: Initial value problems for ordinary differential equations

Solving PDEs with PGI CUDA Fortran Part 4: Initial value problems for ordinary differential equations Solving PDEs with PGI CUDA Fortran Part 4: Initial value problems for ordinary differential equations Outline ODEs and initial conditions. Explicit and implicit Euler methods. Runge-Kutta methods. Multistep

More information

2tdt 1 y = t2 + C y = which implies C = 1 and the solution is y = 1

2tdt 1 y = t2 + C y = which implies C = 1 and the solution is y = 1 Lectures - Week 11 General First Order ODEs & Numerical Methods for IVPs In general, nonlinear problems are much more difficult to solve than linear ones. Unfortunately many phenomena exhibit nonlinear

More information

Linear Systems Theory

Linear Systems Theory ME 3253 Linear Systems Theory Review Class Overview and Introduction 1. How to build dynamic system model for physical system? 2. How to analyze the dynamic system? -- Time domain -- Frequency domain (Laplace

More information

MATH 251 Examination II April 7, 2014 FORM A. Name: Student Number: Section:

MATH 251 Examination II April 7, 2014 FORM A. Name: Student Number: Section: MATH 251 Examination II April 7, 2014 FORM A Name: Student Number: Section: This exam has 12 questions for a total of 100 points. In order to obtain full credit for partial credit problems, all work must

More information

consideration, is indispensable. Due to the great number of restarts, one for each split-step time interval, it is particularly important to use integ

consideration, is indispensable. Due to the great number of restarts, one for each split-step time interval, it is particularly important to use integ Gauss-Seidel Iteration for Sti ODEs from Chemical Kinetics J.G. Verwer CWI P.O. Box 94079, 1090 GB Amsterdam, The Netherlands Abstract A simple Gauss-Seidel technique is proposed which exploits the special

More information

Numerical Analysis Solution of Algebraic Equation (non-linear equation) 1- Trial and Error. 2- Fixed point

Numerical Analysis Solution of Algebraic Equation (non-linear equation) 1- Trial and Error. 2- Fixed point Numerical Analysis Solution of Algebraic Equation (non-linear equation) 1- Trial and Error In this method we assume initial value of x, and substitute in the equation. Then modify x and continue till we

More information

Differential Equations

Differential Equations Differential Equations Overview of differential equation! Initial value problem! Explicit numeric methods! Implicit numeric methods! Modular implementation Physics-based simulation An algorithm that

More information

Multistage Methods I: Runge-Kutta Methods

Multistage Methods I: Runge-Kutta Methods Multistage Methods I: Runge-Kutta Methods Varun Shankar January, 0 Introduction Previously, we saw that explicit multistep methods (AB methods) have shrinking stability regions as their orders are increased.

More information

25. Chain Rule. Now, f is a function of t only. Expand by multiplication:

25. Chain Rule. Now, f is a function of t only. Expand by multiplication: 25. Chain Rule The Chain Rule is present in all differentiation. If z = f(x, y) represents a two-variable function, then it is plausible to consider the cases when x and y may be functions of other variable(s).

More information

Efficient corrector iteration for DAE time integration in multibody dynamics

Efficient corrector iteration for DAE time integration in multibody dynamics Efficient corrector iteration for DAE time integration in multibody dynamics M. Arnold a,1, A. Fuchs b, C. Führer c a Martin Luther University Halle Wittenberg, Department of Mathematics and Computer Science,

More information

Ordinary Differential Equation Theory

Ordinary Differential Equation Theory Part I Ordinary Differential Equation Theory 1 Introductory Theory An n th order ODE for y = y(t) has the form Usually it can be written F (t, y, y,.., y (n) ) = y (n) = f(t, y, y,.., y (n 1) ) (Implicit

More information

A relaxation of the strangeness index

A relaxation of the strangeness index echnical report from Automatic Control at Linköpings universitet A relaxation of the strangeness index Henrik idefelt, orkel Glad Division of Automatic Control E-mail: tidefelt@isy.liu.se, torkel@isy.liu.se

More information

Solving systems of ODEs with Matlab

Solving systems of ODEs with Matlab Solving systems of ODEs with Matlab James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 20, 2013 Outline 1 Systems of ODEs 2 Setting Up

More information

Differential-Algebraic Equations (DAEs) Differential-algebraische Gleichungen

Differential-Algebraic Equations (DAEs) Differential-algebraische Gleichungen Differential-Algebraic Equations (DAEs) Differential-algebraische Gleichungen Bernd Simeon Vorlesung Wintersemester 2012/13 TU Kaiserslautern, Fachbereich Mathematik 1. Examples of DAEs 2. Theory of DAEs

More information

SPECIALIZED RUNGE-KUTTA METHODS FOR INDEX 2 DIFFERENTIAL-ALGEBRAIC EQUATIONS

SPECIALIZED RUNGE-KUTTA METHODS FOR INDEX 2 DIFFERENTIAL-ALGEBRAIC EQUATIONS MATHEMATICS OF COMPUTATION Volume 75, Number 254, Pages 641 654 S 0025-5718(05)01809-0 Article electronically published on December 19, 2005 SPECIALIZED RUNGE-KUTTA METHODS FOR INDEX 2 DIFFERENTIAL-ALGEBRAIC

More information

3.4 The Chain Rule. F (x) = f (g(x))g (x) Alternate way of thinking about it: If y = f(u) and u = g(x) where both are differentiable functions, then

3.4 The Chain Rule. F (x) = f (g(x))g (x) Alternate way of thinking about it: If y = f(u) and u = g(x) where both are differentiable functions, then 3.4 The Chain Rule To find the derivative of a function that is the composition of two functions for which we already know the derivatives, we can use the Chain Rule. The Chain Rule: Suppose F (x) = f(g(x)).

More information

Southern Methodist University.

Southern Methodist University. Title: Continuous extensions Name: Lawrence F. Shampine 1, Laurent O. Jay 2 Affil./Addr. 1: Department of Mathematics Southern Methodist University Dallas, TX 75275 USA Phone: +1 (972) 690-8439 E-mail:

More information

On The Numerical Solution of Differential-Algebraic Equations(DAES) with Index-3 by Pade Approximation

On The Numerical Solution of Differential-Algebraic Equations(DAES) with Index-3 by Pade Approximation Appl. Math. Inf. Sci. Lett., No. 2, 7-23 (203) 7 Applied Mathematics & Information Sciences Letters An International Journal On The Numerical Solution of Differential-Algebraic Equations(DAES) with Index-3

More information

Chapter 6 Nonlinear Systems and Phenomena. Friday, November 2, 12

Chapter 6 Nonlinear Systems and Phenomena. Friday, November 2, 12 Chapter 6 Nonlinear Systems and Phenomena 6.1 Stability and the Phase Plane We now move to nonlinear systems Begin with the first-order system for x(t) d dt x = f(x,t), x(0) = x 0 In particular, consider

More information

Four Point Gauss Quadrature Runge Kuta Method Of Order 8 For Ordinary Differential Equations

Four Point Gauss Quadrature Runge Kuta Method Of Order 8 For Ordinary Differential Equations International journal of scientific and technical research in engineering (IJSTRE) www.ijstre.com Volume Issue ǁ July 206. Four Point Gauss Quadrature Runge Kuta Method Of Order 8 For Ordinary Differential

More information

Investigation on the Most Efficient Ways to Solve the Implicit Equations for Gauss Methods in the Constant Stepsize Setting

Investigation on the Most Efficient Ways to Solve the Implicit Equations for Gauss Methods in the Constant Stepsize Setting Applied Mathematical Sciences, Vol. 12, 2018, no. 2, 93-103 HIKARI Ltd, www.m-hikari.com https://doi.org/10.12988/ams.2018.711340 Investigation on the Most Efficient Ways to Solve the Implicit Equations

More information

NAG Library Chapter Introduction d02 Ordinary Differential Equations

NAG Library Chapter Introduction d02 Ordinary Differential Equations NAG Library Chapter Introduction d02 Ordinary Differential Equations Contents 1 Scope of the Chapter.... 2 2 Background to the Problems... 2 2.1 Initial Value Problems... 3 2.2 Boundary Value Problems...

More information

Method of Lines. Received April 20, 2009; accepted July 9, 2009

Method of Lines. Received April 20, 2009; accepted July 9, 2009 Method of Lines Samir Hamdi, William E. Schiesser and Graham W. Griffiths * Ecole Polytechnique, France; Lehigh University, USA; City University,UK. Received April 20, 2009; accepted July 9, 2009 The method

More information

Arbitrary order Krylov deferred correction methods for differential algebraic equations

Arbitrary order Krylov deferred correction methods for differential algebraic equations Journal of Computational Physics 221 (2007) 739 760 www.elsevier.com/locate/jcp Arbitrary order Krylov deferred correction methods for differential algebraic equations Jingfang Huang *,1, Jun Jia 1, Michael

More information

Math 241, Exam 1 Information.

Math 241, Exam 1 Information. Math 241, Exam 1 Information. 2/13/13, LC 310, 11:15-12:05. Exam 1 will be based on: Sections 12.1-12.5, 14.2. The corresponding assigned homework problems (see http://www.math.sc.edu/ boylan/sccourses/241sp13/241.html)

More information

Automatic Differentiation and Implicit Differential Equations

Automatic Differentiation and Implicit Differential Equations Automatic Differentiation and Implicit Differential Equations Stephen L. Campbell Richard Hollenbeck Abstract Many physical processes are most naturally and easily modeled as mixed systems of differential

More information

PRECONDITIONING AND PARALLEL IMPLEMENTATION OF IMPLICIT RUNGE-KUTTA METHODS.

PRECONDITIONING AND PARALLEL IMPLEMENTATION OF IMPLICIT RUNGE-KUTTA METHODS. PRECONDITIONING AND PARALLEL IMPLEMENTATION OF IMPLICIT RUNGE-KUTTA METHODS. LAURENT O. JAY Abstract. A major problem in obtaining an efficient implementation of fully implicit Runge- Kutta IRK methods

More information

Modified Defect Correction Algorithms for ODEs. Part II: Stiff Initial Value Problems

Modified Defect Correction Algorithms for ODEs. Part II: Stiff Initial Value Problems Modified Defect Correction Algorithms for ODEs. Part II: Stiff Initial Value Problems Winfried Auzinger Harald Hofstätter Wolfgang Kreuzer Ewa Weinmüller to appear in Numerical Algorithms ANUM Preprint

More information

Ordinary Differential Equations II

Ordinary Differential Equations II Ordinary Differential Equations II CS 205A: Mathematical Methods for Robotics, Vision, and Graphics Justin Solomon CS 205A: Mathematical Methods Ordinary Differential Equations II 1 / 33 Almost Done! Last

More information

Differential Equations

Differential Equations Differential Equations Definitions Finite Differences Taylor Series based Methods: Euler Method Runge-Kutta Methods Improved Euler, Midpoint methods Runge Kutta (2nd, 4th order) methods Predictor-Corrector

More information

Review: control, feedback, etc. Today s topic: state-space models of systems; linearization

Review: control, feedback, etc. Today s topic: state-space models of systems; linearization Plan of the Lecture Review: control, feedback, etc Today s topic: state-space models of systems; linearization Goal: a general framework that encompasses all examples of interest Once we have mastered

More information

1.2 Derivation. d p f = d p f(x(p)) = x fd p x (= f x x p ). (1) Second, g x x p + g p = 0. d p f = f x g 1. The expression f x gx

1.2 Derivation. d p f = d p f(x(p)) = x fd p x (= f x x p ). (1) Second, g x x p + g p = 0. d p f = f x g 1. The expression f x gx PDE-constrained optimization and the adjoint method Andrew M. Bradley November 16, 21 PDE-constrained optimization and the adjoint method for solving these and related problems appear in a wide range of

More information

Delay Differential-Algebraic Equations

Delay Differential-Algebraic Equations ECHNISCHE UNIVERSIÄ BERLIN Analysis and Numerical Solution of Linear Delay Differential-Algebraic Equations Ha Phi and Volker Mehrmann Preprint 214/42 Preprint-Reihe des Instituts für Mathematik echnische

More information

NUMERICAL SOLUTION OF ODE IVPs. Overview

NUMERICAL SOLUTION OF ODE IVPs. Overview NUMERICAL SOLUTION OF ODE IVPs 1 Quick review of direction fields Overview 2 A reminder about and 3 Important test: Is the ODE initial value problem? 4 Fundamental concepts: Euler s Method 5 Fundamental

More information

Iterative solution of SPARK methods applied to DAEs

Iterative solution of SPARK methods applied to DAEs Numerical Algorithms 31: 171 191 2002 2002 Kluwer Academic Publishers Printed in the Netherlands Iterative solution of SPARK methods applied to DAEs Laurent O Jay Department of Mathematics 14 MacLean Hall

More information

Ordinary Differential Equations I

Ordinary Differential Equations I Ordinary Differential Equations I CS 205A: Mathematical Methods for Robotics, Vision, and Graphics Justin Solomon CS 205A: Mathematical Methods Ordinary Differential Equations I 1 / 32 Theme of Last Few

More information

Ordinary Differential Equations (ODEs) Background. Video 17

Ordinary Differential Equations (ODEs) Background. Video 17 Ordinary Differential Equations (ODEs) Background Video 17 Daniel J. Bodony Department of Aerospace Engineering University of Illinois at Urbana-Champaign In this video you will learn... 1 What ODEs are

More information

Blended implementation of block implicit methods for ODEs

Blended implementation of block implicit methods for ODEs Applied Numerical Mathematics 42 (2002) 29 45 www.elsevier.com/locate/apnum Blended implementation of block implicit methods for ODEs Luigi Brugnano, Cecilia Magherini Dipartimento di Matematica U. Dini,

More information

Mathematics for chemical engineers. Numerical solution of ordinary differential equations

Mathematics for chemical engineers. Numerical solution of ordinary differential equations Mathematics for chemical engineers Drahoslava Janovská Numerical solution of ordinary differential equations Initial value problem Winter Semester 2015-2016 Outline 1 Introduction 2 One step methods Euler

More information

Specification of PSIDE

Specification of PSIDE Specification of PSIDE Jacques J.B. de Swart CWI, PO Box 94079, 1090 GB Amsterdam, The Netherlands (Jacques.de.Swart@cwi.nl) & Paragon Decision Technology, PO Box 3277, 2001 DG Haarlem, The Netherlands

More information