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
, for , , by a (reduced) orthogonal factorization of the Hankel matrix of Markov parameterswhere
is the reduced order. See [Kun78].In order for the identified model to be stable, the Markov parameters decay substantially within
samples. Stability is enforced automatically through zero-padding and can be deactivated by settingforce_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.
where
and are the number of left and right tangential directions and an are the left and right projectors, respectively. See [KG16].- data[source]¶
NumPy array
that contains the first 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
, where is the number of inputs and is the number of outputs of the system.
- 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
orNumPy array
of shape(p, m)
. The zeroth Markov parameter that defines the feedthrough of the realization. Defaults toNone
.
Methods
Compute the error bounds for all possible reduction orders.
Construct the right/input projector
.Construct the left/output projector
.Construct a minimal realization.
- 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
-error of the Markov parameters is bounded bywhere
is the reduced realization of order , is the -th Markov parameter and is the first neglected singular value of the Hankel matrix of Markov parameters.With tangential projection, the bound is given by
where
is the matrix of horizontally or vertically stacked Markov parameters, respectively. See [KG16] (Thm. 3.4) for details.
- 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
isNone
, maximum order iftol
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
.