pymor.reductors.era

Module Contents

class pymor.reductors.era.ERAReductor(data, sampling_time, force_stability=True, feedthrough=None)[source]

Bases: pymor.core.cache.CacheableObject

Eigensystem Realization Algorithm reductor.

Constructs a (reduced) realization from a sequence of Markov parameters hi, for i{1,,2s1}, sN, by a (reduced) orthogonal factorization of the Hankel matrix of Markov parameters

H=[h1h2hsh2h3hs+1hshs+1h2s1]=UΣVTRps×ms,

where rmin{ms,ps} is the reduced order. See [Kun78].

In order for the identified model to be stable, the Markov parameters decay substantially within s samples. Stability is enforced automatically through zero-padding and can be deactivated by setting force_stability=False.

For a large number of inputs and/or outputs, the factorization of the Hankel matrix can be accelerated by tangentially projecting the Markov parameters to reduce the dimension of the Hankel matrix, i.e.

h^i=WLThiWR,

where nLp and nRm are the number of left and right tangential directions and WLRp×nL an WRRm×nR are the left and right projectors, respectively. See [KG16].

data[source]

NumPy array that contains the first n Markov parameters of an LTI system. Has to be one- or three-dimensional with either:

data.shape == (n,)

for scalar-valued Markov parameters or:

data.shape == (n, p, m)

for matrix-valued Markov parameters of dimension p×m, where m is the number of inputs and p is the number of outputs of the system.

sampling_time[source]

A number that denotes the sampling time of the system (in seconds).

force_stability[source]

Whether the Markov parameters are zero-padded to double the length in order to enforce Kung’s stability assumption. See [Kun78]. Defaults to True.

feedthrough[source]

(Optional) Operator or NumPy array of shape (p, m). The zeroth Markov parameter that defines the feedthrough of the realization. Defaults to None.

Methods

error_bounds

Compute the error bounds for all possible reduction orders.

input_projector

Construct the right/input projector W2.

output_projector

Construct the left/output projector W1.

reduce

Construct a minimal realization.

cache_region = 'memory'[source]
error_bounds(num_left=None, num_right=None)[source]

Compute the error bounds for all possible reduction orders.

Without tangential projection of the Markov parameters, the L2-error of the Markov parameters ϵ is bounded by

ϵ2=i=12s1CrAri1BrhiF2σr+1(H)r+p+m,

where (Ar,Br,Cr) is the reduced realization of order r, hiRp×m is the i-th Markov parameter and σr+1(H) is the first neglected singular value of the Hankel matrix of Markov parameters.

With tangential projection, the bound is given by

ϵ2=i=12s1CrAri1BrhiF24(i=nL+1pσi2(ΘL)+i=nR+1mσi2(ΘR))+2σr+1(H)r+nL+nR,

where ΘL,ΘR is the matrix of horizontally or vertically stacked Markov parameters, respectively. See [KG16] (Thm. 3.4) for details.

input_projector(num_right)[source]

Construct the right/input projector W2.

output_projector(num_left)[source]

Construct the left/output projector W1.

reduce(r=None, tol=None, num_left=None, num_right=None)[source]

Construct a minimal realization.

Parameters

r

Order of the reduced model if tol is None, maximum order if tol is specified.

tol

Tolerance for the error bound.

num_left

Number of left (output) directions for tangential projection.

num_right

Number of right (input) directions for tangential projection.

Returns

rom

Reduced-order LTIModel.