m (Rearranged first new picture.) |
m (Replaced old pictures by new, deleted author from citation part.) |
||
Line 86: | Line 86: | ||
with <math>A_{\varepsilon, k} = \begin{bmatrix} a_{k} & 0 \\ 0 & a_{k} \end{bmatrix}</math>, <math>A_{0, k} = \begin{bmatrix} 0 & b_{k} \\ -b_{k} & 0 \end{bmatrix}</math>, <math>B_{k} = \begin{bmatrix} 2 \\ 0 \end{bmatrix}</math>, <math>C_{k} = \begin{bmatrix} c_{k}, & d_{k} \end{bmatrix}</math>. |
with <math>A_{\varepsilon, k} = \begin{bmatrix} a_{k} & 0 \\ 0 & a_{k} \end{bmatrix}</math>, <math>A_{0, k} = \begin{bmatrix} 0 & b_{k} \\ -b_{k} & 0 \end{bmatrix}</math>, <math>B_{k} = \begin{bmatrix} 2 \\ 0 \end{bmatrix}</math>, <math>C_{k} = \begin{bmatrix} c_{k}, & d_{k} \end{bmatrix}</math>. |
||
− | <figure id="fig2">[[ |
+ | <figure id="fig2">[[File:synth_freq_resp.png|600px|thumb|right|<caption>Frequency response of synthetic parametric system for different parameter values.</caption>]]</figure> |
===Numerical Values=== |
===Numerical Values=== |
||
− | <figure id="fig3">[[ |
+ | <figure id="fig3">[[File:synth_hsv.png|600px|thumb|right|<caption>Hankel singular values of synthetic parametric system for different parameter values.</caption>]]</figure> |
We construct a system of order <math>N = 100</math>. |
We construct a system of order <math>N = 100</math>. |
||
Line 210: | Line 210: | ||
To cite this benchmark and its data: |
To cite this benchmark and its data: |
||
− | :: |
+ | :: '''Synthetic parametric model'''. hosted at MORwiki - Model Order Reduction Wiki, 2005. http://modelreduction.org/index.php/Synthetic_parametric_model |
@MISC{morwiki_synth_pmodel, |
@MISC{morwiki_synth_pmodel, |
||
− | author = {<nowiki>{The MORwiki Community}</nowiki>}, |
||
title = {Synthetic parametric model}, |
title = {Synthetic parametric model}, |
||
howpublished = {hosted at {MORwiki} -- Model Order Reduction Wiki}, |
howpublished = {hosted at {MORwiki} -- Model Order Reduction Wiki}, |
Revision as of 10:07, 6 April 2018
Description
On this page you will find a synthetic parametric model with one parameter for which one can easily experiment with different system orders, values of the parameter, as well as different poles and residues (see xx--CrossReference--dft--fig1--xx). Also, the decay of the Hankel singular values can be changed indirectly through the parameter.
Model
We consider a dynamical system in the frequency domain given by its pole-residue form of the transfer function
with the poles of the system,
the imaginary unit, and
the residues.
The parameter
is used to scale the real part of the system poles.
We can write down the state-space realization of the system's transfer function as
with the corresponding system matrices ,
,
, and
given by
One notices that the system matrices and
have complex entries.
For rewriting the system with real matrices, we assume that
is even,
, and that all system poles are complex and ordered in complex conjugate pairs, i.e.,
Corresponding to the system poles, also the residues are written in complex conjugate pairs
Using this, the realization of the dynamical system can be written with matrices having real entries by
with ,
,
,
.
Numerical Values
We construct a system of order .
The numerical values for the different variables are
equally spaced in the interval
,
equally spaced in the interval
,
,
,
.
The frequency response of the transfer function is plotted for parameter values
in xx--CrossReference--dft--fig2--xx.
Other interesting plots result for small values of the parameter .
For example, for
or
, the peaks in the frequency response become more pronounced, since the poles move closer to the imaginary axis.
For , we also plotted the decay of the Hankel singular values in xx--CrossReference--dft--fig3--xx.
Notice that for small values of the parameter, the decay of the Hankel singular values is very slow.
Data and Scripts
This benchmark includes one data set. The matrices can be downloaded in the MatrixMarket format:
- Synth_matrices.tar.gz (1.28 kB)
The matrix name is used as an extension of the matrix file.
System data of arbitrary order can be generated in MATLAB or Octave by the following script:
N = 100; % Order of the resulting system.
% Set coefficients.
a = -linspace(1e1, 1e3, N/2).';
b = linspace(1e1, 1e3, N/2).';
c = ones(N/2, 1);
d = zeros(N/2, 1);
% Build 2x2 submatrices.
aa(1:2:N-1, 1) = a;
aa(2:2:N, 1) = a;
bb(1:2:N-1, 1) = b;
bb(2:2:N-2, 1) = 0;
% Set up system matrices.
Ae = spdiags(aa, 0, N, N);
A0 = spdiags([0; bb], 1, N, N) + spdiags(-bb, -1, N, N);
B = 2 * sparse(mod(1:N, 2)).';
C(1:2:N-1) = c.';
C(2:2:N) = d.';
C = sparse(C);
Beside that, the plots in xx--CrossReference--dft--fig1--xx and xx--CrossReference--dft--fig2--xx can be generated in MATLAB and Octave using the following script:
% Get residues of the system.
r(1:2:n-1, 1) = c + 1j * d;
r(2:2:n, 1) = c - 1j * d;
ep = [1/50; 1/20; 1/10; 1/5; 1/2; 1]; % Parameter epsilon.
jw = 1j * linspace(0, 1.2e3, 5000).'; % Frequency grid.
% Computations for all given parameter values.
p = zeros(2 * length(a), length(ep));
Hjw = zeros(length(ep), 5000);
for k = 1:length(ep)
p(:, k) = [ep(k) * a + 1j * b; ep(k) * a - 1j * b]; % Poles.
[jww, pp] = meshgrid(jw, p(:, k));
Hjw(k, :) = (r.') * (1 ./ (jww - pp)); % Frequency response.
end
% Plot poles.
figure;
loglog(imag(jw), abs(Hjw), 'LineWidth', 2);
axis tight;
xlim([6 1200]);
xlabel('frequency (rad/sec)');
ylabel('magnitude');
title('Frequency response for different \epsilon');
% Plot frequency response.
figure;
plot(real(p), imag(p), '.');
title('Poles for different \epsilon');
Dimensions
System structure:
System dimensions:
,
,
,
System variants:
Synth_matrices:
Citation
To cite this benchmark and its data:
- Synthetic parametric model. hosted at MORwiki - Model Order Reduction Wiki, 2005. http://modelreduction.org/index.php/Synthetic_parametric_model
@MISC{morwiki_synth_pmodel, title = {Synthetic parametric model}, howpublished = {hosted at {MORwiki} -- Model Order Reduction Wiki}, url = {http://modelreduction.org/index.php/Synthetic_parametric_model}, year = 2005 }