implementation of implicit integrators in matlab octave
play

Implementation of implicit integrators in Matlab/Octave Marc R. - PowerPoint PPT Presentation

Implementation of implicit integrators in Matlab/Octave Marc R. Roussel November 21, 2019 Marc R. Roussel Implicit integrators November 21, 2019 1 / 6 Passing parameters to functions Matlab functions take formal arguments, but sometimes we


  1. Implementation of implicit integrators in Matlab/Octave Marc R. Roussel November 21, 2019 Marc R. Roussel Implicit integrators November 21, 2019 1 / 6

  2. Passing parameters to functions Matlab functions take formal arguments, but sometimes we need to pass a parameter to a function in a way that is invisible, perhaps because the function is to be used as a function argument itself. Method 1: Declare the parameter to be global . global k m Put this line both in the main script before assigning values to the parameters, and in the function. Method 2: Anonymous functions @(x)f(x,k) This creates a new function of x from a function that actually depends on both x and k . Marc R. Roussel Implicit integrators November 21, 2019 2 / 6

  3. Iterative solution method Equations to solve for ( x j +1 , p j +1 ): = H ( x j , p j +1 ) − H ( x j , p j ) x j +1 − x j h p j +1 − p j p j +1 − p j = − H ( x j +1 , p j +1 ) − H ( x j , p j +1 ) h x j +1 − x j Rewrite in the Euler-like form x j +1 = x j + hH ( x j , p j +1 ) − H ( x j , p j ) p j +1 − p j p j +1 = p j − hH ( x j +1 , p j +1 ) − H ( x j , p j +1 ) x j +1 − x j Marc R. Roussel Implicit integrators November 21, 2019 3 / 6

  4. Iterative solution method x j +1 = x j + hH ( x j , p j +1 ) − H ( x j , p j ) (1a) p j +1 − p j p j +1 = p j − hH ( x j +1 , p j +1 ) − H ( x j , p j +1 ) (1b) x j +1 − x j Problem: x j +1 and p j +1 both appear in the right-hand sides of these equations. Generate a guess for x j +1 and p j +1 using an explicit method, then substitute this guess into equations (1) to refine this approximate solution. Iterate until the variables change negligibly from one iteration to the next. Marc R. Roussel Implicit integrators November 21, 2019 4 / 6

  5. Using fsolve() Instead of solving the equations yourself by iteration, you can use the Matlab/Octave function fsolve() . Warning: In Matlab, fsolve() is part of the Optimization Toolbox. It may not be available in a “vanilla” Matlab installation. Syntax: v = fsolve(f,v0,options) Assumption: you want to solve the equation f(v) = 0 , where v is a vector containing your variables. v0 is an initial guess vector. On output, v is the solution. Marc R. Roussel Implicit integrators November 21, 2019 5 / 6

  6. fsolve options The options used by fsolve have different names in Matlab and Octave. FunctionTolerance (Matlab)/ TolFun (Octave) is the maximum value of f required for the algorithm to stop. StepTolerance (Matlab)/ TolX (Octave) is the maximum difference between one iterate and the next for the algorithm to stop. An option structure is created by optimset() . opts = optimset(’TolX’,1e-8,’TolFun’,1e-4); An option structure (e.g. opts above) is passed as the final argument of fsolve() . Marc R. Roussel Implicit integrators November 21, 2019 6 / 6

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend