Skip to content

mbudisic/koopman

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

97 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

KOOPMAN MODE DECOMPOSITION

Matlab toolbox for Koopman mode decomposition.

By Marko Budisic
Department of Mathematics, University of Wisconsin - Madison
[email protected]
http://mbudisic.wordpress.com

Koopman mode decomposition is a method for data analysis that identifies fixed shapes (modes) which evolve by exponential growth/decay + oscillation. For a (very) basic overview and comparison with Proper Orthogonal Decomposition, see a blog post on Marko's website. For a more in-depth overview, please see references Mezic 2013 and Budisic et al. 2012 at the bottom of this file.

The goal of this toolbox is to collect several common Koopman mode decomposition algorithms, in a documented, transparent code.

The code is licensed under a BSD3 license, found in the accompanying LICENSE file.

Installation

Place the toolbox on the drive, e.g., to ~/MatlabToolbox/koopman, and add its top folder to Matlab path.

>>> addpath("~/MatlabToolbox/koopman")
>>> savepath

Then functions from the toolbox can be accessed via namespace "koopman". Executing

>> doc koopman

should list the contents of the toolbox.

Use

Basic syntax

Currently, the toolbox implements three algorithms based on Dynamic Mode Decomposition:

  • DMD by Tu et al. 2014 which uses SVD decomposition of input snapshots,
  • DMD by Duke et al. 2012 which uses QR decomposition of input snapshots,
  • DMD by Chen et al. 2012 which uses SVD decomposition of the square of input snapshots, and
  • direct Koopman mode decomposition based on Discrete Fourier Transform (FFT) of input data.

All functions have a similar syntax. Let's suppose that a Snapshots matrix holds a multidimensional data sampled from a process, with each column corresponding to a snapshot at a single time instance, and snapshots taken at a time resolution of dt.

To compute Koopman modes using the provided algorithms, run either:

>> [Spectrum, Modes, Amplitudes] = koopman.DMD( Snapshots, dt )
>> [Spectrum, Modes, Amplitudes] = koopman.DMD_Duke( Snapshots, dt )
>> [Spectrum, Modes, Amplitudes] = koopman.DMD_Snapshot( Snapshots, dt )
>> [Spectrum, Modes, Amplitudes] = koopman.KDFT( Snapshots, dt )

Output variables are

  • Spectrum, a vector of complex frequencies, where positive real parts indicate growing modes, negative decaying modes, and imaginary parts give oscillation frequencies
  • Modes, matrix of spatial shapes, where complex-valued column corresponds to an element of Spectrum,
  • Amplitudes, a vector of complex amplitudes that minimize the L2 distance between the input data, and the reconstruction, due to Jovanovic et al. 2014

For further documentation, see help lines for individual functions in the koopman namespace.

Demonstration script

A demo (and validation) for the toolbox is located in koopman/validate folder. Once the namespace +koopman is in the path, demo can be run by

>> cd [toolboxfolder]/validate
>> DemoKoopmanModes

Demo implements an exponentially growing mode used by Duke et al. Spatial shape of the data set is fixed in demo, while the time behavior is set via arguments to the demo function.

Duke data with decay rate -0.1 and angular frequency 21:

Input visualization

Data for -0.1+21i set

Output

Results for -0.1+21i set

Duke data with no decay and angular frequency 20:

Input visualization

Data for 0+20i set

Output

Results for 0+20i set

References

About

Koopman Mode Decomposition

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages