Anonymous
×
Create a new article
Write your page title here:
We currently have 105 articles on MOR Wiki. Type your article name above or click on one of the titles below and start writing!



MOR Wiki

Difference between revisions of "Models"

(change dimensions to lowercase (reserve uppercase for matrices); make u_i scalar function for QBS (following https://onlinelibrary.wiley.com/doi/am-pdf/10.1002/nla.2200 ))
m (correct missed dimensions)
Line 76: Line 76:
 
<math>B \in \mathbb{R}^{n \times m}</math>,
 
<math>B \in \mathbb{R}^{n \times m}</math>,
 
<math>C \in \mathbb{R}^{q \times n}</math>,
 
<math>C \in \mathbb{R}^{q \times n}</math>,
<math>f : \mathbb{R}^N \times \mathbb{R}^M \to \mathbb{R}^N</math>.
+
<math>f : \mathbb{R}^n \times \mathbb{R}^M \to \mathbb{R}^n</math>.
   
   
Line 130: Line 130:
 
<math>B \in \mathbb{R}^{n \times m}</math>,
 
<math>B \in \mathbb{R}^{n \times m}</math>,
 
<math>C \in \mathbb{R}^{q \times n}</math>,
 
<math>C \in \mathbb{R}^{q \times n}</math>,
<math>f : \mathbb{R}^N \times \mathbb{R}^M \to \mathbb{R}^N</math>.
+
<math>f : \mathbb{R}^n \times \mathbb{R}^M \to \mathbb{R}^n</math>.
   
 
===Affine Parametric Second-Order System===
 
===Affine Parametric Second-Order System===

Revision as of 11:12, 9 August 2022

Under Construction.png Note: This page has not been verified by our editors.

Benchmark Model Overview

This page outlines the types of models that are used as benchmark systems. For this general summary we assume an input u : \mathbb{R} \to \mathbb{R}^m, a state x : \mathbb{R} \to \mathbb{R}^n and an output y : \mathbb{R} \to \mathbb{R}^q.

Linear Time-Invariant System


\begin{align}
E\dot{x}(t) &= Ax(t) + Bu(t),\\
y(t) &= Cx(t),
\end{align}

with:

E \in \mathbb{R}^{n \times n}, A \in \mathbb{R}^{n \times n}, B \in \mathbb{R}^{n \times m}, C \in \mathbb{R}^{q \times n}.


Linear Time-Varying System


\begin{align}
E(t)\dot{x}(t) &= A(t)x(t) + B(t)u(t),\\
y(t) &= C(t)x(t),
\end{align}

with:

E : \mathbb{R} \to \mathbb{R}^{n \times n}, A : \mathbb{R} \to \mathbb{R}^{n \times n}, B : \mathbb{R} \to \mathbb{R}^{n \times m}, C : \mathbb{R} \to \mathbb{R}^{q \times n}.


Quadratic-Bilinear System


\begin{align}
 E\dot{x}(t) &= A x(t) + Q x(t) \otimes x(t) + \sum_{i=1}^M N_i x(t) u_i(t) + B u(t), \\
 y(t) &= Cx(t),
\end{align}

with:

E \in \mathbb{R}^{n \times n}, A \in \mathbb{R}^{n \times n}, Q \in \mathbb{R}^{n \times n^2}, N_i \in \mathbb{R}^{n \times n}, u_i: \mathbb{R} \to \mathbb{R}, B \in \mathbb{R}^{n \times m}, C \in \mathbb{R}^{q \times n}.

Nonlinear Time-Invariant System


\begin{align}
E\dot{x}(t) &= Ax(t) + f(x(t),u(t)) + Bu(t),\\
y(t) &= Cx(t),
\end{align}

with:

E \in \mathbb{R}^{n \times n}, A \in \mathbb{R}^{n \times n}, B \in \mathbb{R}^{n \times m}, C \in \mathbb{R}^{q \times n}, f : \mathbb{R}^n \times \mathbb{R}^M \to \mathbb{R}^n.


Affine Parametric Linear Time-Invariant System


\begin{align}
(E_0 + \sum_{j=1}^{P_E} p^E_j E_j)\dot{x}(t) &= (A_0 + \sum_{i=1}^{P_A} p^A_i A_i) x(t) + Bu(t),\\
y(t) &= Cx(t),
\end{align}

with:

E_0 \in \mathbb{R}^{n \times n}, E_j \in \mathbb{R}^{n \times n}, A_0 \in \mathbb{R}^{n \times n}, A_i \in \mathbb{R}^{n \times n}, B \in \mathbb{R}^{n \times m}, C \in \mathbb{R}^{q \times n}.

Second-Order System


\begin{align}
M \ddot{x}(t) + E \dot{x}(t) + K x(t) &= B u(t), \\
y(t) &= C x(t),
\end{align}

with:

M \in \mathbb{R}^{n \times n}, E \in \mathbb{R}^{n \times n}, K \in \mathbb{R}^{n \times n}, B \in \mathbb{R}^{n \times m}, C \in \mathbb{R}^{q \times n}.

Nonlinear Second-Order System


\begin{align}
M \ddot{x}(t) + E \dot{x}(t) + K x(t) &= B u(t) + f(x(t),u(t)), \\
y(t) &= C x(t),
\end{align}

with:

M \in \mathbb{R}^{n \times n}, E \in \mathbb{R}^{n \times n}, K \in \mathbb{R}^{n \times n}, B \in \mathbb{R}^{n \times m}, C \in \mathbb{R}^{q \times n}, f : \mathbb{R}^n \times \mathbb{R}^M \to \mathbb{R}^n.

Affine Parametric Second-Order System


\begin{align}
(M_0 + \sum_{i=1}^{P_M} p^M_i M_i)\ddot{x}(t) + (E_0 + \sum_{j=1}^{P_E} p^E_j E_j)\dot{x}(t) + (K_0 + \sum_{k=1}^{P_K} p^K_k K_k)x(t) &= B u(t), \\
y(t) &= C x(t),
\end{align}

with:

M_0 \in \mathbb{R}^{n \times n}, M_i \in \mathbb{R}^{n \times n}, E_0 \in \mathbb{R}^{n \times n}, E_j \in \mathbb{R}^{n \times n}, K_0 \in \mathbb{R}^{n \times n}, K_k \in \mathbb{R}^{n \times n}, B \in \mathbb{R}^{n \times m}, C \in \mathbb{R}^{q \times n}.