<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://modelreduction.org/morwiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Saak</id>
	<title>MOR Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://modelreduction.org/morwiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Saak"/>
	<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/Special:Contributions/Saak"/>
	<updated>2026-04-13T03:50:13Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.6</generator>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=RLC_Ladder_(Gugercin/Antoulas_2004)&amp;diff=4003</id>
		<title>RLC Ladder (Gugercin/Antoulas 2004)</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=RLC_Ladder_(Gugercin/Antoulas_2004)&amp;diff=4003"/>
		<updated>2026-01-26T09:56:06Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{preliminary}} &amp;lt;!-- Do not remove --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:benchmark]]&lt;br /&gt;
[[Category:SISO]]&lt;br /&gt;
&lt;br /&gt;
{{Infobox&lt;br /&gt;
|Title           = RCL Circuit Equations&lt;br /&gt;
|Benchmark ID    = &lt;br /&gt;
* rlc_ladder_GA_n?m1q1&lt;br /&gt;
|Category        = morwiki&lt;br /&gt;
|System-Class    = LTI-FOS&lt;br /&gt;
|nstates         = &lt;br /&gt;
* arbitrary&lt;br /&gt;
|ninputs         = &lt;br /&gt;
* 1&lt;br /&gt;
|noutputs        = &lt;br /&gt;
* 1&lt;br /&gt;
|nparameters     = 0&lt;br /&gt;
|components      = A, B, C, D&lt;br /&gt;
|License         = MIT&lt;br /&gt;
|Creator         = [[User:Gugercin]]&lt;br /&gt;
|Editor          = &lt;br /&gt;
* [[User:Saak]]&lt;br /&gt;
|Zenodo-link     = NA&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
&amp;lt;figure id=&amp;quot;fig1&amp;quot;&amp;gt;[[File:Rlc_ladder_segment_GugA04.png|490px|thumb|right|&amp;lt;caption&amp;gt;One section of the circuit.&amp;lt;/caption&amp;gt;]]&amp;lt;/figure&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This model represents an electic circuit made of a cascade of interconnected sections. Each section consists of a simple setup as depicted in [[RLC_Ladder_(Gugercin/Antoulas_2004)#fig1|Figure 1]]. The input is the voltage &amp;lt;math&amp;gt;V&amp;lt;/math&amp;gt; applied to the first section; the output is the current &amp;lt;math&amp;gt;I&amp;lt;/math&amp;gt; of the first section.&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;&lt;br /&gt;
\begin{align}&lt;br /&gt;
\dot x(t) &amp;amp;= A x(t) + B u(t), \\&lt;br /&gt;
y(t) &amp;amp;= C x(t) + D u(t), \\&lt;br /&gt;
x(0) &amp;amp;= x_0,&lt;br /&gt;
\end{align} 	&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with &amp;lt;math&amp;gt;t&amp;gt;0&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Origin==&lt;br /&gt;
This model was used in the numerical experiments section of &amp;lt;ref name=&amp;quot;morGugA04&amp;quot;/&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Data==&lt;br /&gt;
The following Matlab code assembles the above described &amp;lt;math&amp;gt;A&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;B&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;C&amp;lt;/math&amp;gt;, and &amp;lt;math&amp;gt;D&amp;lt;/math&amp;gt;, matrices of requested dimensions. The input parameters &amp;lt;code&amp;gt;R&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;Rbar&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;Cap&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;L&amp;lt;/code&amp;gt; represent the two resistances, the capacitance and the inductivity of each section of the circuit, as depicted in [[RLC_Ladder_(Gugercin/Antoulas_2004)#fig1|Figure 1]]. They default to the values from &amp;lt;ref name=&amp;quot;morGugA04&amp;quot;/&amp;gt;, when omitted.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumbinner&amp;quot; style=&amp;quot;width:680px;text-align:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;matlab&amp;quot;&amp;gt;&lt;br /&gt;
function [A, B, C, D, sys_rlc] = circuit_sparse(N, R , Rbar, Cap, L)&lt;br /&gt;
% circuit_sparse generates a SISO RLC ladder model of prescribed dimensions&lt;br /&gt;
%&lt;br /&gt;
% The model follows the descriptioin in DOI:10.1080/00207170410001713448&lt;br /&gt;
% and the input parameters R, Rbar, Cap and L default to the values given&lt;br /&gt;
% there, when omitted. If also N is omitted the original 100 dimensional&lt;br /&gt;
% realization is created.&lt;br /&gt;
%&lt;br /&gt;
% The code is a sparse adaption of the original dense generator function by&lt;br /&gt;
% Serkan Gugercin.&lt;br /&gt;
%&lt;br /&gt;
&lt;br /&gt;
%&lt;br /&gt;
% MIT License&lt;br /&gt;
%&lt;br /&gt;
% Copyright (c) 2026 The MORwiki Community&lt;br /&gt;
%&lt;br /&gt;
% Permission is hereby granted, free of charge, to any person&lt;br /&gt;
% obtaining a copy of this software and associated documentation files&lt;br /&gt;
% (the &amp;quot;Software&amp;quot;), to deal in the Software without restriction,&lt;br /&gt;
% including without limitation the rights to use, copy, modify, merge,&lt;br /&gt;
% publish, distribute, sublicense, and/or sell copies of the Software,&lt;br /&gt;
% and to permit persons to whom the Software is furnished to do so,&lt;br /&gt;
% subject to the following conditions:&lt;br /&gt;
%&lt;br /&gt;
% The above copyright notice and this permission notice shall be&lt;br /&gt;
% included in all copies or substantial portions of the Software.&lt;br /&gt;
%&lt;br /&gt;
% THE SOFTWARE IS PROVIDED &amp;quot;AS IS&amp;quot;, WITHOUT WARRANTY OF ANY KIND,&lt;br /&gt;
% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF&lt;br /&gt;
% MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND&lt;br /&gt;
% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS&lt;br /&gt;
% BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN&lt;br /&gt;
% ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN&lt;br /&gt;
% CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE&lt;br /&gt;
% SOFTWARE.&lt;br /&gt;
%&lt;br /&gt;
&lt;br /&gt;
if nargin &amp;lt; 1&lt;br /&gt;
    N = 100;&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
if nargin &amp;lt; 2&lt;br /&gt;
    % parameter values from DOI:10.1080/00207170410001713448&lt;br /&gt;
    R    = 0.1;&lt;br /&gt;
    Rbar = 1;&lt;br /&gt;
    Cap  = 0.1;&lt;br /&gt;
    L    = 0.1;&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
z1 =  1 / L                         * ones(N, 1);&lt;br /&gt;
z2 = -1 / L * Rbar * R / (Rbar + R) * ones(N, 1);&lt;br /&gt;
z3 = -1 / L * Rbar / (Rbar + R)     * ones(N, 1);&lt;br /&gt;
&lt;br /&gt;
% Every second row needs to be adapted for the second ladder step&lt;br /&gt;
z3(2:2:N) = -1 / Cap;&lt;br /&gt;
z2(1:2:N) = -1 / Cap / (Rbar + R);&lt;br /&gt;
z1(2:2:N) =  1 / Cap * Rbar / (Rbar + R);&lt;br /&gt;
&lt;br /&gt;
% start end end are exceptional&lt;br /&gt;
z2(1)     = -1 / R / Cap; % sets A(1, 1)&lt;br /&gt;
z3(1)     = -1 / Cap;     % sets A(1, 2)&lt;br /&gt;
z2(N)     = -Rbar / L;    % sets A(N, N)&lt;br /&gt;
z1(N - 1) =  1 / L;       % sets A(N, N-1)&lt;br /&gt;
&lt;br /&gt;
A = spdiags([z1 z2 z3], -1:1, N, N);&lt;br /&gt;
B = [(1 / R / Cap); sparse(N - 1, 1)];&lt;br /&gt;
C = [(-1 / R)       sparse(1, N - 1)];&lt;br /&gt;
D = 1 / R;&lt;br /&gt;
&lt;br /&gt;
if exist(&#039;sparss&#039;, &#039;file&#039;)&lt;br /&gt;
    sys_rlc = sparss(A, B, C, D);&lt;br /&gt;
else&lt;br /&gt;
    sys_rlc = [];&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Citation==&lt;br /&gt;
To cite this benchmark, use the following references:&lt;br /&gt;
&lt;br /&gt;
* For the benchmark itself and its data:&lt;br /&gt;
::  &#039;&#039;&#039;RLC Ladder (Gugercin/Antoulas 2004)&#039;&#039;&#039;. hosted at MORwiki - Model Order Reduction Wiki, 2026. http://modelreduction.org/index.php/RLC_Ladder_(Gugercin/Antoulas_2004) &lt;br /&gt;
 &lt;br /&gt;
 @MISC{morwiki_steel,&lt;br /&gt;
   author =       &amp;lt;nowiki&amp;gt;{{The MORWiki Community}}&amp;lt;/nowiki&amp;gt;,&lt;br /&gt;
   title =        {RLC Ladder (Gugercin/Antoulas 2004)}&lt;br /&gt;
   howpublished = {hosted at {MORwiki} -- Model Order Reduction Wiki},&lt;br /&gt;
   url =          &amp;lt;nowiki&amp;gt;{https://modelreduction.org/morwiki/RLC_Ladder_(Gugercin/Antoulas_2004)}&amp;lt;/nowiki&amp;gt;,&lt;br /&gt;
   year =         2026&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
* For the background on the benchmark:&lt;br /&gt;
&lt;br /&gt;
 @Article{morGugA04,&lt;br /&gt;
  author =       {Gugercin, S. and Antoulas, A.~C.},&lt;br /&gt;
  title =        {A survey of model reduction by balanced truncation and some&lt;br /&gt;
                  new results},&lt;br /&gt;
  journal =      IntControl,&lt;br /&gt;
  year =         2004,&lt;br /&gt;
  volume =       77,&lt;br /&gt;
  number =       8,&lt;br /&gt;
  pages =        {748--766},&lt;br /&gt;
  doi =          {10.1080/00207170410001713448}&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;morGugA04&amp;quot;&amp;gt; S. Gugercin and A.C. Antoulas, &amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1080/00207170410001713448 A survey of model reduction by balanced truncation and some new results]&amp;lt;/span&amp;gt;, International Journal of Control,&lt;br /&gt;
77:8, 748-766, 2004.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=RLC_Ladder_(Gugercin/Antoulas_2004)&amp;diff=4002</id>
		<title>RLC Ladder (Gugercin/Antoulas 2004)</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=RLC_Ladder_(Gugercin/Antoulas_2004)&amp;diff=4002"/>
		<updated>2026-01-26T09:51:53Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{preliminary}} &amp;lt;!-- Do not remove --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:benchmark]]&lt;br /&gt;
[[Category:SISO]]&lt;br /&gt;
&lt;br /&gt;
{{Infobox&lt;br /&gt;
|Title           = RCL Circuit Equations&lt;br /&gt;
|Benchmark ID    = &lt;br /&gt;
* rlc_ladder_GA_n?m1q1&lt;br /&gt;
|Category        = morwiki&lt;br /&gt;
|System-Class    = LTI-FOS&lt;br /&gt;
|nstates         = &lt;br /&gt;
* arbitrary&lt;br /&gt;
|ninputs         = &lt;br /&gt;
* 1&lt;br /&gt;
|noutputs        = &lt;br /&gt;
* 1&lt;br /&gt;
|nparameters     = 0&lt;br /&gt;
|components      = A, B, C, D&lt;br /&gt;
|License         = MIT&lt;br /&gt;
|Creator         = [[User:Gugercin]]&lt;br /&gt;
|Editor          = &lt;br /&gt;
* [[User:Saak]]&lt;br /&gt;
|Zenodo-link     = NA&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
&amp;lt;figure id=&amp;quot;fig1&amp;quot;&amp;gt;[[File:Rlc_ladder_segment_GugA04.png|490px|thumb|right|&amp;lt;caption&amp;gt;One section of the circuit.&amp;lt;/caption&amp;gt;]]&amp;lt;/figure&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This model represents an electic circuit made of a cascade of interconnected sections. Each section consists of a simple setup as depicted in [[RLC_Ladder_(Gugercin/Antoulas_2004)#fig1|Figure 1]]. The input is the voltage V applied to the first section; the output is the current I of the first section.&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;&lt;br /&gt;
\begin{align}&lt;br /&gt;
\dot x(t) &amp;amp;= A x(t) + B u(t), \\&lt;br /&gt;
y(t) &amp;amp;= C x(t) + D u(t), \\&lt;br /&gt;
x(0) &amp;amp;= x_0,&lt;br /&gt;
\end{align} 	&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with &amp;lt;math&amp;gt;t&amp;gt;0&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Origin==&lt;br /&gt;
This model was used in the numerical experiments section of &amp;lt;ref name=&amp;quot;morGugA04&amp;quot;/&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Data==&lt;br /&gt;
The following Matlab code assembles the above described &amp;lt;math&amp;gt;A&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;B&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;C&amp;lt;/math&amp;gt;, and &amp;lt;math&amp;gt;D&amp;lt;/math&amp;gt;, matrices of requested dimensions. The input parameters R, Rbar, Cap and L represent the two resistances, the capacitance and the inductivity of each section of the circuit, as depicted in [[RLC_Ladder_(Gugercin/Antoulas_2004)#fig1|Figure 1]]. They default to the values from &amp;lt;ref name=&amp;quot;morGugA04&amp;quot;/&amp;gt;, when omitted.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumbinner&amp;quot; style=&amp;quot;width:680px;text-align:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;matlab&amp;quot;&amp;gt;&lt;br /&gt;
function [A, B, C, D, sys_rlc] = circuit_sparse(N, R , Rbar, Cap, L)&lt;br /&gt;
% circuit_sparse generates a SISO RLC ladder model of prescribed dimensions&lt;br /&gt;
%&lt;br /&gt;
% The model follows the descriptioin in DOI:10.1080/00207170410001713448&lt;br /&gt;
% and the input parameters R, Rbar, Cap and L default to the values given&lt;br /&gt;
% there, when omitted. If also N is omitted the original 100 dimensional&lt;br /&gt;
% realization is created.&lt;br /&gt;
%&lt;br /&gt;
% The code is a sparse adaption of the original dense generator function by&lt;br /&gt;
% Serkan Gugercin.&lt;br /&gt;
%&lt;br /&gt;
&lt;br /&gt;
%&lt;br /&gt;
% MIT License&lt;br /&gt;
%&lt;br /&gt;
% Copyright (c) 2026 The MORwiki Community&lt;br /&gt;
%&lt;br /&gt;
% Permission is hereby granted, free of charge, to any person&lt;br /&gt;
% obtaining a copy of this software and associated documentation files&lt;br /&gt;
% (the &amp;quot;Software&amp;quot;), to deal in the Software without restriction,&lt;br /&gt;
% including without limitation the rights to use, copy, modify, merge,&lt;br /&gt;
% publish, distribute, sublicense, and/or sell copies of the Software,&lt;br /&gt;
% and to permit persons to whom the Software is furnished to do so,&lt;br /&gt;
% subject to the following conditions:&lt;br /&gt;
%&lt;br /&gt;
% The above copyright notice and this permission notice shall be&lt;br /&gt;
% included in all copies or substantial portions of the Software.&lt;br /&gt;
%&lt;br /&gt;
% THE SOFTWARE IS PROVIDED &amp;quot;AS IS&amp;quot;, WITHOUT WARRANTY OF ANY KIND,&lt;br /&gt;
% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF&lt;br /&gt;
% MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND&lt;br /&gt;
% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS&lt;br /&gt;
% BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN&lt;br /&gt;
% ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN&lt;br /&gt;
% CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE&lt;br /&gt;
% SOFTWARE.&lt;br /&gt;
%&lt;br /&gt;
&lt;br /&gt;
if nargin &amp;lt; 1&lt;br /&gt;
    N = 100;&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
if nargin &amp;lt; 2&lt;br /&gt;
    % parameter values from DOI:10.1080/00207170410001713448&lt;br /&gt;
    R    = 0.1;&lt;br /&gt;
    Rbar = 1;&lt;br /&gt;
    Cap  = 0.1;&lt;br /&gt;
    L    = 0.1;&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
z1 =  1 / L                         * ones(N, 1);&lt;br /&gt;
z2 = -1 / L * Rbar * R / (Rbar + R) * ones(N, 1);&lt;br /&gt;
z3 = -1 / L * Rbar / (Rbar + R)     * ones(N, 1);&lt;br /&gt;
&lt;br /&gt;
% Every second row needs to be adapted for the second ladder step&lt;br /&gt;
z3(2:2:N) = -1 / Cap;&lt;br /&gt;
z2(1:2:N) = -1 / Cap / (Rbar + R);&lt;br /&gt;
z1(2:2:N) =  1 / Cap * Rbar / (Rbar + R);&lt;br /&gt;
&lt;br /&gt;
% start end end are exceptional&lt;br /&gt;
z2(1)     = -1 / R / Cap; % sets A(1, 1)&lt;br /&gt;
z3(1)     = -1 / Cap;     % sets A(1, 2)&lt;br /&gt;
z2(N)     = -Rbar / L;    % sets A(N, N)&lt;br /&gt;
z1(N - 1) =  1 / L;       % sets A(N, N-1)&lt;br /&gt;
&lt;br /&gt;
A = spdiags([z1 z2 z3], -1:1, N, N);&lt;br /&gt;
B = [(1 / R / Cap); sparse(N - 1, 1)];&lt;br /&gt;
C = [(-1 / R)       sparse(1, N - 1)];&lt;br /&gt;
D = 1 / R;&lt;br /&gt;
&lt;br /&gt;
if exist(&#039;sparss&#039;, &#039;file&#039;)&lt;br /&gt;
    sys_rlc = sparss(A, B, C, D);&lt;br /&gt;
else&lt;br /&gt;
    sys_rlc = [];&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Citation==&lt;br /&gt;
To cite this benchmark, use the following references:&lt;br /&gt;
&lt;br /&gt;
* For the benchmark itself and its data:&lt;br /&gt;
::  &#039;&#039;&#039;RLC Ladder (Gugercin/Antoulas 2004)&#039;&#039;&#039;. hosted at MORwiki - Model Order Reduction Wiki, 2026. http://modelreduction.org/index.php/RLC_Ladder_(Gugercin/Antoulas_2004) &lt;br /&gt;
 &lt;br /&gt;
 @MISC{morwiki_steel,&lt;br /&gt;
   author =       &amp;lt;nowiki&amp;gt;{{The MORWiki Community}}&amp;lt;/nowiki&amp;gt;,&lt;br /&gt;
   title =        {RLC Ladder (Gugercin/Antoulas 2004)}&lt;br /&gt;
   howpublished = {hosted at {MORwiki} -- Model Order Reduction Wiki},&lt;br /&gt;
   url =          &amp;lt;nowiki&amp;gt;{https://modelreduction.org/morwiki/RLC_Ladder_(Gugercin/Antoulas_2004)}&amp;lt;/nowiki&amp;gt;,&lt;br /&gt;
   year =         2026&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
* For the background on the benchmark:&lt;br /&gt;
&lt;br /&gt;
 @Article{morGugA04,&lt;br /&gt;
  author =       {Gugercin, S. and Antoulas, A.~C.},&lt;br /&gt;
  title =        {A survey of model reduction by balanced truncation and some&lt;br /&gt;
                  new results},&lt;br /&gt;
  journal =      IntControl,&lt;br /&gt;
  year =         2004,&lt;br /&gt;
  volume =       77,&lt;br /&gt;
  number =       8,&lt;br /&gt;
  pages =        {748--766},&lt;br /&gt;
  doi =          {10.1080/00207170410001713448}&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;morGugA04&amp;quot;&amp;gt; S. Gugercin and A.C. Antoulas, &amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1080/00207170410001713448 A survey of model reduction by balanced truncation and some new results]&amp;lt;/span&amp;gt;, International Journal of Control,&lt;br /&gt;
77:8, 748-766, 2004.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=RLC_Ladder_(Gugercin/Antoulas_2004)&amp;diff=4001</id>
		<title>RLC Ladder (Gugercin/Antoulas 2004)</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=RLC_Ladder_(Gugercin/Antoulas_2004)&amp;diff=4001"/>
		<updated>2026-01-26T09:51:04Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{preliminary}} &amp;lt;!-- Do not remove --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:benchmark]]&lt;br /&gt;
[[Category:SISO]]&lt;br /&gt;
&lt;br /&gt;
{{Infobox&lt;br /&gt;
|Title           = RCL Circuit Equations&lt;br /&gt;
|Benchmark ID    = &lt;br /&gt;
* rlc_ladder_GA_n?m1q1&lt;br /&gt;
|Category        = morwiki&lt;br /&gt;
|System-Class    = LTI-FOS&lt;br /&gt;
|nstates         = &lt;br /&gt;
* arbitrary&lt;br /&gt;
|ninputs         = &lt;br /&gt;
* 1&lt;br /&gt;
|noutputs        = &lt;br /&gt;
* 1&lt;br /&gt;
|nparameters     = 0&lt;br /&gt;
|components      = A, B, C, D&lt;br /&gt;
|License         = MIT&lt;br /&gt;
|Creator         = [[User:Gugercin]]&lt;br /&gt;
|Editor          = &lt;br /&gt;
* [[User:Saak]]&lt;br /&gt;
|Zenodo-link     = NA&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
&amp;lt;figure id=&amp;quot;fig1&amp;quot;&amp;gt;[[File:Rlc_ladder_segment_GugA04.png|490px|thumb|right|&amp;lt;caption&amp;gt;One section of the circuit.&amp;lt;/caption&amp;gt;]]&amp;lt;/figure&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This model represents an electic circuit made of a cascade of interconnected sections. Each section consists of a simple setup as depicted in [[RLC_Ladder_(Gugercin/Antoulas_2004)#fig1|Figure 1]]. The input is the voltage V applied to the first section; the output is the current I of the first section.&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;&lt;br /&gt;
\begin{align}&lt;br /&gt;
\dot x(t) &amp;amp;= A x(t) + B u(t), \\&lt;br /&gt;
y(t) &amp;amp;= C x(t) + D u(t), \\&lt;br /&gt;
x(0) &amp;amp;= x_0,&lt;br /&gt;
\end{align} 	&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with &amp;lt;math&amp;gt;t&amp;gt;0&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Origin==&lt;br /&gt;
This model was used in the numerical experiments section of &amp;lt;ref name=&amp;quot;morGugA04&amp;quot;/&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Data==&lt;br /&gt;
The following Matlab code assembles the above described &amp;lt;math&amp;gt;A&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;B&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;C&amp;lt;/math&amp;gt;, and &amp;lt;math&amp;gt;D&amp;lt;/math&amp;gt;, matrices of requested dimensions. The input parameters R, Rbar, Cap and L represent the two resistances, the capacitance and the inductivity of each section of the circuit, as depicted in Figure 1. They default to the values from &amp;lt;ref name=&amp;quot;morGugA04&amp;quot;/&amp;gt;, when omitted.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumbinner&amp;quot; style=&amp;quot;width:680px;text-align:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;matlab&amp;quot;&amp;gt;&lt;br /&gt;
function [A, B, C, D, sys_rlc] = circuit_sparse(N, R , Rbar, Cap, L)&lt;br /&gt;
% circuit_sparse generates a SISO RLC ladder model of prescribed dimensions&lt;br /&gt;
%&lt;br /&gt;
% The model follows the descriptioin in DOI:10.1080/00207170410001713448&lt;br /&gt;
% and the input parameters R, Rbar, Cap and L default to the values given&lt;br /&gt;
% there, when omitted. If also N is omitted the original 100 dimensional&lt;br /&gt;
% realization is created.&lt;br /&gt;
%&lt;br /&gt;
% The code is a sparse adaption of the original dense generator function by&lt;br /&gt;
% Serkan Gugercin.&lt;br /&gt;
%&lt;br /&gt;
&lt;br /&gt;
%&lt;br /&gt;
% MIT License&lt;br /&gt;
%&lt;br /&gt;
% Copyright (c) 2026 The MORwiki Community&lt;br /&gt;
%&lt;br /&gt;
% Permission is hereby granted, free of charge, to any person&lt;br /&gt;
% obtaining a copy of this software and associated documentation files&lt;br /&gt;
% (the &amp;quot;Software&amp;quot;), to deal in the Software without restriction,&lt;br /&gt;
% including without limitation the rights to use, copy, modify, merge,&lt;br /&gt;
% publish, distribute, sublicense, and/or sell copies of the Software,&lt;br /&gt;
% and to permit persons to whom the Software is furnished to do so,&lt;br /&gt;
% subject to the following conditions:&lt;br /&gt;
%&lt;br /&gt;
% The above copyright notice and this permission notice shall be&lt;br /&gt;
% included in all copies or substantial portions of the Software.&lt;br /&gt;
%&lt;br /&gt;
% THE SOFTWARE IS PROVIDED &amp;quot;AS IS&amp;quot;, WITHOUT WARRANTY OF ANY KIND,&lt;br /&gt;
% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF&lt;br /&gt;
% MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND&lt;br /&gt;
% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS&lt;br /&gt;
% BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN&lt;br /&gt;
% ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN&lt;br /&gt;
% CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE&lt;br /&gt;
% SOFTWARE.&lt;br /&gt;
%&lt;br /&gt;
&lt;br /&gt;
if nargin &amp;lt; 1&lt;br /&gt;
    N = 100;&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
if nargin &amp;lt; 2&lt;br /&gt;
    % parameter values from DOI:10.1080/00207170410001713448&lt;br /&gt;
    R    = 0.1;&lt;br /&gt;
    Rbar = 1;&lt;br /&gt;
    Cap  = 0.1;&lt;br /&gt;
    L    = 0.1;&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
z1 =  1 / L                         * ones(N, 1);&lt;br /&gt;
z2 = -1 / L * Rbar * R / (Rbar + R) * ones(N, 1);&lt;br /&gt;
z3 = -1 / L * Rbar / (Rbar + R)     * ones(N, 1);&lt;br /&gt;
&lt;br /&gt;
% Every second row needs to be adapted for the second ladder step&lt;br /&gt;
z3(2:2:N) = -1 / Cap;&lt;br /&gt;
z2(1:2:N) = -1 / Cap / (Rbar + R);&lt;br /&gt;
z1(2:2:N) =  1 / Cap * Rbar / (Rbar + R);&lt;br /&gt;
&lt;br /&gt;
% start end end are exceptional&lt;br /&gt;
z2(1)     = -1 / R / Cap; % sets A(1, 1)&lt;br /&gt;
z3(1)     = -1 / Cap;     % sets A(1, 2)&lt;br /&gt;
z2(N)     = -Rbar / L;    % sets A(N, N)&lt;br /&gt;
z1(N - 1) =  1 / L;       % sets A(N, N-1)&lt;br /&gt;
&lt;br /&gt;
A = spdiags([z1 z2 z3], -1:1, N, N);&lt;br /&gt;
B = [(1 / R / Cap); sparse(N - 1, 1)];&lt;br /&gt;
C = [(-1 / R)       sparse(1, N - 1)];&lt;br /&gt;
D = 1 / R;&lt;br /&gt;
&lt;br /&gt;
if exist(&#039;sparss&#039;, &#039;file&#039;)&lt;br /&gt;
    sys_rlc = sparss(A, B, C, D);&lt;br /&gt;
else&lt;br /&gt;
    sys_rlc = [];&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Citation==&lt;br /&gt;
To cite this benchmark, use the following references:&lt;br /&gt;
&lt;br /&gt;
* For the benchmark itself and its data:&lt;br /&gt;
::  &#039;&#039;&#039;RLC Ladder (Gugercin/Antoulas 2004)&#039;&#039;&#039;. hosted at MORwiki - Model Order Reduction Wiki, 2026. http://modelreduction.org/index.php/RLC_Ladder_(Gugercin/Antoulas_2004) &lt;br /&gt;
 &lt;br /&gt;
 @MISC{morwiki_steel,&lt;br /&gt;
   author =       &amp;lt;nowiki&amp;gt;{{The MORWiki Community}}&amp;lt;/nowiki&amp;gt;,&lt;br /&gt;
   title =        {RLC Ladder (Gugercin/Antoulas 2004)}&lt;br /&gt;
   howpublished = {hosted at {MORwiki} -- Model Order Reduction Wiki},&lt;br /&gt;
   url =          &amp;lt;nowiki&amp;gt;{https://modelreduction.org/morwiki/RLC_Ladder_(Gugercin/Antoulas_2004)}&amp;lt;/nowiki&amp;gt;,&lt;br /&gt;
   year =         2026&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
* For the background on the benchmark:&lt;br /&gt;
&lt;br /&gt;
 @Article{morGugA04,&lt;br /&gt;
  author =       {Gugercin, S. and Antoulas, A.~C.},&lt;br /&gt;
  title =        {A survey of model reduction by balanced truncation and some&lt;br /&gt;
                  new results},&lt;br /&gt;
  journal =      IntControl,&lt;br /&gt;
  year =         2004,&lt;br /&gt;
  volume =       77,&lt;br /&gt;
  number =       8,&lt;br /&gt;
  pages =        {748--766},&lt;br /&gt;
  doi =          {10.1080/00207170410001713448}&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;morGugA04&amp;quot;&amp;gt; S. Gugercin and A.C. Antoulas, &amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1080/00207170410001713448 A survey of model reduction by balanced truncation and some new results]&amp;lt;/span&amp;gt;, International Journal of Control,&lt;br /&gt;
77:8, 748-766, 2004.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=File:Rlc_ladder_segment_GugA04.png&amp;diff=4000</id>
		<title>File:Rlc ladder segment GugA04.png</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=File:Rlc_ladder_segment_GugA04.png&amp;diff=4000"/>
		<updated>2026-01-26T09:43:07Z</updated>

		<summary type="html">&lt;p&gt;Saak: resemblance of Figure 1a from the paper, depicting one ladder section.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
resemblance of Figure 1a from the paper, depicting one ladder section.&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=Mass-Spring-Damper&amp;diff=3999</id>
		<title>Mass-Spring-Damper</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=Mass-Spring-Damper&amp;diff=3999"/>
		<updated>2026-01-23T17:26:10Z</updated>

		<summary type="html">&lt;p&gt;Saak: /* Data */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{preliminary}} &amp;lt;!-- Do not remove --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:benchmark]]&lt;br /&gt;
[[Category:nonlinear]]&lt;br /&gt;
[[Category:ODE]]&lt;br /&gt;
[[Category:time invariant]]&lt;br /&gt;
[[Category:first differential order]]&lt;br /&gt;
[[Category:second differential order]]&lt;br /&gt;
[[Category:Procedural]]&lt;br /&gt;
[[Category:SISO]]&lt;br /&gt;
&lt;br /&gt;
==Description: Mass-Spring-Damper System==&lt;br /&gt;
&lt;br /&gt;
This benchmark is a generalization of the nonlinear [[wikipedia:Mass-spring-damper_model|mass-spring-damper]] system presented in &amp;lt;ref name=&amp;quot;kawano15&amp;quot;/&amp;gt;,&lt;br /&gt;
which is concerned with modeling the a mechanical systems consisting of chained masses, linear and nonlinear springs, and dampers.&lt;br /&gt;
The underlying mathematical model is a second order system:&lt;br /&gt;
:&amp;lt;math&amp;gt;&lt;br /&gt;
\begin{align}&lt;br /&gt;
 M \ddot{x}(t) + D \dot{x}(t) + K x(t) + f(x(t)) &amp;amp;= B u(t), \\&lt;br /&gt;
 y(t) &amp;amp;= C x(t).&lt;br /&gt;
\end{align}&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===First Order Representation===&lt;br /&gt;
&lt;br /&gt;
The second order system can be represented as a first order system as follows:&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;&lt;br /&gt;
\begin{align}&lt;br /&gt;
\begin{pmatrix} 1 &amp;amp; 0 \\ 0 &amp;amp; M \end{pmatrix} \begin{pmatrix} \dot{p} \\ \dot{v} \end{pmatrix} &amp;amp;=&lt;br /&gt;
\begin{pmatrix} 0 &amp;amp; 1 \\ K &amp;amp; D \end{pmatrix} \begin{pmatrix} p \\ v \end{pmatrix} +&lt;br /&gt;
\begin{pmatrix} 0 \\ f_p(p) \end{pmatrix} + \begin{pmatrix} 0 \\ B_v \end{pmatrix} \\&lt;br /&gt;
y &amp;amp;= \begin{pmatrix} C_p &amp;amp; 0 \end{pmatrix} \begin{pmatrix} p \\ v \end{pmatrix}&lt;br /&gt;
\end{align}&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with the components:&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;&lt;br /&gt;
M = m \begin{pmatrix} 1 \\ &amp;amp; \ddots \end{pmatrix}, \quad&lt;br /&gt;
K_0 = k_l \begin{pmatrix} -2 &amp;amp; 1 \\ 1 &amp;amp; -2 &amp;amp; \ddots \\ &amp;amp; \ddots &amp;amp; \ddots \end{pmatrix}, \quad&lt;br /&gt;
D = d \begin{pmatrix} -2 &amp;amp; 1 \\ 1 &amp;amp; -2 &amp;amp; \ddots \\ &amp;amp; \ddots &amp;amp; \ddots \end{pmatrix}, \quad&lt;br /&gt;
B_v = \begin{pmatrix} 0 \\ \vdots \\ 0 \\ 1 \end{pmatrix}, \quad&lt;br /&gt;
C_p = \begin{pmatrix} 0 &amp;amp; \dots &amp;amp; 0 &amp;amp; 1 \end{pmatrix},&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
and the nonlinear term:&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;&lt;br /&gt;
f_p(p) = -k_n \Big( \begin{pmatrix} 1 &amp;amp; -1 \\ &amp;amp; \ddots &amp;amp; \ddots \end{pmatrix} p \Big)^3 -k_n \Big( \begin{pmatrix} 1 \\ -1 &amp;amp; \ddots \\ &amp;amp; \ddots \end{pmatrix} p \Big)^3&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
and thus yielding the classic first order components:&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;&lt;br /&gt;
E = \begin{pmatrix} 1 &amp;amp; 0 \\ 0 &amp;amp; M \end{pmatrix}, \quad&lt;br /&gt;
A = \begin{pmatrix} 0 &amp;amp; 1 \\ K &amp;amp; D \end{pmatrix}, \quad&lt;br /&gt;
B = \begin{pmatrix} 0 \\ B_v \end{pmatrix}, \quad&lt;br /&gt;
C = \begin{pmatrix} C_p &amp;amp; 0 \end{pmatrix}.&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The parameters for the mass &amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt;, linear spring constant &amp;lt;math&amp;gt;k_l&amp;lt;/math&amp;gt;, nonlinear spring constant &amp;lt;math&amp;gt;k_n&amp;lt;/math&amp;gt;, and damping &amp;lt;math&amp;gt;d&amp;lt;/math&amp;gt; are chosen in &amp;lt;ref name=&amp;quot;kawano15&amp;quot;/&amp;gt; as &amp;lt;math&amp;gt;m=1&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;k_l=1&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;k_n=2&amp;lt;/math&amp;gt;, and &amp;lt;math&amp;gt;d=1&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Data==&lt;br /&gt;
&lt;br /&gt;
The following Matlab code assembles the above described &amp;lt;math&amp;gt;E&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;A&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;B&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;C&amp;lt;/math&amp;gt; parameter dependent matrices and the function &amp;lt;math&amp;gt;f&amp;lt;/math&amp;gt; for a given number of subsystems &amp;lt;math&amp;gt;N&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumbinner&amp;quot; style=&amp;quot;width:540px;text-align:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;matlab&amp;quot;&amp;gt;&lt;br /&gt;
function [E,A,B,C,f] = msd(N)&lt;br /&gt;
&lt;br /&gt;
    U = speye(N);                     % Sparse unit matrix&lt;br /&gt;
    T = gallery(&#039;tridiag&#039;,N,-1,2,-1); % Sparse tridiagonal matrix&lt;br /&gt;
    H = gallery(&#039;tridiag&#039;,N,-1,1,0);  % Sparse transport matrix&lt;br /&gt;
    Z = sparse(N,N);                  % Sparse all zero matrix&lt;br /&gt;
    z = sparse(N,1);                  % Sparse all zero vector&lt;br /&gt;
&lt;br /&gt;
    E = @(m) [U,Z;Z,m*U];             % Handle to parametric E matrix&lt;br /&gt;
    A = @(kl,d) [Z,U;kl*T,d*T];       % Handle to parametric A matrix&lt;br /&gt;
    B = sparse(2*N,1,1,2*N,1);&lt;br /&gt;
    C = sparse(N,1,1,2*N,1);&lt;br /&gt;
    f = @(x,kn) [z;-kn*( (H&#039;*x(N+1:end)).^3 - (H*x(N+1:end)).^3)];&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Dimensions==&lt;br /&gt;
&lt;br /&gt;
System structure:&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;&lt;br /&gt;
\begin{array}{rcl}&lt;br /&gt;
E(m) \dot{x}(t) &amp;amp;=&amp;amp; A(k_l,d)x(t) + f(x(t);k_n) + Bu(t) \\&lt;br /&gt;
y(t) &amp;amp;=&amp;amp; Cx(t)&lt;br /&gt;
\end{array}&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
System dimensions:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;E \in \mathbb{R}^{2N \times 2N}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;A \in \mathbb{R}^{2N \times 2N}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;B \in \mathbb{R}^{2N \times 1}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;C \in \mathbb{R}^{1 \times 2N}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Citation==&lt;br /&gt;
&lt;br /&gt;
To cite this benchmark, use the following references:&lt;br /&gt;
&lt;br /&gt;
* For the benchmark itself and its data:&lt;br /&gt;
:: The MORwiki Community, &#039;&#039;&#039;Mass-Spring-Damper System&#039;&#039;&#039;. MORwiki - Model Order Reduction Wiki, 2018. http://modelreduction.org/index.php/Mass-Spring-Damper&lt;br /&gt;
 &lt;br /&gt;
 @MISC{morwiki_msd,&lt;br /&gt;
   author =       &amp;lt;nowiki&amp;gt;{{The MORwiki Community}}&amp;lt;/nowiki&amp;gt;,&lt;br /&gt;
   title =        {Mass-Spring-Damper System},&lt;br /&gt;
   howpublished = {hosted at {MORwiki} -- Model Order Reduction Wiki},&lt;br /&gt;
   url =          &amp;lt;nowiki&amp;gt;{https://modelreduction.org/morwiki/Mass-Spring-Damper}&amp;lt;/nowiki&amp;gt;,&lt;br /&gt;
   year =         2018&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
* For the background on the benchmark:&lt;br /&gt;
&lt;br /&gt;
 @INPROCEEDINGS{morKawS15,&lt;br /&gt;
   title =        {Model Reduction by Generalized Differential Balancing},&lt;br /&gt;
   author =       {Y. Kawano and J.M.A. Scherpen},&lt;br /&gt;
   booktitle =    {Mathematical Control Theory I: Nonlinear and Hybrid Control Systems},&lt;br /&gt;
   series =       {Lecture Notes in Control and Information Sciences},&lt;br /&gt;
   volume =       {461},&lt;br /&gt;
   pages =        {349--362},&lt;br /&gt;
   year =         {2015},&lt;br /&gt;
   doi =          {10.1007/978-3-319-20988-3}&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;kawano15&amp;quot;&amp;gt;Y. Kawano and J.M.A. Scherpen, &amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1007/978-3-319-20988-3_19 Model Reduction by Generalized Differential Balancing]&amp;lt;/span&amp;gt;, In: Mathematical Control Theory I: Nonlinear and Hybrid Control Systems, Lecture Notes in Control and Information Sciences 461: 349--362, 2015.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=RLC_Ladder_(Gugercin/Antoulas_2004)&amp;diff=3998</id>
		<title>RLC Ladder (Gugercin/Antoulas 2004)</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=RLC_Ladder_(Gugercin/Antoulas_2004)&amp;diff=3998"/>
		<updated>2026-01-23T17:17:20Z</updated>

		<summary type="html">&lt;p&gt;Saak: Created page with &amp;quot;{{preliminary}} &amp;lt;!-- Do not remove --&amp;gt;  Category:benchmark Category:SISO  {{Infobox |Title           = RCL Circuit Equations |Benchmark ID    =  * rlc_ladder_GA_n?m1q1...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{preliminary}} &amp;lt;!-- Do not remove --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:benchmark]]&lt;br /&gt;
[[Category:SISO]]&lt;br /&gt;
&lt;br /&gt;
{{Infobox&lt;br /&gt;
|Title           = RCL Circuit Equations&lt;br /&gt;
|Benchmark ID    = &lt;br /&gt;
* rlc_ladder_GA_n?m1q1&lt;br /&gt;
|Category        = morwiki&lt;br /&gt;
|System-Class    = LTI-FOS&lt;br /&gt;
|nstates         = &lt;br /&gt;
* arbitrary&lt;br /&gt;
|ninputs         = &lt;br /&gt;
* 1&lt;br /&gt;
|noutputs        = &lt;br /&gt;
* 1&lt;br /&gt;
|nparameters     = 0&lt;br /&gt;
|components      = A, B, C, D&lt;br /&gt;
|License         = MIT&lt;br /&gt;
|Creator         = [[User:Gugercin]]&lt;br /&gt;
|Editor          = &lt;br /&gt;
* [[User:Saak]]&lt;br /&gt;
|Zenodo-link     = NA&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
This model represents an electic circuit made of a cascade of interconnected sections. Each section consists of a simple setup as depicted in Figure 1. The input is the voltage V applied to the first section; the output is the current I of the first section.&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;&lt;br /&gt;
\begin{align}&lt;br /&gt;
\dot x(t) &amp;amp;= A x(t) + B u(t), \\&lt;br /&gt;
y(t) &amp;amp;= C x(t) + D u(t), \\&lt;br /&gt;
x(0) &amp;amp;= x_0,&lt;br /&gt;
\end{align} 	&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with &amp;lt;math&amp;gt;t&amp;gt;0&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Origin==&lt;br /&gt;
This model was used in the numerical experiments section of &amp;lt;ref name=&amp;quot;morGugA04&amp;quot;/&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Data==&lt;br /&gt;
The following Matlab code assembles the above described &amp;lt;math&amp;gt;A&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;B&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;C&amp;lt;/math&amp;gt;, and &amp;lt;math&amp;gt;D&amp;lt;/math&amp;gt;, matrices of requested dimensions. The input parameters R, Rbar, Cap and L represent the two resistances, the capacitance and the inductivity of each section of the circuit, as depicted in Figure 1. They default to the values from &amp;lt;ref name=&amp;quot;morGugA04&amp;quot;/&amp;gt;, when omitted.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumbinner&amp;quot; style=&amp;quot;width:680px;text-align:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;matlab&amp;quot;&amp;gt;&lt;br /&gt;
function [A, B, C, D, sys_rlc] = circuit_sparse(N, R , Rbar, Cap, L)&lt;br /&gt;
% circuit_sparse generates a SISO RLC ladder model of prescribed dimensions&lt;br /&gt;
%&lt;br /&gt;
% The model follows the descriptioin in DOI:10.1080/00207170410001713448&lt;br /&gt;
% and the input parameters R, Rbar, Cap and L default to the values given&lt;br /&gt;
% there, when omitted. If also N is omitted the original 100 dimensional&lt;br /&gt;
% realization is created.&lt;br /&gt;
%&lt;br /&gt;
% The code is a sparse adaption of the original dense generator function by&lt;br /&gt;
% Serkan Gugercin.&lt;br /&gt;
%&lt;br /&gt;
&lt;br /&gt;
%&lt;br /&gt;
% MIT License&lt;br /&gt;
%&lt;br /&gt;
% Copyright (c) 2026 The MORwiki Community&lt;br /&gt;
%&lt;br /&gt;
% Permission is hereby granted, free of charge, to any person&lt;br /&gt;
% obtaining a copy of this software and associated documentation files&lt;br /&gt;
% (the &amp;quot;Software&amp;quot;), to deal in the Software without restriction,&lt;br /&gt;
% including without limitation the rights to use, copy, modify, merge,&lt;br /&gt;
% publish, distribute, sublicense, and/or sell copies of the Software,&lt;br /&gt;
% and to permit persons to whom the Software is furnished to do so,&lt;br /&gt;
% subject to the following conditions:&lt;br /&gt;
%&lt;br /&gt;
% The above copyright notice and this permission notice shall be&lt;br /&gt;
% included in all copies or substantial portions of the Software.&lt;br /&gt;
%&lt;br /&gt;
% THE SOFTWARE IS PROVIDED &amp;quot;AS IS&amp;quot;, WITHOUT WARRANTY OF ANY KIND,&lt;br /&gt;
% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF&lt;br /&gt;
% MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND&lt;br /&gt;
% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS&lt;br /&gt;
% BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN&lt;br /&gt;
% ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN&lt;br /&gt;
% CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE&lt;br /&gt;
% SOFTWARE.&lt;br /&gt;
%&lt;br /&gt;
&lt;br /&gt;
if nargin &amp;lt; 1&lt;br /&gt;
    N = 100;&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
if nargin &amp;lt; 2&lt;br /&gt;
    % parameter values from DOI:10.1080/00207170410001713448&lt;br /&gt;
    R    = 0.1;&lt;br /&gt;
    Rbar = 1;&lt;br /&gt;
    Cap  = 0.1;&lt;br /&gt;
    L    = 0.1;&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
z1 =  1 / L                         * ones(N, 1);&lt;br /&gt;
z2 = -1 / L * Rbar * R / (Rbar + R) * ones(N, 1);&lt;br /&gt;
z3 = -1 / L * Rbar / (Rbar + R)     * ones(N, 1);&lt;br /&gt;
&lt;br /&gt;
% Every second row needs to be adapted for the second ladder step&lt;br /&gt;
z3(2:2:N) = -1 / Cap;&lt;br /&gt;
z2(1:2:N) = -1 / Cap / (Rbar + R);&lt;br /&gt;
z1(2:2:N) =  1 / Cap * Rbar / (Rbar + R);&lt;br /&gt;
&lt;br /&gt;
% start end end are exceptional&lt;br /&gt;
z2(1)     = -1 / R / Cap; % sets A(1, 1)&lt;br /&gt;
z3(1)     = -1 / Cap;     % sets A(1, 2)&lt;br /&gt;
z2(N)     = -Rbar / L;    % sets A(N, N)&lt;br /&gt;
z1(N - 1) =  1 / L;       % sets A(N, N-1)&lt;br /&gt;
&lt;br /&gt;
A = spdiags([z1 z2 z3], -1:1, N, N);&lt;br /&gt;
B = [(1 / R / Cap); sparse(N - 1, 1)];&lt;br /&gt;
C = [(-1 / R)       sparse(1, N - 1)];&lt;br /&gt;
D = 1 / R;&lt;br /&gt;
&lt;br /&gt;
if exist(&#039;sparss&#039;, &#039;file&#039;)&lt;br /&gt;
    sys_rlc = sparss(A, B, C, D);&lt;br /&gt;
else&lt;br /&gt;
    sys_rlc = [];&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Citation==&lt;br /&gt;
To cite this benchmark, use the following references:&lt;br /&gt;
&lt;br /&gt;
* For the benchmark itself and its data:&lt;br /&gt;
::  &#039;&#039;&#039;RLC Ladder (Gugercin/Antoulas 2004)&#039;&#039;&#039;. hosted at MORwiki - Model Order Reduction Wiki, 2026. http://modelreduction.org/index.php/RLC_Ladder_(Gugercin/Antoulas_2004) &lt;br /&gt;
 &lt;br /&gt;
 @MISC{morwiki_steel,&lt;br /&gt;
   author =       &amp;lt;nowiki&amp;gt;{{The MORWiki Community}}&amp;lt;/nowiki&amp;gt;,&lt;br /&gt;
   title =        {RLC Ladder (Gugercin/Antoulas 2004)}&lt;br /&gt;
   howpublished = {hosted at {MORwiki} -- Model Order Reduction Wiki},&lt;br /&gt;
   url =          &amp;lt;nowiki&amp;gt;{https://modelreduction.org/morwiki/RLC_Ladder_(Gugercin/Antoulas_2004)}&amp;lt;/nowiki&amp;gt;,&lt;br /&gt;
   year =         2026&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
* For the background on the benchmark:&lt;br /&gt;
&lt;br /&gt;
 @Article{morGugA04,&lt;br /&gt;
  author =       {Gugercin, S. and Antoulas, A.~C.},&lt;br /&gt;
  title =        {A survey of model reduction by balanced truncation and some&lt;br /&gt;
                  new results},&lt;br /&gt;
  journal =      IntControl,&lt;br /&gt;
  year =         2004,&lt;br /&gt;
  volume =       77,&lt;br /&gt;
  number =       8,&lt;br /&gt;
  pages =        {748--766},&lt;br /&gt;
  doi =          {10.1080/00207170410001713448}&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;morGugA04&amp;quot;&amp;gt; S. Gugercin and A.C. Antoulas, &amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1080/00207170410001713448 A survey of model reduction by balanced truncation and some new results]&amp;lt;/span&amp;gt;, International Journal of Control,&lt;br /&gt;
77:8, 748-766, 2004.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=RCL_Circuit_Equations&amp;diff=3997</id>
		<title>RCL Circuit Equations</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=RCL_Circuit_Equations&amp;diff=3997"/>
		<updated>2026-01-23T16:07:56Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:benchmark]]&lt;br /&gt;
[[Category:Oberwolfach]]&lt;br /&gt;
[[Category:SISO]]&lt;br /&gt;
[[Category:Differential_algebraic_system]]&lt;br /&gt;
&lt;br /&gt;
{{Infobox&lt;br /&gt;
|Title           = RCL Circuit Equations&lt;br /&gt;
|Benchmark ID    = &lt;br /&gt;
* rclCircuitEquations_n1841m16q16&lt;br /&gt;
* rclCircuitEquations_n306m2q2&lt;br /&gt;
|Category        = oberwolfach&lt;br /&gt;
|System-Class    = LTI-FOS&lt;br /&gt;
|nstates         = &lt;br /&gt;
* 1841&lt;br /&gt;
* 306&lt;br /&gt;
|ninputs         = &lt;br /&gt;
* 16&lt;br /&gt;
* 2&lt;br /&gt;
|noutputs        = &lt;br /&gt;
* 16&lt;br /&gt;
* 2&lt;br /&gt;
|nparameters     = 0&lt;br /&gt;
|components      = A, B, C, E&lt;br /&gt;
|License         = NA&lt;br /&gt;
|Creator         = [[User:Himpe]]&lt;br /&gt;
|Editor          = &lt;br /&gt;
* [[User:Himpe]]&lt;br /&gt;
|Zenodo-link     = NA&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
These benchmarks originate from [[wikipedia:Very_Large_Scale_Integration|VLSI]] circuits.&lt;br /&gt;
Specifically [[wikipedia:RLC_circuit|resistor-capacitor-inductor]] circuits, which can be represented by first order descriptor systems,&lt;br /&gt;
following a modeling process based on the two [[wikipedia:Kirchhoff&#039;s_circuit_laws|Kirchhoff&#039;s circuit laws]] and the [[wikipedia:Modified_nodal_analysis| branch constitutive relations]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===PEEC Problem===&lt;br /&gt;
This RCL circuit is a [[wikipedia:Partial_element_equivalent_circuit|PEEC]] discretization&amp;lt;ref name=&amp;quot;ruehli1974&amp;quot;/&amp;gt; and has 2100 capacitors, 172 inductors, 6990 inductive couplings, as well as a resistive source&amp;lt;ref name=&amp;quot;feldmann1995&amp;quot;/&amp;gt;,&amp;lt;ref name=&amp;quot;freund2005&amp;quot;/&amp;gt;.&lt;br /&gt;
The resulting model has 306 states, and two inputs and outputs.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Package Problem===&lt;br /&gt;
The second problem models a 64-pin package of an [[wikipedia:RF_circuit|RF]] circuit.&lt;br /&gt;
A subset of eight pins carry signals, which leads to sixteen terminals (eight interior and eight exterior)&amp;lt;ref name=&amp;quot;bai1997&amp;quot;/&amp;gt;,&amp;lt;ref name=&amp;quot;freund2005&amp;quot;/&amp;gt;.&lt;br /&gt;
The resulting model has 1841 states, and sixteen inputs and outputs.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Origin==&lt;br /&gt;
&lt;br /&gt;
This benchmark is part of the &#039;&#039;&#039;Oberwolfach Benchmark Collection&#039;&#039;&#039;&amp;lt;ref name=&amp;quot;korvink2005&amp;quot;/&amp;gt;; see &amp;lt;ref name=&amp;quot;freund2005&amp;quot;/&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Data==&lt;br /&gt;
&lt;br /&gt;
The PEEC problem and package problem are available as MATLAB [https://www.mathworks.com/help/matlab/import_export/mat-file-versions.html .mat] files, providing the &amp;lt;math&amp;gt;A&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;B&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;E&amp;lt;/math&amp;gt; matrices,&lt;br /&gt;
while &amp;lt;math&amp;gt;C = B^\intercal&amp;lt;/math&amp;gt; is assumed:&lt;br /&gt;
&lt;br /&gt;
* [[Media:PEEC.zip|PEEC.zip]] (32.8KB)&lt;br /&gt;
* [[Media:Package.zip|Package.zip]] (78.7KB)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Dimensions==&lt;br /&gt;
&lt;br /&gt;
System structure:&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;&lt;br /&gt;
\begin{align}&lt;br /&gt;
E \dot{x}(t) &amp;amp;= Ax(t) + Bu(t) \\&lt;br /&gt;
y(t) &amp;amp;= Cx(t)&lt;br /&gt;
\end{align}&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
System dimensions:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;E \in \mathbb{R}^{N \times N}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;A \in \mathbb{R}^{N \times N}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;B \in \mathbb{R}^{N \times M}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;C \in \mathbb{R}^{M \times N}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
System variants:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;N = 306&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;M = 2&amp;lt;/math&amp;gt;, for the PEEC problem, and &amp;lt;math&amp;gt;N = 1841&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;M = 16&amp;lt;/math&amp;gt; for the package problem.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Citation==&lt;br /&gt;
&lt;br /&gt;
To cite this benchmark, use the following references:&lt;br /&gt;
&lt;br /&gt;
* For the benchmark itself and its data:&lt;br /&gt;
::The MORwiki Community, &#039;&#039;&#039;RCL Circuit Equations&#039;&#039;&#039;. MORwiki - Model Order Reduction Wiki, 2019. http://modelreduction.org/index.php/RCL_Circuit_Equations&lt;br /&gt;
&lt;br /&gt;
 @MISC{morwiki_convection,&lt;br /&gt;
   author =       &amp;lt;nowiki&amp;gt;{{The MORwiki Community}}&amp;lt;/nowiki&amp;gt;,&lt;br /&gt;
   title =        {RCL Circuit Equations},&lt;br /&gt;
   howpublished = {{MORwiki} -- Model Order Reduction Wiki},&lt;br /&gt;
   url =          &amp;lt;nowiki&amp;gt;{https://modelreduction.org/morwiki/RCL_Circuit_Equations}&amp;lt;/nowiki&amp;gt;,&lt;br /&gt;
   year =         {20XX}&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
* For the background on the benchmark:&lt;br /&gt;
&lt;br /&gt;
 @INCOLLECTION{morFre05,&lt;br /&gt;
   author =       &amp;lt;nowiki&amp;gt;{R.W. Freund}&amp;lt;/nowiki&amp;gt;,&lt;br /&gt;
   title =        {RCL Circuit Equations},&lt;br /&gt;
   booktitle =    {Dimension Reduction of Large-Scale Systems},&lt;br /&gt;
   pages =        {367--371),&lt;br /&gt;
   year =         {2005},&lt;br /&gt;
   doi =          {10.1007/3-540-27909-1_22}&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;ruehli1974&amp;quot;&amp;gt;A.E. Ruehli, &amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1109/TMTT.1974.1128204 Equivalent Circuit Models for Three-Dimensional Multiconductor Systems]&amp;lt;/span&amp;gt;, IEEE Transactions on Microwave Theory and Techniques 22(1): 216--221, 1974.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;feldmann1995&amp;quot;&amp;gt; P. Feldmann, R.W. Freund , &amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1109/43.384428 Efficient linear circuit analysis by Pade approximation via the Lanczos process]&amp;lt;/span&amp;gt;, IEEE Transactions on Computer-Aided Design of Integrated Circuits and Systems 14(5): 639--649, 1995.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;bai1997&amp;quot;&amp;gt;Z. Bai, P. Feldmann, R.W. Freund, &amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.34.7763&amp;amp;rep=rep1&amp;amp;type=pdf Equivalent Stable and Passive Reduced-Order Models Based on Partial Pade Approximation Via the Lanczos Process]&amp;lt;/span&amp;gt;, Numerical Analysis Manuscript 97(3): 1--17, 1997.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;korvink2005&amp;quot;&amp;gt; J.G. Korvink, E.B. Rudnyi, &amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1007/3-540-27909-1_11 Oberwolfach Benchmark Collection]&amp;lt;/span&amp;gt;, Dimension Reduction of Large-Scale Systems, Lecture Notes in Computational Science and Engineering, vol 45: 311--315, 2005.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;freund2005&amp;quot;&amp;gt; R.W. Freund, &amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1007/3-540-27909-1_22 RCL Circuit Equations]&amp;lt;/span&amp;gt;, Dimension Reduction of Large-Scale Systems, Lecture Notes in Computational Science and Engineering, vol 45: 367--371, 2005.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=PyMOR&amp;diff=3996</id>
		<title>PyMOR</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=PyMOR&amp;diff=3996"/>
		<updated>2026-01-12T11:06:49Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Software]]&lt;br /&gt;
[[Category:Python]]&lt;br /&gt;
&lt;br /&gt;
== Synopsis ==&lt;br /&gt;
&lt;br /&gt;
[https://pymor.org pyMOR] is a [https://opensource.org/licenses/BSD-2-Clause BSD-licensed] software library for building model order reduction applications in the [[:Wikipedia:Python_(programming_language)|Python programming language]].&lt;br /&gt;
All algorithms in &#039;&#039;&#039;pyMOR&#039;&#039;&#039; are formulated in terms of abstract interfaces, allowing generic implementations to work with different backends, from NumPy/SciPy to external partial differential equation solver packages.&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
&lt;br /&gt;
Currently, the following model reduction algorithms are provided by &#039;&#039;&#039;pyMOR&#039;&#039;&#039;:&lt;br /&gt;
* A generic reduction routine for projection of arbitrary high-dimensional discretizations onto reduced spaces, preserving (possibly nested) affine decompositions of operators and functionals for efficient offline/online decomposition.&lt;br /&gt;
* Efficient error estimation for linear affinely decomposed problems.&lt;br /&gt;
* Empirical interpolation of arbitrary operators (with efficient evaluation of projected interpolated operators if the operator supports restriction to selected degrees of freedom).&lt;br /&gt;
* Parallel adaptive greedy and POD algorithms for reduced space construction.&lt;br /&gt;
* Empirical-Interpolation-Greedy and DEIM algorithms for generation of interpolation data for empirical operator interpolation.&lt;br /&gt;
* Balanced-based and interpolation-based reduction methods for first-order, second-order, and port-Hamiltonian linear time-invariant systems.&lt;br /&gt;
* Model order reduction using artificial neural networks.&lt;br /&gt;
* Data-driven model order reduction with Dynamic Mode Decomposition, Loewner matrices, Eigensystem Realization, and parametric AAA.&lt;br /&gt;
* Data-driven model order reduction using machine learning methods such as artificial neural networks or the Vectorial Kernel Orthogonal Greedy Algorithm (VKOGA).&lt;br /&gt;
* [[:Wikipedia:Gram_schmidt|Gram-Schmidt algorithm]] supporting re-orthogonalization for improved numerical accuracy.&lt;br /&gt;
* Time-stepping and Newton algorithms, as well as generic iterative linear solvers.&lt;br /&gt;
* Low-rank alternating direction implicit (LR ADI) method for large-scale Lyapunov equations and bindings for matric equations solvers in [https://www.slicot.org SLICOT] (via [https://github.com/python-control/Slycot slycot]) and [https://www.mpi-magdeburg.mpg.de/projects/mess Py-M.E.S.S].&lt;br /&gt;
* Eigenvalue/pole computation using the implicitly restarted Arnoldi method and the subspace accelerated dominant pole (SAMDP) algorithm.&lt;br /&gt;
* Modal truncation for linear time-invariant systems.&lt;br /&gt;
* Time-dependent parameters.&lt;br /&gt;
&lt;br /&gt;
All these algorithms are formulated in terms of abstract interfaces for seamless integration with external high-dimensional PDE solvers.&lt;br /&gt;
Bindings for the following PDE solver libraries are available:&lt;br /&gt;
* [https://www.dealii.org/ deal.II]&lt;br /&gt;
* [https://dune-project.org/ DUNE]&lt;br /&gt;
* [https://fenicsproject.org/ FEniCS]&lt;br /&gt;
* [https://fenicsproject.org/ FEniCSx]&lt;br /&gt;
* [https://sourceforge.net/projects/ngsolve/ NGSolve]&lt;br /&gt;
* [https://scikit-fem.readthedocs.io/ scikit-fem] (experimental)&lt;br /&gt;
&lt;br /&gt;
Pure Python implementations of discretizations using the [https://numpy.org NumPy]/[https://scipy.org SciPy] scientific computing stack are implemented to provide an easy-to-use sandbox for experimentation with new model reduction approaches. &#039;&#039;&#039;pyMOR&#039;&#039;&#039; offers:&lt;br /&gt;
* Structured 1D and 2D grids, as well as an experimental Gmsh-based grid, implementing the same abstract grid interface.&lt;br /&gt;
* [[:Wikipedia:Finite_element|Finite element]] and [[:Wikipedia:Finite_volume|finite volume]] operators based on this interface.&lt;br /&gt;
* SciPy/[http://crd-legacy.lbl.gov/~xiaoye/SuperLU SuperLU] based iterative and direct solvers for sparse systems.&lt;br /&gt;
* [[:Wikipedia:Opengl|OpenGL]], [https://matplotlib.org matplotlib], and [https://github.com/K3D-tools/K3D-jupyter k3d] based visualizations of solutions.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* M. Ohlberger, S. Rave, S. Schmidt, S. Zhang. &amp;quot;[https://doi.org/10.1007/978-3-319-05591-6_69 A Model Reduction Framework for Efficient Simulation of Li-Ion Batteries]&amp;quot;. Springer Proceedings in Mathematics &amp;amp; Statistics Vol. 78: Finite Volumes for Complex Applications VII-Elliptic, Parabolic and Hyperbolic Problems, Berlin, June 2014.&lt;br /&gt;
* R. Milk, S. Rave, F. Schindler. &amp;quot;[https://doi.org/10.1137/15M1026614 pyMOR - Generic Algorithms and Interfaces for Model Order Reduction]&amp;quot;. SIAM Journal on Scientific Computing 38(5): S194--S216, 2016.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* Official [https://pymor.org website],&lt;br /&gt;
* Development of &#039;&#039;&#039;pyMOR&#039;&#039;&#039; can be tracked on [https://github.com/pymor/pymor GitHub],&lt;br /&gt;
* Online [https://docs.pymor.org documentation].&lt;br /&gt;
&lt;br /&gt;
== Contact ==&lt;br /&gt;
For assistance with, and contributions to &#039;&#039;&#039;pyMOR&#039;&#039;&#039;, the developers can be contacted via [https://github.com/pymor/pymor/discussions GitHub discussions].&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=Comparison_of_Software&amp;diff=3995</id>
		<title>Comparison of Software</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=Comparison_of_Software&amp;diff=3995"/>
		<updated>2026-01-12T11:04:13Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:software]]&lt;br /&gt;
&lt;br /&gt;
The following table provides a &#039;&#039;&#039;Comparison of Software&#039;&#039;&#039; for the model reduction software projects listed in the MORwiki.&lt;br /&gt;
For more information on MOR software (especially packages listed in the MORwiki), see &amp;lt;ref name=&amp;quot;haasdonk21&amp;quot;/&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; style=&amp;quot;text-align: center; width: auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Linear&lt;br /&gt;
! Nonlinear&lt;br /&gt;
! First Order&lt;br /&gt;
! Second Order&lt;br /&gt;
! Parametric&lt;br /&gt;
! DAE&lt;br /&gt;
! Dense&lt;br /&gt;
! Sparse&lt;br /&gt;
!&lt;br /&gt;
! Latest Version&lt;br /&gt;
! License&lt;br /&gt;
! Language&lt;br /&gt;
|-&lt;br /&gt;
! [[DPA|DPA]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[Emgr|emgr]]&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
|&lt;br /&gt;
| 5.99 (04.2022)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[EZyRB|EZyRB]]&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|&lt;br /&gt;
| 1.1 (10.2020)&lt;br /&gt;
| [https://spdx.org/licenses/MIT.html MIT]&lt;br /&gt;
| Python&lt;br /&gt;
|-&lt;br /&gt;
! [[ITHACA-FV]]&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 2.1 (02.2019)&lt;br /&gt;
| [https://spdx.org/licenses/LGPL-3.0.html LGPL-3.0]&lt;br /&gt;
| C++&lt;br /&gt;
|-&lt;br /&gt;
! [[ITHACA-SEM]]&lt;br /&gt;
| (Yes)&lt;br /&gt;
| (Yes)&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| (02.2019)&lt;br /&gt;
| [https://spdx.org/licenses/MIT.html MIT]&lt;br /&gt;
| C++&lt;br /&gt;
|-&lt;br /&gt;
! [[MESS]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 3.1 (Matlab),&amp;lt;br /&amp;gt; 1.0 (C, Python, Julia)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause] (Matlab). &amp;lt;br /&amp;gt; [https://spdx.org/licenses/GPL-2.0.html GPL-2.0] (C, Python, Julia)&lt;br /&gt;
| C, Matlab, Python, Julia&lt;br /&gt;
|-&lt;br /&gt;
! [[MOR Toolbox]]&lt;br /&gt;
| Yes&lt;br /&gt;
| (on-going)&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 1.1 (Dec. 2020)&lt;br /&gt;
| [http://mordigitalsystems.fr/en/ MOR Digital Systems]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[MOREMBS]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| C++, Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[MORLAB]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
|&lt;br /&gt;
| 6.0 (09.2023)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[MORPACK]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| v3.0.099 (07.2015)&lt;br /&gt;
| ?&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [https://www.mw.tum.de/rt/forschung/modellordnungsreduktion/software/psssmor/ psssMOR]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| (No)&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 1.00 (09.2017)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[PyDMD|PyDMD]]&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|&lt;br /&gt;
| 0.3 (07.2020)&lt;br /&gt;
| [https://spdx.org/licenses/MIT.html MIT]&lt;br /&gt;
| Python&lt;br /&gt;
|-&lt;br /&gt;
! [[PyMOR|pyMOR]]&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| (No)&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 2025.2.0 (01.2026)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause]&lt;br /&gt;
| Python&lt;br /&gt;
|-&lt;br /&gt;
! [[sssMOR]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| (No)&lt;br /&gt;
| (Yes)&lt;br /&gt;
| (No)&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 2.00 (09.2017)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[RBmatlab]]&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 1.16.09 (09.2016)&lt;br /&gt;
| [https://spdx.org/licenses/AFL-3.0.html AFL-3.0]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[RBniCS]]&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 0.1.0 (06.2019)&lt;br /&gt;
| [https://spdx.org/licenses/LGPL-3.0.html LGPL-3.0]&lt;br /&gt;
| Python&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
See also: [[Further Software]]&lt;br /&gt;
&lt;br /&gt;
References:&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;haasdonk21&amp;quot;&amp;gt;B. Haasdonk &amp;quot;&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1515/9783110499001-013 MOR Software]&amp;lt;/span&amp;gt;&amp;quot;, Model Order Reduction, Volume 3: Applications: 431--460, 2021.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=Comparison_of_Software&amp;diff=3994</id>
		<title>Comparison of Software</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=Comparison_of_Software&amp;diff=3994"/>
		<updated>2025-09-10T12:48:17Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:software]]&lt;br /&gt;
&lt;br /&gt;
The following table provides a &#039;&#039;&#039;Comparison of Software&#039;&#039;&#039; for the model reduction software projects listed in the MORwiki.&lt;br /&gt;
For more information on MOR software (especially packages listed in the MORwiki), see &amp;lt;ref name=&amp;quot;haasdonk21&amp;quot;/&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; style=&amp;quot;text-align: center; width: auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Linear&lt;br /&gt;
! Nonlinear&lt;br /&gt;
! First Order&lt;br /&gt;
! Second Order&lt;br /&gt;
! Parametric&lt;br /&gt;
! DAE&lt;br /&gt;
! Dense&lt;br /&gt;
! Sparse&lt;br /&gt;
!&lt;br /&gt;
! Latest Version&lt;br /&gt;
! License&lt;br /&gt;
! Language&lt;br /&gt;
|-&lt;br /&gt;
! [[DPA|DPA]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[Emgr|emgr]]&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
|&lt;br /&gt;
| 5.99 (04.2022)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[EZyRB|EZyRB]]&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|&lt;br /&gt;
| 1.1 (10.2020)&lt;br /&gt;
| [https://spdx.org/licenses/MIT.html MIT]&lt;br /&gt;
| Python&lt;br /&gt;
|-&lt;br /&gt;
! [[ITHACA-FV]]&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 2.1 (02.2019)&lt;br /&gt;
| [https://spdx.org/licenses/LGPL-3.0.html LGPL-3.0]&lt;br /&gt;
| C++&lt;br /&gt;
|-&lt;br /&gt;
! [[ITHACA-SEM]]&lt;br /&gt;
| (Yes)&lt;br /&gt;
| (Yes)&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| (02.2019)&lt;br /&gt;
| [https://spdx.org/licenses/MIT.html MIT]&lt;br /&gt;
| C++&lt;br /&gt;
|-&lt;br /&gt;
! [[MESS]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 3.1 (Matlab),&amp;lt;br /&amp;gt; 1.0 (C, Python, Julia)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause] (Matlab). &amp;lt;br /&amp;gt; [https://spdx.org/licenses/GPL-2.0.html GPL-2.0] (C, Python, Julia)&lt;br /&gt;
| C, Matlab, Python, Julia&lt;br /&gt;
|-&lt;br /&gt;
! [[MOR Toolbox]]&lt;br /&gt;
| Yes&lt;br /&gt;
| (on-going)&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 1.1 (Dec. 2020)&lt;br /&gt;
| [http://mordigitalsystems.fr/en/ MOR Digital Systems]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[MOREMBS]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| C++, Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[MORLAB]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
|&lt;br /&gt;
| 6.0 (09.2023)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[MORPACK]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| v3.0.099 (07.2015)&lt;br /&gt;
| ?&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [https://www.mw.tum.de/rt/forschung/modellordnungsreduktion/software/psssmor/ psssMOR]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| (No)&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 1.00 (09.2017)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[PyDMD|PyDMD]]&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|&lt;br /&gt;
| 0.3 (07.2020)&lt;br /&gt;
| [https://spdx.org/licenses/MIT.html MIT]&lt;br /&gt;
| Python&lt;br /&gt;
|-&lt;br /&gt;
! [[PyMOR|pyMOR]]&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| (No)&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 2025.1.2 (09.2025)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause]&lt;br /&gt;
| Python&lt;br /&gt;
|-&lt;br /&gt;
! [[sssMOR]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| (No)&lt;br /&gt;
| (Yes)&lt;br /&gt;
| (No)&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 2.00 (09.2017)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[RBmatlab]]&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 1.16.09 (09.2016)&lt;br /&gt;
| [https://spdx.org/licenses/AFL-3.0.html AFL-3.0]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[RBniCS]]&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 0.1.0 (06.2019)&lt;br /&gt;
| [https://spdx.org/licenses/LGPL-3.0.html LGPL-3.0]&lt;br /&gt;
| Python&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
See also: [[Further Software]]&lt;br /&gt;
&lt;br /&gt;
References:&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;haasdonk21&amp;quot;&amp;gt;B. Haasdonk &amp;quot;&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1515/9783110499001-013 MOR Software]&amp;lt;/span&amp;gt;&amp;quot;, Model Order Reduction, Volume 3: Applications: 431--460, 2021.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=Comparison_of_Software&amp;diff=3993</id>
		<title>Comparison of Software</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=Comparison_of_Software&amp;diff=3993"/>
		<updated>2025-09-05T11:59:14Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:software]]&lt;br /&gt;
&lt;br /&gt;
The following table provides a &#039;&#039;&#039;Comparison of Software&#039;&#039;&#039; for the model reduction software projects listed in the MORwiki.&lt;br /&gt;
For more information on MOR software (especially packages listed in the MORwiki), see &amp;lt;ref name=&amp;quot;haasdonk21&amp;quot;/&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; style=&amp;quot;text-align: center; width: auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Linear&lt;br /&gt;
! Nonlinear&lt;br /&gt;
! First Order&lt;br /&gt;
! Second Order&lt;br /&gt;
! Parametric&lt;br /&gt;
! DAE&lt;br /&gt;
! Dense&lt;br /&gt;
! Sparse&lt;br /&gt;
!&lt;br /&gt;
! Latest Version&lt;br /&gt;
! License&lt;br /&gt;
! Language&lt;br /&gt;
|-&lt;br /&gt;
! [[DPA|DPA]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[Emgr|emgr]]&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
|&lt;br /&gt;
| 5.99 (04.2022)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[EZyRB|EZyRB]]&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|&lt;br /&gt;
| 1.1 (10.2020)&lt;br /&gt;
| [https://spdx.org/licenses/MIT.html MIT]&lt;br /&gt;
| Python&lt;br /&gt;
|-&lt;br /&gt;
! [[ITHACA-FV]]&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 2.1 (02.2019)&lt;br /&gt;
| [https://spdx.org/licenses/LGPL-3.0.html LGPL-3.0]&lt;br /&gt;
| C++&lt;br /&gt;
|-&lt;br /&gt;
! [[ITHACA-SEM]]&lt;br /&gt;
| (Yes)&lt;br /&gt;
| (Yes)&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| (02.2019)&lt;br /&gt;
| [https://spdx.org/licenses/MIT.html MIT]&lt;br /&gt;
| C++&lt;br /&gt;
|-&lt;br /&gt;
! [[MESS]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 3.1 (Matlab),&amp;lt;br /&amp;gt; 1.0 (C, Python, Julia)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause] (Matlab). &amp;lt;br /&amp;gt; [https://spdx.org/licenses/GPL-2.0.html GPL-2.0] (C, Python, Julia)&lt;br /&gt;
| C, Matlab, Python, Julia&lt;br /&gt;
|-&lt;br /&gt;
! [[MOR Toolbox]]&lt;br /&gt;
| Yes&lt;br /&gt;
| (on-going)&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 1.1 (Dec. 2020)&lt;br /&gt;
| [http://mordigitalsystems.fr/en/ MOR Digital Systems]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[MOREMBS]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| C++, Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[MORLAB]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
|&lt;br /&gt;
| 6.0 (09.2023)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[MORPACK]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| v3.0.099 (07.2015)&lt;br /&gt;
| ?&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [https://www.mw.tum.de/rt/forschung/modellordnungsreduktion/software/psssmor/ psssMOR]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| (No)&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 1.00 (09.2017)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[PyDMD|PyDMD]]&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|&lt;br /&gt;
| 0.3 (07.2020)&lt;br /&gt;
| [https://spdx.org/licenses/MIT.html MIT]&lt;br /&gt;
| Python&lt;br /&gt;
|-&lt;br /&gt;
! [[PyMOR|pyMOR]]&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| (No)&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 2025.1.1 (09.2025)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause]&lt;br /&gt;
| Python&lt;br /&gt;
|-&lt;br /&gt;
! [[sssMOR]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| (No)&lt;br /&gt;
| (Yes)&lt;br /&gt;
| (No)&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 2.00 (09.2017)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[RBmatlab]]&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 1.16.09 (09.2016)&lt;br /&gt;
| [https://spdx.org/licenses/AFL-3.0.html AFL-3.0]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[RBniCS]]&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 0.1.0 (06.2019)&lt;br /&gt;
| [https://spdx.org/licenses/LGPL-3.0.html LGPL-3.0]&lt;br /&gt;
| Python&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
See also: [[Further Software]]&lt;br /&gt;
&lt;br /&gt;
References:&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;haasdonk21&amp;quot;&amp;gt;B. Haasdonk &amp;quot;&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1515/9783110499001-013 MOR Software]&amp;lt;/span&amp;gt;&amp;quot;, Model Order Reduction, Volume 3: Applications: 431--460, 2021.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=Comparison_of_Software&amp;diff=3992</id>
		<title>Comparison of Software</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=Comparison_of_Software&amp;diff=3992"/>
		<updated>2025-09-05T11:57:54Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:software]]&lt;br /&gt;
&lt;br /&gt;
The following table provides a &#039;&#039;&#039;Comparison of Software&#039;&#039;&#039; for the model reduction software projects listed in the MORwiki.&lt;br /&gt;
For more information on MOR software (especially packages listed in the MORwiki), see &amp;lt;ref name=&amp;quot;haasdonk21&amp;quot;/&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; style=&amp;quot;text-align: center; width: auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Linear&lt;br /&gt;
! Nonlinear&lt;br /&gt;
! First Order&lt;br /&gt;
! Second Order&lt;br /&gt;
! Parametric&lt;br /&gt;
! DAE&lt;br /&gt;
! Dense&lt;br /&gt;
! Sparse&lt;br /&gt;
!&lt;br /&gt;
! Latest Version&lt;br /&gt;
! License&lt;br /&gt;
! Language&lt;br /&gt;
|-&lt;br /&gt;
! [[DPA|DPA]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[Emgr|emgr]]&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
|&lt;br /&gt;
| 5.99 (04.2022)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[EZyRB|EZyRB]]&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|&lt;br /&gt;
| 1.1 (10.2020)&lt;br /&gt;
| [https://spdx.org/licenses/MIT.html MIT]&lt;br /&gt;
| Python&lt;br /&gt;
|-&lt;br /&gt;
! [[ITHACA-FV]]&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 2.1 (02.2019)&lt;br /&gt;
| [https://spdx.org/licenses/LGPL-3.0.html LGPL-3.0]&lt;br /&gt;
| C++&lt;br /&gt;
|-&lt;br /&gt;
! [[ITHACA-SEM]]&lt;br /&gt;
| (Yes)&lt;br /&gt;
| (Yes)&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| (02.2019)&lt;br /&gt;
| [https://spdx.org/licenses/MIT.html MIT]&lt;br /&gt;
| C++&lt;br /&gt;
|-&lt;br /&gt;
! [[MESS]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 2.2 (Matlab),&amp;lt;br /&amp;gt; 1.0 (C, Python, Julia)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause] (Matlab). &amp;lt;br /&amp;gt; [https://spdx.org/licenses/GPL-2.0.html GPL-2.0] (C, Python, Julia)&lt;br /&gt;
| C, Matlab, Python, Julia&lt;br /&gt;
|-&lt;br /&gt;
! [[MOR Toolbox]]&lt;br /&gt;
| Yes&lt;br /&gt;
| (on-going)&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 1.1 (Dec. 2020)&lt;br /&gt;
| [http://mordigitalsystems.fr/en/ MOR Digital Systems]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[MOREMBS]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| C++, Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[MORLAB]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
|&lt;br /&gt;
| 6.0 (09.2023)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[MORPACK]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| v3.0.099 (07.2015)&lt;br /&gt;
| ?&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [https://www.mw.tum.de/rt/forschung/modellordnungsreduktion/software/psssmor/ psssMOR]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| (No)&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 1.00 (09.2017)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[PyDMD|PyDMD]]&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|&lt;br /&gt;
| 0.3 (07.2020)&lt;br /&gt;
| [https://spdx.org/licenses/MIT.html MIT]&lt;br /&gt;
| Python&lt;br /&gt;
|-&lt;br /&gt;
! [[PyMOR|pyMOR]]&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| (No)&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 2025.1.1 (09.2025)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause]&lt;br /&gt;
| Python&lt;br /&gt;
|-&lt;br /&gt;
! [[sssMOR]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| (No)&lt;br /&gt;
| (Yes)&lt;br /&gt;
| (No)&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 2.00 (09.2017)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[RBmatlab]]&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 1.16.09 (09.2016)&lt;br /&gt;
| [https://spdx.org/licenses/AFL-3.0.html AFL-3.0]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[RBniCS]]&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 0.1.0 (06.2019)&lt;br /&gt;
| [https://spdx.org/licenses/LGPL-3.0.html LGPL-3.0]&lt;br /&gt;
| Python&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
See also: [[Further Software]]&lt;br /&gt;
&lt;br /&gt;
References:&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;haasdonk21&amp;quot;&amp;gt;B. Haasdonk &amp;quot;&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1515/9783110499001-013 MOR Software]&amp;lt;/span&amp;gt;&amp;quot;, Model Order Reduction, Volume 3: Applications: 431--460, 2021.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=Comparison_of_Software&amp;diff=3991</id>
		<title>Comparison of Software</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=Comparison_of_Software&amp;diff=3991"/>
		<updated>2025-09-05T11:55:28Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:software]]&lt;br /&gt;
&lt;br /&gt;
The following table provides a &#039;&#039;&#039;Comparison of Software&#039;&#039;&#039; for the model reduction software projects listed in the MORwiki.&lt;br /&gt;
For more information on MOR software (especially packages listed in the MORwiki), see &amp;lt;ref name=&amp;quot;haasdonk21&amp;quot;/&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; style=&amp;quot;text-align: center; width: auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Linear&lt;br /&gt;
! Nonlinear&lt;br /&gt;
! First Order&lt;br /&gt;
! Second Order&lt;br /&gt;
! Parametric&lt;br /&gt;
! DAE&lt;br /&gt;
! Dense&lt;br /&gt;
! Sparse&lt;br /&gt;
!&lt;br /&gt;
! Latest Version&lt;br /&gt;
! License&lt;br /&gt;
! Language&lt;br /&gt;
|-&lt;br /&gt;
! [[DPA|DPA]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[Emgr|emgr]]&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
|&lt;br /&gt;
| 5.99 (04.2022)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[EZyRB|EZyRB]]&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|&lt;br /&gt;
| 1.1 (10.2020)&lt;br /&gt;
| [https://spdx.org/licenses/MIT.html MIT]&lt;br /&gt;
| Python&lt;br /&gt;
|-&lt;br /&gt;
! [[ITHACA-FV]]&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 2.1 (02.2019)&lt;br /&gt;
| [https://spdx.org/licenses/LGPL-3.0.html LGPL-3.0]&lt;br /&gt;
| C++&lt;br /&gt;
|-&lt;br /&gt;
! [[ITHACA-SEM]]&lt;br /&gt;
| (Yes)&lt;br /&gt;
| (Yes)&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| (02.2019)&lt;br /&gt;
| [https://spdx.org/licenses/MIT.html MIT]&lt;br /&gt;
| C++&lt;br /&gt;
|-&lt;br /&gt;
! [[MESS]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 2.2 (Matlab),&amp;lt;br /&amp;gt; 1.0 (C, Python, Julia)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause] (Matlab). &amp;lt;br /&amp;gt; [https://spdx.org/licenses/GPL-2.0.html GPL-2.0] (C, Python, Julia)&lt;br /&gt;
| C, Matlab, Python, Julia&lt;br /&gt;
|-&lt;br /&gt;
! [[MOR Toolbox]]&lt;br /&gt;
| Yes&lt;br /&gt;
| (on-going)&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 1.1 (Dec. 2020)&lt;br /&gt;
| [http://mordigitalsystems.fr/en/ MOR Digital Systems]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[MOREMBS]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| C++, Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[MORLAB]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
|&lt;br /&gt;
| 5.0 (08.2019)&lt;br /&gt;
| [https://spdx.org/licenses/AGPL-3.0.html AGPL-3.0]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[MORPACK]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| v3.0.099 (07.2015)&lt;br /&gt;
| ?&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [https://www.mw.tum.de/rt/forschung/modellordnungsreduktion/software/psssmor/ psssMOR]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| (No)&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 1.00 (09.2017)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[PyDMD|PyDMD]]&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|&lt;br /&gt;
| 0.3 (07.2020)&lt;br /&gt;
| [https://spdx.org/licenses/MIT.html MIT]&lt;br /&gt;
| Python&lt;br /&gt;
|-&lt;br /&gt;
! [[PyMOR|pyMOR]]&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| (No)&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 2025.1.1 (09.2025)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause]&lt;br /&gt;
| Python&lt;br /&gt;
|-&lt;br /&gt;
! [[sssMOR]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| (No)&lt;br /&gt;
| (Yes)&lt;br /&gt;
| (No)&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 2.00 (09.2017)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[RBmatlab]]&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 1.16.09 (09.2016)&lt;br /&gt;
| [https://spdx.org/licenses/AFL-3.0.html AFL-3.0]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[RBniCS]]&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 0.1.0 (06.2019)&lt;br /&gt;
| [https://spdx.org/licenses/LGPL-3.0.html LGPL-3.0]&lt;br /&gt;
| Python&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
See also: [[Further Software]]&lt;br /&gt;
&lt;br /&gt;
References:&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;haasdonk21&amp;quot;&amp;gt;B. Haasdonk &amp;quot;&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1515/9783110499001-013 MOR Software]&amp;lt;/span&amp;gt;&amp;quot;, Model Order Reduction, Volume 3: Applications: 431--460, 2021.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=Convective_Thermal_Flow&amp;diff=3990</id>
		<title>Convective Thermal Flow</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=Convective_Thermal_Flow&amp;diff=3990"/>
		<updated>2025-07-03T08:23:42Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:benchmark]]&lt;br /&gt;
[[Category:Oberwolfach]]&lt;br /&gt;
[[Category:linear]]&lt;br /&gt;
[[Category:time invariant]]&lt;br /&gt;
[[Category:first differential order]]&lt;br /&gt;
[[Category:MIMO]]&lt;br /&gt;
[[Category:sparse]]&lt;br /&gt;
&lt;br /&gt;
{{Infobox&lt;br /&gt;
|Title           = Convective Thermal Flow&lt;br /&gt;
|Benchmark ID    = &lt;br /&gt;
* ctfChipCoolingv0_n20082m1q5&lt;br /&gt;
* ctfChipCoolingv01_n20082m1q5&lt;br /&gt;
* ctfFlowMeterv0_n9669m1q5&lt;br /&gt;
* ctfFlowMeterv05_n9669m1q5&lt;br /&gt;
|Category        = oberwolfach&lt;br /&gt;
|System-Class    = LTI-FOS&lt;br /&gt;
|nstates         = &lt;br /&gt;
* 20082&lt;br /&gt;
* 20082&lt;br /&gt;
* 9669&lt;br /&gt;
* 9669&lt;br /&gt;
|ninputs         = 1&lt;br /&gt;
|noutputs        = 5&lt;br /&gt;
|nparameters     = 0&lt;br /&gt;
|components      = A, B, C, E&lt;br /&gt;
|License         = NA&lt;br /&gt;
|Creator         = C. Moosmann, E.B. Rudnyi, A. Greiner, J.G. Korvink&lt;br /&gt;
|Editor          = &lt;br /&gt;
* [[User:Himpe]]&lt;br /&gt;
|Zenodo-link     = NA&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Description: Convective Thermal Flow Problems==&lt;br /&gt;
&amp;lt;figure id=&amp;quot;fig1&amp;quot;&amp;gt;[[File:Convection1.jpg|490px|thumb|right|Figure 1: Convective heat flow example: 2D anemometer model]]&amp;lt;/figure&amp;gt;&lt;br /&gt;
&amp;lt;figure id=&amp;quot;fig2&amp;quot;&amp;gt;[[File:Convection2.jpg|490px|thumb|right|Figure 2: Convective heat flow example: 3D cooling structure]]&amp;lt;/figure&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Many thermal problems require simulation of heat exchange between a solid body and a fluid flow.&lt;br /&gt;
The most elaborate approach to this problem is [[wikipedia:Computational_fluid_dynamics|computational fluid dynamics]] (CFD).&lt;br /&gt;
However, CFD is computationally expensive.&lt;br /&gt;
A popular solution is to exclude the flow completely from the computational domain and to use convection boundary conditions for the solid model.&lt;br /&gt;
However, caution has to be taken to select the [[wikipedia:Heat_transfer_coefficient|film coefficient]].&lt;br /&gt;
&lt;br /&gt;
An intermediate level is to include a flow region with a given velocity profile that adds convective transport to the model.&lt;br /&gt;
Compared to convection boundary conditions this approach has the advantage that the film coefficient does not need to be specified and that information about the heat profile in the flow can be obtained.&lt;br /&gt;
A drawback of the method is the greatly increased number of elements needed to perform a physically valid simulation because the solution accuracy when employing upwind finite element schemes depends on the element size.&lt;br /&gt;
While this problem still is linear, due to the forced convection, the conductivity matrix changes from a symmetric matrix to an un-symmetric one.&lt;br /&gt;
So this problem type can be used as a benchmark for problems containing un-symmetric matrices.&lt;br /&gt;
&lt;br /&gt;
Two different designs are tested: a 2D model of an [[Anemometer|anemometer]]-like structure mainly consisting of a tube and a small heat source (Fig.&amp;amp;nbsp;1) &amp;lt;ref name=&amp;quot;ernst2001&amp;quot;/&amp;gt;.&lt;br /&gt;
The solid model has been generated and meshed in [http://www.ansys.com ANSYS].&lt;br /&gt;
Triangular &amp;lt;tt&amp;gt;PLANE55&amp;lt;/tt&amp;gt; elements have been used for meshing and discretizing by the finite element method, resulting in 19282 elements and 9710 nodes.&lt;br /&gt;
The second design is a 3D model of a chip cooled by forced convection (Fig.&amp;amp;nbsp;2) &amp;lt;ref name=&amp;quot;harper1997&amp;quot;/&amp;gt;.&lt;br /&gt;
In this case, the tetrahedral element type &amp;lt;tt&amp;gt;SOLID70&amp;lt;/tt&amp;gt; was used, resulting in 107989 elements and 20542 nodes.&lt;br /&gt;
Since the implementation of the convective term in ANSYS does not allow defining the fluid speed on a per-element basis but on a per-region one, the flow profile has to be approximated by piece-wise step functions.&lt;br /&gt;
The approximation used for these benchmarks is shown in Fig.&amp;amp;nbsp;1.&lt;br /&gt;
&lt;br /&gt;
The Dirichlet boundary conditions are applied to the original system.&lt;br /&gt;
In both models, the reference temperature is set to &amp;lt;math&amp;gt;300 \, \text{K}&amp;lt;/math&amp;gt;, and Dirichlet boundary conditions as well as initial conditions are set to &amp;lt;math&amp;gt;0&amp;lt;/math&amp;gt; with respect to the reference.&lt;br /&gt;
The specified Dirichlet boundary conditions are in both cases the inlet of the fluid and the outer faces of the solids. Matrices are supplied for the symmetric case (fluid speed is zero; no convection), and the non-symmetric case (with forced convection).&lt;br /&gt;
Table&amp;amp;#160;1 shows the output nodes specified for the two benchmarks, Table&amp;amp;#160;2 links the filenames according to the different cases.&lt;br /&gt;
&lt;br /&gt;
Practically, only a few nodes are considered quantities of interest.&lt;br /&gt;
Hence, a small subset of five nodes is selected as output nodes,&lt;br /&gt;
which are filtered from the discretized state by a linear transformation.&lt;br /&gt;
&lt;br /&gt;
==Origin==&lt;br /&gt;
&lt;br /&gt;
This benchmark is part of the &#039;&#039;&#039;Oberwolfach Benchmark Collection&#039;&#039;&#039;&amp;lt;ref name=&amp;quot;korvink2005&amp;quot;/&amp;gt;; No. 38867, see &amp;lt;ref name=&amp;quot;moosmann2005&amp;quot;/&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Data==&lt;br /&gt;
&lt;br /&gt;
Matrices are in the [http://math.nist.gov/MatrixMarket/ Matrix Market] format.&lt;br /&gt;
The matrix name is used as an extension of the matrix file.&lt;br /&gt;
&amp;lt;tt&amp;gt;*.C.names&amp;lt;/tt&amp;gt; contains a list of output names written consecutively.&lt;br /&gt;
The system matrices have been extracted from ANSYS models by means of [http://portal.uni-freiburg.de/imteksimulation/downloads/mor4fem mor4fem].&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin: auto;&amp;quot;&lt;br /&gt;
|+ style=&amp;quot;caption-side:bottom;&amp;quot;|&#039;&#039;Table 1: Output nodes for the two models.&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
!Model&lt;br /&gt;
!Number&lt;br /&gt;
!Code&lt;br /&gt;
!Comment&lt;br /&gt;
|-&lt;br /&gt;
|Flow Meter&lt;br /&gt;
|1&lt;br /&gt;
|out1&lt;br /&gt;
|outlet position&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|2&lt;br /&gt;
|out2&lt;br /&gt;
|outlet position&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|3&lt;br /&gt;
|SenL&lt;br /&gt;
|left sensor position&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|4&lt;br /&gt;
|Heater&lt;br /&gt;
|within the heater&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|5&lt;br /&gt;
|SenR&lt;br /&gt;
|right sensor position&lt;br /&gt;
|-&lt;br /&gt;
|Cooling Structure&lt;br /&gt;
|1&lt;br /&gt;
|out1&lt;br /&gt;
|outlet position&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|2&lt;br /&gt;
|out2&lt;br /&gt;
|outlet position&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|3&lt;br /&gt;
|out3&lt;br /&gt;
|outlet position&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|4&lt;br /&gt;
|out4&lt;br /&gt;
|outlet position&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|5&lt;br /&gt;
|Heater&lt;br /&gt;
|within the heater&lt;br /&gt;
|}&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin: auto;&amp;quot;&lt;br /&gt;
|+ style=&amp;quot;caption-side:bottom;&amp;quot;|&#039;&#039;Table 2: Provided files.&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
!Model&lt;br /&gt;
!Fluid Speed (m/s)&lt;br /&gt;
!Link&lt;br /&gt;
!Size&lt;br /&gt;
|-&lt;br /&gt;
|Flow Meter&lt;br /&gt;
|&amp;lt;math&amp;gt;0&amp;lt;/math&amp;gt;&lt;br /&gt;
|[https://csc.mpi-magdeburg.mpg.de/mpcsc/MORWIKI/Oberwolfach/Convection-dim1e4-flow_meter_model_v0.tgz Convection-dim1e4-flow_meter_model_v0.tgz]&lt;br /&gt;
|649.4 kB&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&amp;lt;math&amp;gt;0.5&amp;lt;/math&amp;gt;&lt;br /&gt;
|[https://csc.mpi-magdeburg.mpg.de/mpcsc/MORWIKI/Oberwolfach/Convection-dim1e4-flow_meter_model_v0.5.tgz Convection-dim1e4-flow_meter_model_v0.5.tgz]&lt;br /&gt;
|757.8 kB&lt;br /&gt;
|-&lt;br /&gt;
|Cooling Structure&lt;br /&gt;
|&amp;lt;math&amp;gt;0&amp;lt;/math&amp;gt;&lt;br /&gt;
|[https://csc.mpi-magdeburg.mpg.de/mpcsc/MORWIKI/Oberwolfach/Convection-dim1e4-chip_cooling_model_v0.tgz Convection-dim1e4-chip_cooling_model_v0.tgz]&lt;br /&gt;
|3.9 MB&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&amp;lt;math&amp;gt;0.1&amp;lt;/math&amp;gt;&lt;br /&gt;
|[https://csc.mpi-magdeburg.mpg.de/mpcsc/MORWIKI/Oberwolfach/Convection-dim1e4-chip_cooling_model_v0.1.tgz Convection-dim1e4-chip_cooling_model_v0.1.tgz]&lt;br /&gt;
|4.0 MB&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Further information on the models can be found in &amp;lt;ref name=&amp;quot;moosmann2004&amp;quot;/&amp;gt;,&lt;br /&gt;
where model reduction by means of the [[wikipedia:Arnoldi_iteration|Arnoldi algorithm]] is also presented.&lt;br /&gt;
&lt;br /&gt;
==Dimensions==&lt;br /&gt;
&lt;br /&gt;
System structure:&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;&lt;br /&gt;
\begin{align}&lt;br /&gt;
  E \dot{x}(t) &amp;amp;= A x(t) + B u(t) \\&lt;br /&gt;
  y(t) &amp;amp;= C x(t)&lt;br /&gt;
\end{align}&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
System dimensions:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;E \in \mathbb{R}^{n \times n}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;A \in \mathbb{R}^{n \times n}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;B \in \mathbb{R}^{n \times 1}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;C \in \mathbb{R}^{5 \times n}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
System variants:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;flow_v0&amp;lt;/tt&amp;gt;: &amp;lt;math&amp;gt;n = 9669&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;tt&amp;gt;flow_v0.5&amp;lt;/tt&amp;gt;: &amp;lt;math&amp;gt;n = 9669&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;tt&amp;gt;chip_v0&amp;lt;/tt&amp;gt;: &amp;lt;math&amp;gt;n = 20082&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;tt&amp;gt;chip_v0.1&amp;lt;/tt&amp;gt;: &amp;lt;math&amp;gt;n = 20082&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Citation==&lt;br /&gt;
&lt;br /&gt;
To cite this benchmark, use the following references:&lt;br /&gt;
&lt;br /&gt;
* For the benchmark itself and its data:&lt;br /&gt;
::The MORwiki Community, &#039;&#039;&#039;Convective Thermal Flow&#039;&#039;&#039;. MORwiki - Model Order Reduction Wiki, 2018. http://modelreduction.org/index.php/Convective_Thermal_Flow&lt;br /&gt;
&lt;br /&gt;
 @MISC{morwiki_convection,&lt;br /&gt;
   author =       &amp;lt;nowiki&amp;gt;{{The MORwiki Community}}&amp;lt;/nowiki&amp;gt;,&lt;br /&gt;
   title =        {Convective Thermal Flow},&lt;br /&gt;
   howpublished = {{MORwiki} -- Model Order Reduction Wiki},&lt;br /&gt;
   url =          &amp;lt;nowiki&amp;gt;{https://modelreduction.org/morwiki/Convection}&amp;lt;/nowiki&amp;gt;,&lt;br /&gt;
   year =         {2018}&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
* For the background on the benchmark:&lt;br /&gt;
&lt;br /&gt;
 @INPROCEEDINGS{morMooRGetal04,&lt;br /&gt;
   author =       &amp;lt;nowiki&amp;gt;{C. Moosmann, E.B. Rudnyi, A. Greiner, J.G. Korvink}&amp;lt;/nowiki&amp;gt;,&lt;br /&gt;
   title =        {Model Order Reduction for Linear Convective Thermal Flow},&lt;br /&gt;
   booktitle =    {Proceedings of 10th International Workshops on THERMal INvestigations of ICs and Systems},&lt;br /&gt;
   year =         {2004},&lt;br /&gt;
   url =          &amp;lt;nowiki&amp;gt;{http://modelreduction.com/doc/papers/moosmann04THERMINIC.pdf}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;korvink2005&amp;quot;&amp;gt; J.G. Korvink, E.B. Rudnyi, &amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1007/3-540-27909-1_11 Oberwolfach Benchmark Collection]&amp;lt;/span&amp;gt;, Dimension Reduction of Large-Scale Systems, Lecture Notes in Computational Science and Engineering, vol 45: 311--315, 2005.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;ernst2001&amp;quot;&amp;gt;H. Ernst, &amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://freidok.uni-freiburg.de/data/201 High-Resolution Thermal Measurements in Fluids]&amp;lt;/span&amp;gt;, PhD thesis, University of Freiburg, Germany, 2001.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;harper1997&amp;quot;&amp;gt;C.A. Harper, &amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1036/0071430482 Electronic packaging and interconnection handbook]&amp;lt;/span&amp;gt;, New York McGraw- Hill, USA, 1997&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;moosmann2004&amp;quot;&amp;gt;C. Moosmann, E.B. Rudnyi, A. Greiner, J.G. Korvink, &amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[http://modelreduction.com/doc/papers/moosmann04THERMINIC.pdf Model Order Reduction for Linear Convective Thermal Flow]&amp;lt;/span&amp;gt;, Proceedings of 10th International Workshops on THERMal INvestigations of ICs and Systems, THERMINIC2004, Sophia Antipolis, France, 2004.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;moosmann2005&amp;quot;&amp;gt;C. Moosmann, A. Greiner, &amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1007/3-540-27909-1_16 Convective Thermal Flow Problems]&amp;lt;/span&amp;gt;, In: Dimension Reduction of Large-Scale Systems. Springer, Berlin, Heidelberg. Lecture Notes in Computational Science and Engineering, vol 45: 341--343, 2005.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=Clamped_Beam&amp;diff=3955</id>
		<title>Clamped Beam</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=Clamped_Beam&amp;diff=3955"/>
		<updated>2025-06-05T08:57:45Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:benchmark]]&lt;br /&gt;
[[Category:SLICOT]]&lt;br /&gt;
[[Category:linear]]&lt;br /&gt;
[[Category:time invariant]]&lt;br /&gt;
[[Category:first differential order]]&lt;br /&gt;
[[Category:second differential order]]&lt;br /&gt;
[[Category:SISO]]&lt;br /&gt;
&lt;br /&gt;
{{Infobox&lt;br /&gt;
|Title           = Clamped Beam&lt;br /&gt;
|Benchmark ID    = clampedBeam_n348m1q1&lt;br /&gt;
|Category        = slicot&lt;br /&gt;
|System-Class    = LTI-FOS&lt;br /&gt;
|nstates         = 348&lt;br /&gt;
|ninputs         = 1&lt;br /&gt;
|noutputs        = 1&lt;br /&gt;
|nparameters     = 0&lt;br /&gt;
|components      = A, B, C&lt;br /&gt;
|License         = NA&lt;br /&gt;
|Creator         = [[User:Himpe]]&lt;br /&gt;
|Editor          = &lt;br /&gt;
* [[User:Himpe]]&lt;br /&gt;
* [[User:Mlinaric]]&lt;br /&gt;
|Zenodo-link     = NA&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Description: Clamped Beam Model==&lt;br /&gt;
&lt;br /&gt;
This benchmark models a [[wikipedia:Cantilever|cantilever beam]], which is a beam clamped on one end.&lt;br /&gt;
More details can be found in &amp;lt;ref name=&amp;quot;antoulas01&amp;quot;/&amp;gt; and &amp;lt;ref name=&amp;quot;chahlaoui02&amp;quot;/&amp;gt;, &amp;lt;ref name=&amp;quot;chahlaoui05&amp;quot;/&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
For larger beam-type benchmarks see the [[Linear_1D_Beam|linear 1d beam]] and [[Electrostatic_Beam|electrostatic beam]] benchmarks.&lt;br /&gt;
&lt;br /&gt;
==Origin==&lt;br /&gt;
&lt;br /&gt;
This benchmark is part of the &#039;&#039;&#039;SLICOT Benchmark Examples for Model Reduction&#039;&#039;&#039;&amp;lt;ref name=&amp;quot;chahlaoui05&amp;quot;/&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Data==&lt;br /&gt;
&lt;br /&gt;
The system matrices &amp;lt;math&amp;gt;A&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;B&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;C&amp;lt;/math&amp;gt; are available from the [https://www.slicot.org/20-site/126-benchmark-examples-for-model-reduction SLICOT benchmarks] page: [https://www.slicot.org/objects/software/shared/bench-data/beam.zip beam.zip] and are stored as MATLAB [https://www.mathworks.com/help/matlab/import_export/mat-file-versions.html .mat] file.&lt;br /&gt;
&lt;br /&gt;
Here is [https://www.python.org Python] code for loading the matrices (&amp;lt;math&amp;gt;A&amp;lt;/math&amp;gt; is stored as a sparse matrix that is mostly full and &amp;lt;math&amp;gt;C&amp;lt;/math&amp;gt; is stored as an array of 8-bit unsigned integers):&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
import numpy as np&lt;br /&gt;
from scipy.io import loadmat&lt;br /&gt;
&lt;br /&gt;
mat = loadmat(&#039;beam.mat&#039;)&lt;br /&gt;
A = mat[&#039;A&#039;].toarray()&lt;br /&gt;
B = mat[&#039;B&#039;]&lt;br /&gt;
C = mat[&#039;C&#039;].astype(np.float64)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;math&amp;gt;(A, B, C)&amp;lt;/math&amp;gt; represents a second-order system&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;&lt;br /&gt;
\begin{align}&lt;br /&gt;
  \ddot{q}(t) + E_{so} \dot{q}(t) + a K_{so} q(t) &amp;amp;= a B_{so} u(t), \\&lt;br /&gt;
  y(t) &amp;amp;= C_{so} q(t),&lt;br /&gt;
\end{align}&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
as&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;&lt;br /&gt;
\begin{align}&lt;br /&gt;
  A &amp;amp;=&lt;br /&gt;
  \begin{pmatrix}&lt;br /&gt;
    0 &amp;amp; a I \\&lt;br /&gt;
    -K_{so} &amp;amp; -E_{so}&lt;br /&gt;
  \end{pmatrix}, \\&lt;br /&gt;
  B &amp;amp;=&lt;br /&gt;
  \begin{pmatrix}&lt;br /&gt;
    0 \\&lt;br /&gt;
    B_{so}&lt;br /&gt;
  \end{pmatrix}, \\&lt;br /&gt;
  C &amp;amp;=&lt;br /&gt;
  \begin{pmatrix}&lt;br /&gt;
    C_{so} &amp;amp; 0&lt;br /&gt;
  \end{pmatrix},&lt;br /&gt;
\end{align}&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;a \approx 21.3896&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Here is [https://www.python.org Python] code for checking the structure and extracting the second-order matrices:&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
n = 348&lt;br /&gt;
n2 = n // 2&lt;br /&gt;
&lt;br /&gt;
assert np.all(A[:n2, :n2] == 0)&lt;br /&gt;
assert np.all(A[:n2, n2:] == A[0, n2] * np.eye(n2))&lt;br /&gt;
assert np.all(B[:n2] == 0)&lt;br /&gt;
assert np.all(C[:, n2:] == 0)&lt;br /&gt;
&lt;br /&gt;
a = A[0, n2]&lt;br /&gt;
Eso = -A[n2:, n2:]&lt;br /&gt;
Kso = -a * A[n2:, :n2]&lt;br /&gt;
Bso = a * B[n2:]&lt;br /&gt;
Cso = C[:, :n2]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Dimensions==&lt;br /&gt;
&lt;br /&gt;
===First differential order===&lt;br /&gt;
&lt;br /&gt;
System structure:&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;&lt;br /&gt;
\begin{align}&lt;br /&gt;
  \dot{x}(t) &amp;amp;= A x(t) + B u(t) \\&lt;br /&gt;
  y(t) &amp;amp;= C x(t)&lt;br /&gt;
\end{align}&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
System dimensions:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;A \in \mathbb{R}^{348 \times 348}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;B \in \mathbb{R}^{348 \times 1}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;C \in \mathbb{R}^{1 \times 348}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Second differential order===&lt;br /&gt;
&lt;br /&gt;
System structure:&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;&lt;br /&gt;
\begin{align}&lt;br /&gt;
  \ddot{x}(t) + E \dot{x}(t) + K x(t) &amp;amp;= B u(t) \\&lt;br /&gt;
  y(t) &amp;amp;= C_p x(t)&lt;br /&gt;
\end{align}&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
System dimensions:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;E, K \in \mathbb{R}^{174 \times 174}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;B \in \mathbb{R}^{174 \times 1}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;C_p \in \mathbb{R}^{1 \times 174}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Citation==&lt;br /&gt;
&lt;br /&gt;
To cite this benchmark, use the following references:&lt;br /&gt;
&lt;br /&gt;
* For the benchmark itself and its data:&lt;br /&gt;
::Niconet e.V., &#039;&#039;&#039;SLICOT - Subroutine Library in Systems and Control Theory&#039;&#039;&#039;, http://www.slicot.org&lt;br /&gt;
&lt;br /&gt;
 @MANUAL{slicot_beam,&lt;br /&gt;
  title =        {{SLICOT} - Subroutine Library in Systems and Control Theory},&lt;br /&gt;
  organization = {Niconet e.V.}&lt;br /&gt;
  address =      &amp;lt;nowiki&amp;gt;{\url{http://www.slicot.org}}&amp;lt;/nowiki&amp;gt;,&lt;br /&gt;
  key =          {SLICOT}&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
* For the background on the benchmark:&lt;br /&gt;
&lt;br /&gt;
 @ARTICLE{morAntSG01,&lt;br /&gt;
  author =       &amp;lt;nowiki&amp;gt;{A.C. Antoulas, D.C. Sorensen and S. Gugercin}&amp;lt;/nowiki&amp;gt;,&lt;br /&gt;
  title =        {A survey of model reduction methods for large-scale systems},&lt;br /&gt;
  journal =      {Contemporary Mathematics},&lt;br /&gt;
  volume =       {280},&lt;br /&gt;
  pages =        {193--219},&lt;br /&gt;
  year =         {2001},&lt;br /&gt;
  doi =          {10.1090/conm/280}&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;antoulas01&amp;quot;&amp;gt; A.C. Antoulas, D.C. Sorensen and S. Gugercin. &amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1090/conm/280 A survey of model reduction methods for large-scale systems]&amp;lt;/span&amp;gt;. Contemporary Mathematics, 280: 193--219, 2001.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;chahlaoui02&amp;quot;&amp;gt; Y. Chahlaoui, P. Van Dooren, &amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[http://eprints.maths.manchester.ac.uk/1040/1/ChahlaouiV02a.pdf A collection of Benchmark examples for model reduction of linear time invariant dynamical systems]&amp;lt;/span&amp;gt;, Working Note 2002-2: 2002.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;chahlaoui05&amp;quot;&amp;gt; Y. Chahlaoui, P. Van Dooren, &amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1007/3-540-27909-1_24 Benchmark Examples for Model Reduction of Linear Time-Invariant Dynamical Systems]&amp;lt;/span&amp;gt;, Dimension Reduction of Large-Scale Systems, Lecture Notes in Computational Science and Engineering, vol 45: 379--392, 2005.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=Main_Page&amp;diff=3954</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=Main_Page&amp;diff=3954"/>
		<updated>2025-05-28T15:05:19Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;Big&amp;gt;&#039;&#039;&#039;Welcome to the MOR Wiki&#039;&#039;&#039;&amp;lt;/Big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumb tright&amp;quot; style=&amp;quot;width:302px;height:100vh&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;wikitwidget class=&amp;quot;twitter-timeline&amp;quot;  href=&amp;quot;https://twitter.com/mor_wiki&amp;quot;  data-widget-id=&amp;quot;428887480843001856&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The purpose of the &#039;&#039;&#039;M&#039;&#039;&#039;odel-&#039;&#039;&#039;O&#039;&#039;&#039;rder-&#039;&#039;&#039;R&#039;&#039;&#039;eduction-&#039;&#039;&#039;Wiki&#039;&#039;&#039; is to bring together experts in the area of model reduction along with researchers from related application areas, with the goal of providing a platform for exchanging ideas and benchmark examples. &lt;br /&gt;
&lt;br /&gt;
Modeling and numerical simulation are unavoidable in many application and research areas such as reaction processes, micro-electro-mechanical systems ([[:Wikipedia:MEMS|MEMS]]) design, and control design.&lt;br /&gt;
Such processes or devices can be modeled by partial differential equations ([[:Wikipedia:Partial_differential_equation|PDEs]]).&lt;br /&gt;
To simulate these models, spatial discretization via, for example, finite element discretization is necessary, which results in a system of ordinary differential equations ([[:Wikipedia:Ordinary_differential_equation|ODEs]]), or differential algebraic equations ([[:Wikipedia:Differential_algebraic_equation|DAEs]]). &lt;br /&gt;
  &lt;br /&gt;
After spatial discretization, the number of degrees of freedom ([[:Wikipedia:Degrees_of_Freedom|DoFs]]) is usually very high.&lt;br /&gt;
Simulating such large-scale systems of ODEs or DAEs can therefore become incredibly time-consuming.&lt;br /&gt;
Developed from well established mathematical theory and robust numerical algorithms, Model Order Reduction (MOR) or Model Reduction has been recognized as very efficient for reducing the simulation time of large-scale systems; see the page [[Projection based MOR]] for a basic overview.&lt;br /&gt;
Through model order reduction, a small system with a reduced number of equations (i.e., the reduced model) is derived.&lt;br /&gt;
The reduced model is simulated instead, and the solution of the original PDEs or ODEs can then be recovered from the solution of the reduced model.&lt;br /&gt;
As a result, the simulation time of the original large-scale system can be shortened by several orders of magnitude.&lt;br /&gt;
The reduced model as a whole can also replace the original system and be reused repeatedly during the design process, which can lead to further time or energy savings.&lt;br /&gt;
&lt;br /&gt;
[[:Category:Parametric|Parametric model order reduction (PMOR) methods]] are designed for model order reduction of parametrized systems, where the parameters of the system play an important role in practical applications such as [[:Wikipedia:Integrated circuit design|Integrated Circuit (IC)]] design, [[:Wikipedia:MEMS|MEMS]] design, and chemical engineering.&lt;br /&gt;
The parameters could be the variables describing geometrical measurements, material properties, the damping of the system or the component flow-rate.&lt;br /&gt;
Reduced models are constructed such that all the parameters can be preserved with acceptable accuracy.&lt;br /&gt;
&lt;br /&gt;
=== How to use the MOR Wiki ===&lt;br /&gt;
The MOR Wiki comprises pages providing [[:Category:Benchmark|benchmarks of parametric or non-parametric models]] and pages explaining applicable (P)MOR [[:Category:Method|methods]] as well as available [[:Category:Software|software implementations]].  We ([[MOR Wiki:About|the editors]]) are actively improving documentation at the moment, so check back often for updates!&lt;br /&gt;
&lt;br /&gt;
Following the [[Submission rules]], it is also possible to submit new benchmarks, methods, or software packages, along with pages describing the contribution.&lt;br /&gt;
&lt;br /&gt;
Consult the [http://meta.wikimedia.org/wiki/Help:Contents User&#039;s Guide] for information on using Wiki software and the Wiki markup language we use here.&lt;br /&gt;
&lt;br /&gt;
See the [[Glossary]] for definitions and abbreviations.&lt;br /&gt;
&lt;br /&gt;
Find [[MOR_Wiki:Current_events|current model reduction conferences, workshops and minisymposia]], a [[Publications|list of books and lectures on model reduction]] and [[MOR_Wiki:Community_portal|links to the model reduction community]].&lt;br /&gt;
&lt;br /&gt;
=== MORB: Model Order Reduction Benchmarker ===&lt;br /&gt;
A new benchmarking tool for model order reduction is currently under development. It is a demonstrator of the generic benchmark framework developed for Task Area 2 of the Mathematical Research Data Initiative ([https://www.mardi4nfdi.de/about/task-areas MaRDI]). [[MORB]] will serve as an example of how to fairly compare different implementations of algorithms across a standardized benchmark set for scientific computing.  Visit the [[MORB]] page for updates.&lt;br /&gt;
&lt;br /&gt;
=== Citations ===&lt;br /&gt;
To cite the MOR Wiki itself, please use the following&lt;br /&gt;
&lt;br /&gt;
The MORwiki Community. &#039;&#039;&#039;MORwiki - Model Order Reduction Wiki&#039;&#039;&#039;. http://modelreduction.org&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
 @misc{morwiki,&lt;br /&gt;
   author =       {{The MORwiki Community}},&lt;br /&gt;
   title =        {{MORwiki} - {M}odel {O}rder {R}eduction {W}iki},&lt;br /&gt;
   howpublished = {\url{https://modelreduction.org}},&lt;br /&gt;
   key =          {morwiki}&lt;br /&gt;
 }&lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A BibTeX file which contains a list of references related to model order reduction can be found and downloaded here: [[Bibtex|mor.bib]].&lt;br /&gt;
&lt;br /&gt;
== List of all Categories in the Wiki ==&lt;br /&gt;
{{special:categories}}&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|&amp;lt;categorytree mode=all&amp;gt;Benchmark&amp;lt;/categorytree&amp;gt; || &amp;lt;categorytree mode=all&amp;gt;Method&amp;lt;/categorytree&amp;gt; || &amp;lt;categorytree mode=all&amp;gt;Software&amp;lt;/categorytree&amp;gt; || &amp;lt;categorytree mode=all&amp;gt;Miscellaneous&amp;lt;/categorytree&amp;gt;&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=MOR_Wiki:Current_events&amp;diff=3953</id>
		<title>MOR Wiki:Current events</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=MOR_Wiki:Current_events&amp;diff=3953"/>
		<updated>2025-05-28T15:03:13Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Miscellaneous]]&lt;br /&gt;
{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
| __TOC__&lt;br /&gt;
|}&lt;br /&gt;
== MOR Wiki Users Meetings ==&lt;br /&gt;
&lt;br /&gt;
* The first general assembly of MOR Wiki users took place on December 10th - 2013, at the [http://mpim.iwww.mpg.de/research/groups/csc MPI in Magdeburg] (Germany).&lt;br /&gt;
&lt;br /&gt;
* The second MOR Wiki meeting took place on April 23rd - 2015, at the [http://mpim.iwww.mpg.de/research/groups/csc MPI in Magdeburg] (Germany).&lt;br /&gt;
&lt;br /&gt;
* The third MOR Wiki meeting took place on January 11th - 2017, during the [http://www.mpi-magdeburg.mpg.de/csc/events/modred2017 ModRed in Odense] (Denmark).&lt;br /&gt;
&lt;br /&gt;
== Upcoming Workhops and Conferences ==&lt;br /&gt;
* [https://mortech2025.i3a.es/ MORTech 2025 -- 7th International Workshop on Model Order Reduction Techniques], November 26 - 28  2025, Zaragoza (Spain)&lt;br /&gt;
&lt;br /&gt;
== Past Events ==&lt;br /&gt;
=== 2025 ===&lt;br /&gt;
* [https://mathmod.at Minisymposium on Recent Advances in Model Order Reduction and Data-driven Modelling at MathMod 2025], February 19 - 21 2025, Vienna (Austria)&lt;br /&gt;
&lt;br /&gt;
=== 2024 ===&lt;br /&gt;
* [https://more2024.sciencesconf.org/ MORe2024 - Model Reduction and Surrogate Modeling], September 9 - 13, 2024; La Jolla, California (United States)&lt;br /&gt;
&lt;br /&gt;
* [https://www.ymmor2024.uni-stuttgart.de/ Young Mathematicians in Model Order Reduction Conference 2024], March 4 - 8, 2024; Stuttgart (Germany)&lt;br /&gt;
&lt;br /&gt;
=== 2023 ===&lt;br /&gt;
&lt;br /&gt;
* [https://mortech2023.sciencesconf.org/ MORTech 2023 – 6th International Workshop on Model Reduction Techniques], November 22 - 24, 2023; Paris-Saclay (France)&lt;br /&gt;
&lt;br /&gt;
* [https://ims.nus.edu.sg/events/international-workshop-on-reduced-order-methods/ International Workshop on Reduced Order Methods], May 22nd - 26th, 2023; Singapore (Singapore)&lt;br /&gt;
&lt;br /&gt;
* [https://personal.math.vt.edu/borggajt/nlromc/index.html Nonlinear Model Reduction for Control], May 22nd - 26th, 2023; Blacksburg (USA).&lt;br /&gt;
&lt;br /&gt;
=== 2022 ===&lt;br /&gt;
&lt;br /&gt;
* [https://alop.uni-trier.de/event/autumn-school-on-model-reduction-and-model-predictive-control-with-differential-equations/ Model Reduction and Model Predictive Control with Differential Equations], October 4th - 7th, 2022; Trier (Germany)&lt;br /&gt;
&lt;br /&gt;
* [https://more.sciencesconf.org/ Model Reduction and Surrogate Modeling (MORE)], September 19th - 23rd, 2022; Berlin (Germany)&lt;br /&gt;
&lt;br /&gt;
* [https://www.mathmod.at/ 10th Vienna International Conference on Mathematical Modelling], July 27th – 29th, 2022;Vienna (Austria)&lt;br /&gt;
** [https://ifac.papercept.net/conferences/conferences/MAMO21/program/MAMO21_ContentListWeb_2.html#wed3 Model Reduction]&lt;br /&gt;
** [https://ifac.papercept.net/conferences/conferences/MAMO21/program/MAMO21_ContentListWeb_2.html#wed1 Recent Advances in Model Reduction and Surrogate Modeling I of IV]&lt;br /&gt;
** [https://ifac.papercept.net/conferences/conferences/MAMO21/program/MAMO21_ContentListWeb_2.html#wee1 Recent Advances in Model Reduction and Surrogate Modeling II of IV]&lt;br /&gt;
** [https://ifac.papercept.net/conferences/conferences/MAMO21/program/MAMO21_ContentListWeb_2.html#thb1 Recent Advances in Model Reduction and Surrogate Modeling III of IV]&lt;br /&gt;
** [https://ifac.papercept.net/conferences/conferences/MAMO21/program/MAMO21_ContentListWeb_2.html#thd1 Recent Advances in Model Reduction and Surrogate Modeling IV of IV]&lt;br /&gt;
&lt;br /&gt;
* [https://www.uni-muenster.de/MathematicsMuenster/events/2022/YMCN-model-order-reduction.shtml#Schedule Young Mathematicians in Model Order Reduction (YMMOR)], July 18th - 22th, 2022; Münster (Germany)&lt;br /&gt;
&lt;br /&gt;
* [https://dcn.nat.fau.eu/events/mini-workshop-model-reduction-and-control/ Mini-Workshop &amp;quot;Model Reduction and Control&amp;quot;] May 24th, 2022; (ONLINE)&lt;br /&gt;
&lt;br /&gt;
* [https://www.siam.org/conferences/cm/conference/uq22 SIAM Conference on Uncertainty Quantification], April 12th -15th, 2022; Atlanta (USA)&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=73287 MS4: Nonlinear Model Reduction Methods for Random or Parametric Time Dependent Problems - Part I of III]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=73288 MS32: Nonlinear Model Reduction Methods for Random or Parametric Time Dependent Problems - Part II of III]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=73289 MS76: Nonlinear Model Reduction Methods for Random or Parametric Time Dependent Problems - Part III of III]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=73521 MS154: Reduced Order Modelling for Forward and Inverse UQ - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=73537 MS168: Reduced Order Modelling for Forward and Inverse UQ - Part II of II]&lt;br /&gt;
&lt;br /&gt;
=== 2021 ===&lt;br /&gt;
&lt;br /&gt;
* [https://indico.sissa.it/event/43/ RAMSES: Reduced order models; Approximation theory; Machine learning; Surrogates, Emulators and Simulators], December 14th - 17th, 2021; Trieste (Italy)&lt;br /&gt;
&lt;br /&gt;
* [https://www.romsoc.eu/wim-2021/ Workshop in Industrial Mathematics (WIM2021) with the Reduced-Order Modeling, Simulation and Optimization of Coupled Systems], October 20th - 22nd; Catania (Italy)&lt;br /&gt;
&lt;br /&gt;
* [https://www.icms.org.uk/events/event/?id=1178 New Developments in Reduced Order Modelling], October 15th; &#039;&#039;&#039;ONLINE&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* [https://mmldt.eng.ucsd.edu/home MMLDT-CSET - Mechanistic Machine Learning and Digital Twins for Computational Science, Engineering &amp;amp; Technology 2021],  September 26th - 29th, 2021; San Diego (USA)&lt;br /&gt;
** [https://docs.google.com/spreadsheets/d/1GosdHfvpskcnnR56u29ZRNfBWC4kg0hR/edit#gid=83060610&amp;amp;range=A1 MS 4-7: Physics-Informed Data-based Model Reduction]&lt;br /&gt;
** [https://docs.google.com/spreadsheets/d/1GosdHfvpskcnnR56u29ZRNfBWC4kg0hR/edit#gid=1626075110&amp;amp;range=A1 MS 4-8: Model Reduction and Machine Learning for Fluids and Fluid-Structure Interactions]&lt;br /&gt;
** [https://docs.google.com/spreadsheets/d/1GosdHfvpskcnnR56u29ZRNfBWC4kg0hR/edit#gid=618092903&amp;amp;range=A1 MS 4-9: Advances in Reduced Order Modeling of Solids and Fluids and Porous Media]&lt;br /&gt;
** [https://docs.google.com/spreadsheets/d/1GosdHfvpskcnnR56u29ZRNfBWC4kg0hR/edit#gid=378364206&amp;amp;range=A1 MS 4-10: Model Reduction of Dynamical Systems with Deep Learning]&lt;br /&gt;
** [https://docs.google.com/spreadsheets/d/1GosdHfvpskcnnR56u29ZRNfBWC4kg0hR/edit#gid=667740&amp;amp;range=A1 MS 5-1: Advances in Machine Learning and Model Reduction for Inversion in Geophysical and Geological Applications]&lt;br /&gt;
&lt;br /&gt;
* [http://smai.emath.fr/cemracs/cemracs21/ CEMRACS 2021 - Data Assimilation and Reduced Modeling for High Dimensional Problems], July 19th - August 27th, 2021; Luminy (France)&lt;br /&gt;
&lt;br /&gt;
* [http://16.usnccm.org US National Congress on Computational Mechanics (USNCCM)], July 25th - 29th, 2021; Chicago (USA)&lt;br /&gt;
** &amp;quot;[http://16.usnccm.org/MS_311 MS311: Model Order Reduction for Physical Simulations]&amp;quot; &lt;br /&gt;
&lt;br /&gt;
* [https://www.siam.org/conferences/cm/conference/an21 SIAM Annual Meeting], July 19th - 23rd, 2021; &#039;&#039;&#039;ONLINE&#039;&#039;&#039;&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=71670 MS62: Advances in Uncertainty Quantification with Model Order Reduction Methods I]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=71671 MS88: Advances in Uncertainty Quantification with Model Order Reduction Methods II]&lt;br /&gt;
&lt;br /&gt;
* [https://www.siam.org/conferences/cm/conference/ct21 SIAM Conference on Control and Its Applications], July 19th - 21st, 2021; &#039;&#039;&#039;ONLINE&#039;&#039;&#039;&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=71167 MS1: Model Reduction for Control of High-Dimensional Nonlinear Systems I]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=71168 MS9: Model Reduction for Control of High-Dimensional Nonlinear Systems II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=71169 MS17: Model Reduction for Control of High-Dimensional Nonlinear Systems III]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=72048 MS26: Data-Driven Methods in Model Reduction and Control I]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=72049 MS34: Data-Driven Methods in Model Reduction and Control II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=72050 MS42: Data-Driven Methods in Model Reduction and Control III]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=71716 MS25: Model Reduction of Complex Dynamical Systems and its Applications I]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=71717 MS33: Model Reduction of Complex Dynamical Systems and its Applications II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=71718 MS41: Model Reduction of Complex Dynamical Systems and its Applications III]&lt;br /&gt;
&lt;br /&gt;
* [https://www.siam.org/conferences/cm/conference/cse21 SIAM Conference on Computational Science and Engineering (CSE21)], March 1st - 5th, 2021; Fort Worth (USA)&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=70067 MS8:   Data Driven Reduced Order Models: Structure, Networks and Imaging - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69881 MS26:  Reduced Order Methods for Parametric CFD Problems - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69861 MS27:  Reduced Order Model Stabilizations and Closures - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69824 MS31:  Structure-Preserving Model Order Reduction for Large-Scale Systems - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69862 MS60:  Reduced Order Model Stabilizations and Closures - Part II of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69943 MS74:  Dimensionality Reduction and Reduced-Order Models for the Boltzmann Transport Equation]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=70068 MS98:  Data Driven Reduced Order Models: Structure, Networks and Imaging - Part II of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69882 MS111: Reduced Order Methods for Parametric CFD Problems - Part II of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69928 MS113: Reduced-Order Modeling and Analysis of Turbulence - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69825 MS119: Structure-Preserving Model Order Reduction for Large-Scale Systems - Part II of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69929 MS147: Reduced-Order Modeling and Analysis of Turbulence - Part II of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=70145 MS172: Model Order Reduction for Large-Scale Problems - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=70146 MS234: Model Order Reduction for Large-Scale Problems - Part II of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=70123 MS309: Data-Driven Modeling and Model Reduction: Honoring 70th Birthday of Thanos Antoulas - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69938 MS319: Model Order Reduction for Complex Systems - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69816 MS324: Recent Advances in Model Order Reduction for Advection-Dominated Simulations - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69764 MS326: Recent Developments in Nonlinear Model Reduction Methods - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=70124 MS340: Data-Driven Modeling and Model Reduction: Honoring 70th Birthday of Thanos Antoulas - Part II of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69939 MS350: Model Order Reduction for Complex Systems - Part II of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69819 MS355: Recent Advances in Model Order Reduction for Advection-Dominated Simulations - Part II of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69765 MS357: Recent Developments in Nonlinear Model Reduction Methods - Part II of II]&lt;br /&gt;
&lt;br /&gt;
* [https://www.wccm-eccomas2020.org 14th WWCM and ECCOMAS Congress 2020], January 11th - 15th, 2021; Paris (France)&lt;br /&gt;
** &amp;quot;[https://www.wccm-eccomas2020.org/admin/Files/FileAbstract/a93.pdf  MS93: Reduced Order and Surrogate Modeling for Uncertainty Analysis in Structural Mechanics]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.wccm-eccomas2020.org/admin/Files/FileAbstract/a139.pdf MS139: Advances in Intrusive and Non-Intrusive Order Reduction Techniques for Flow Analysis, Control and Optimization]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.wccm-eccomas2020.org/admin/Files/FileAbstract/a152.pdf MS152: Model Order Reduction Methods for Parametrized Mechanical Systems]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.wccm-eccomas2020.org/admin/Files/FileAbstract/a170.pdf MS170: Numerical Model Reduction and Data-Driven Surrogates for Multi-Physics Applications]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.wccm-eccomas2020.org/admin/Files/FileAbstract/a179.pdf MS179: Numerical Techniques for the Simulations and Model Reduction of Complex Physical Systems]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.wccm-eccomas2020.org/admin/Files/FileAbstract/a204.pdf MS204: Analysing Parameterised Reduced Order Models]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.wccm-eccomas2020.org/admin/Files/FileAbstract/a371.pdf MS371: Model Order Reduction for Vibroacoustic Problems]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.wccm-eccomas2020.org/admin/Files/FileAbstract/a415.pdf MS415: Model Order Reduction for Nonlinear (Time, Space, Parameter) Multiscale Problems and Applications]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.wccm-eccomas2020.org/admin/Files/FileAbstract/a458.pdf MS458: Coupled Multiphysics Problems and Reduced Order Methods Applied to Compute Digital Twin Models in Industrial Applications]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== 2020 ===&lt;br /&gt;
&lt;br /&gt;
* [https://www.mfo.de/occasion/2045a/www_view Banach Center – Oberwolfach Graduate Seminar: Model Reduction and Approximation: Projection-, Tensor- and Data-based Methods], November 1st - 7th, 2020; Bedlewo (Poland) (&#039;&#039;&#039;CANCELLED&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
* [https://www.tu-chemnitz.de/mathematik/dmv2020/index.php DMV Annual Meeting], September 14th - 18th, 2020; (&#039;&#039;&#039;VIRTUAL&#039;&#039;&#039;)&lt;br /&gt;
** &amp;quot;[https://www.tu-chemnitz.de/mathematik/dmv2020/minisymp.php Model Order Reduction]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* [https://morss2020.epfl.ch Model Order Reduction Summer School]; September 7th - 10th, 2020; (&#039;&#039;&#039;VIRTUAL&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
* [https://www.mpi-magdeburg.mpg.de/csc/events/samm20 SAMM20 - Learning Models from Data: Model Reduction, System Identification and Machine Learning], July  27th - 31st, 2020; (&#039;&#039;&#039;VIRTUAL&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
* [https://www.siam.org/conferences/cm/conference/an20 2nd Joint SIAM/CAIMS Annual Meeting], July 6th - 17th, 2020; (&#039;&#039;&#039;VIRTUAL&#039;&#039;&#039;)&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=68897 MS4: Projection-Based Model Order Reduction for Partial Differential Equations - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=68898 MS7: Projection-Based Model Order Reduction for Partial Differential Equations - Part II of II]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* [https://icerm.brown.edu/programs/sp-s20/ Model and dimension reduction in uncertain and dynamic systems], January 27th - May 1st, 2020; Providence (USA)&lt;br /&gt;
** [https://icerm.brown.edu/programs/sp-s20/w1/ Mathematics of Reduced Order Models], February 17th - 21st&lt;br /&gt;
** [https://icerm.brown.edu/programs/sp-s20/w2/ Algorithms for Dimension and Complexity Reduction], March 23rd - 27th (&#039;&#039;&#039;VIRTUAL&#039;&#039;&#039;)&lt;br /&gt;
** [https://icerm.brown.edu/programs/sp-s20/w3/ Computational Statistics and Data-Driven Models], April 20th - 24th (&#039;&#039;&#039;VIRTUAL&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
* [https://siam-uq20.ma.tum.de SIAM Conference on Uncertainty Quantification (UQ20)], March 24th - 27th, 2020; Munich (Germany) (&#039;&#039;&#039;CANCELLED&#039;&#039;&#039;)&lt;br /&gt;
** &amp;quot;[https://www.events.tum.de/frontend/index.php?page_id=3712&amp;amp;v=List&amp;amp;do=15&amp;amp;day=490&amp;amp;ses=1625# CT20: ROM and Surrogate Models]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.events.tum.de/frontend/index.php?page_id=3712&amp;amp;v=List&amp;amp;do=15&amp;amp;day=489&amp;amp;ses=1723# MS311: Dynamical low rank and reduced basis methods for random or parametric time dependent problems (Part I of II) ]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.events.tum.de/frontend/index.php?page_id=3712&amp;amp;v=List&amp;amp;do=15&amp;amp;day=489&amp;amp;ses=1724# MS312: Dynamical low rank and reduced basis methods for random or parametric time dependent problems (Part II of II)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.events.tum.de/frontend/index.php?page_id=3712&amp;amp;v=List&amp;amp;do=15&amp;amp;day=490&amp;amp;ses=1717# MS331: Recent Advances in Reduced-Order Models for Many Query and Time-Critical Problems]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.events.tum.de/frontend/index.php?page_id=3712&amp;amp;v=List&amp;amp;do=15&amp;amp;day=491&amp;amp;ses=1774# MS351: Reduced order methods for uncertainty quantification in CFD parametric problems]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== 2019 ===&lt;br /&gt;
&lt;br /&gt;
* [https://mortech2019.sciencesconf.org/ MORTech - 5th International Workshop on Reduced Basis, POD or PGD-Based Model Reduction Technique], November 20th - 22nd, 2019; Paris (France)&lt;br /&gt;
&lt;br /&gt;
* [https://www.tudelft.nl/en/events/2019/dcse/dcse-fall-school-november-4-8-2019-on-reduced-order-modeling-and-uncertainty-quantification/ DCSE Fall School November 4-8, 2019, on &amp;quot;Reduced-Order Modeling and Uncertainty Quantification&amp;quot;] November 4th - 8th, 2019; Delft (Netherlands)&lt;br /&gt;
&lt;br /&gt;
* [https://school.pymor.org/ pyMOR School 2019], October 7th - 11th, 2019; Magdeburg (Germany)&lt;br /&gt;
&lt;br /&gt;
* [https://www.enumath2019.eu ENUMATH 2019], September 30th - October 4th, 2019; Egmond aan Zee (Netherlands)&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/30 MS2: Recent Advances in Model Order Reduction]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/76 MS14: Reduced Order Models for parametric PDEs: special focus on time-dependent phenomena and time-harmonic wave problems (Part 1)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/87 MS14: Reduced Order Models for parametric PDEs: special focus on time-dependent phenomena and time-harmonic wave problems (Part 2)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/113 MS18: Model order reduction in optimisation, control, and data assimilation (Part 1)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/124 MS18: Model order reduction in optimisation, control, and data assimilation (Part 2)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/6 MS26: New challenges and opportunities for model order reduction (Part 1)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/17 MS26: New challenges and opportunities for model order reduction (Part 2)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/7 MS29: Low-rank modelling in uncertainty quantification (Part 1)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/18 MS29: Low-rank modelling in uncertainty quantification (Part 2)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/8 MS31: Numerical methods for identification and model reduction of nonlinear systems (Part 1)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/19 MS31: Numerical methods for identification and model reduction of nonlinear systems (Part 2)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/151 MS38: Modeling of reduced order submanifolds in non-linear spaces (Part 1)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/162 MS38: Modeling of reduced order submanifolds in non-linear spaces (Part 2)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/121 Computing and Model Order Reduction (Part 1)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/132 Computing and Model Order Reduction (Part 2)]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* [https://www.win.tue.nl/~hbansal/morss.html Model Order Reduction Summer School - MORSS], September 23rd - 27th, 2019; Eindhoven (Netherlands)&lt;br /&gt;
&lt;br /&gt;
* [https://congress.cimne.com/complas2019/frontal/default.asp International Conference on Computational Plasticity. Fundamentals and Applications.], September 3rd - 5th, 2019; Barcelona (Spain)&lt;br /&gt;
** &amp;quot;[https://congress.cimne.com/complas2019/frontal/ProgramPrint.asp?id=WeM1 Model Order Reduction with Emphasis on Non-linear and Multi-scale Problems I]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://congress.cimne.com/complas2019/frontal/ProgramPrint.asp?id=WeE1 Model Order Reduction with Emphasis on Non-linear and Multi-scale Problems II]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* [https://imsc.uni-graz.at/modred2019 4th Workshop on Model Reduction of Complex Dynamical Systems - MODRED], August 28th - 30th, 2019; Graz (Austria)&lt;br /&gt;
&lt;br /&gt;
* [http://15.usnccm.org US National Congress on Computational Mechanics (USNCCM)], July 28th - 1st August, 2019; Austin (USA)&lt;br /&gt;
** &amp;quot;[http://15.usnccm.org/208 Data Assimilation in Model Order Reduction Techniques for Computational Mechanics]&amp;quot; &lt;br /&gt;
** &amp;quot;[http://15.usnccm.org/1001 Model Order Reduction for Computational Continuum Mechanics]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* [https://iciam2019.org International Congress on Industrial and Applied Mathematics], July 15th - 19th, 2019; Valencia (Spain)&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FT-2-4%201 MS FT-2-4 1: New trends in dimensionality reduction of parametrized and stochastic PDEs - Part 1 of 2]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FT-2-4%202 MS FT-2-4 2: New trends in dimensionality reduction of parametrized and stochastic PDEs - Part 2 of 2]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20GH-3-3%202 MS GH-3-3 2: Model order reduction methods and their broad applications in engineering - Part 1 of 3]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20GH-3-3%203 MS GH-3-3 3: Model order reduction methods and their broad applications in engineering - Part 2 of 3]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20GH-3-3%204 MS GH-3-3 4: Model order reduction methods and their broad applications in engineering - Part 3 of 3]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20A1-1-1%205 MS A1-1-1 5: Advances in reduced order methods for parameter-dependent problems - Part 1 of 1]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FE-1-3%205 MS FE-1-3 5: Network based model reduction in large-scale simulations, imaging and data-science - Part 1 of 3]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FE-1-3%206 MS FE-1-3 6: Network based model reduction in large-scale simulations, imaging and data-science - Part 2 of 3]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FE-1-3%207 MS FE-1-3 7: Network based model reduction in large-scale simulations, imaging and data-science - Part 3 of 3]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20GH-3-3%205 MS GH-3-3 5: Model Reduction and Coupled Problems in Industry Applications - Part 1 of 2]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20GH-3-3%206 MS GH-3-3 6: Model Reduction and Coupled Problems in Industry Applications - Part 2 of 2]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FE-1-G%207 MS FE-1-G 7: Model-reduction, randomization, and other techniques for large-scale inversion and UQ   - Part 1 of 1]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FT-2-4%207 MS FT-2-4 7: Reduced Order Modeling for Parametric CFD Problems - Part 1 of 4]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FT-2-4%208 MS FT-2-4 8: Reduced Order Modeling for Parametric CFD Problems - Part 2 of 4]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FT-2-4%209 MS FT-2-4 9: Reduced Order Modeling for Parametric CFD Problems - Part 3 of 4]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FT-2-4%2010 MS FT-2-4 10: Reduced Order Modeling for Parametric CFD Problems - Part 4 of 4]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20GH-0-1%207 MS GH-0-1 7: Reduced-order modeling and data-driven estimation in waves and fluids - Part 1 of 2]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20GH-0-1%208 MS GH-0-1 8: Reduced-order modeling and data-driven estimation in waves and fluids - Part 2 of 2]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FE-1-G%209 MS FE-1-G 9: Recent Advancements in Model Reduction for Stochastic and Nonlinear Systems - Part 1 of 2]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FE-1-G%2010 MS FE-1-G 10: Recent Advancements in Model Reduction for Stochastic and Nonlinear Systems - Part 2 of 2]&amp;quot;&lt;br /&gt;
* [https://indico.sissa.it/event/34/ Summer School on Reduced Order Methods in Computational Fluid Dynamics], July 8th - 12th, 2019; Trieste (Italy)&lt;br /&gt;
* [https://2019.compdyn.org 7th International Conference on Computational Methods in Structural Dynamics and Earthquake Engineering - COMPDYN], June 24th - 26th, 2019; Crete (Greece)&lt;br /&gt;
** &amp;quot;MS 5: Surrogate and Reduced-Order Modeling for Stochastic Simulation of Physical Systems&amp;quot;&lt;br /&gt;
** &amp;quot;MS 6: Uncertainty Computations with Reduced Order Models and Low-Rank Representations&amp;quot;&lt;br /&gt;
** &amp;quot;MS 27: Advances in model reduction techniques in computational structural dynamics&amp;quot;&lt;br /&gt;
* [http://modelreduction.net/workshops/7th-international-workshop/ 7th International Workshop on Model Reduction in Reactive Flow (IWMRRF)], June 18th - 21st, 2019; Trondheim (Norway)&lt;br /&gt;
* [https://isc.tamu.edu/events/Spring2019/ Spring 2019 Model Reduction Workshop] April 29th, 2019; Houston (USA)&lt;br /&gt;
* [https://www.dropbox.com/s/yqqnyxufa36tfdf/EECI-IGSC-2019-Model%20Reduction.pdf?dl=0 Model Reduction for Linear and Nonlinear Systems], April 29th - May 3rd, 2019; London (England)&lt;br /&gt;
* [http://www.math.sissa.it/course/phd-course/reduced-order-methods-computational-mechanics Reduced Order Methods for Computational Mechanics], April 15th - 18th, 2019; Trieste (Italy)&lt;br /&gt;
* [https://cmsa.fas.harvard.edu/machine-learning/ Machine Learning for Multiscale Model Reduction Workshop], March 27th - 29th, 2019; Cambridge (USA)&lt;br /&gt;
* [https://www.siam.org/Conferences/CM/Main/cse19 2019 SIAM Conference on Computational Science and Engineering], February 25th - March 1st, 2019; Spokane (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65932 MS10: Model Reduction, Adaptivity, and High Dimensionality in Uncertainty Quantification - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65933 MS44: Model Reduction, Adaptivity, and High Dimensionality in Uncertainty Quantification - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65806 MS14: Emerging Trends for Structure Preserving Model Order Reduction - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65807 MS49: Emerging Trends for Structure Preserving Model Order Reduction - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65793 MS25: Discovering and Exploiting Low-dimensional Structures in Computational Models - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65794 MS60: Discovering and Exploiting Low-dimensional Structures in Computational Models - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=66052 MS93: Nonlinear Reduced Order Modeling of Realistic Engineering Fluid Flows]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65894 MS112: Recent Advances in Model Reduction and Uncertainty Quantification - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65895 MS145: Recent Advances in Model Reduction and Uncertainty Quantification - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65632 MS119: Model Reduction for Problems with Strong Convection, Sharp Gradients, and Discontinuities - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65633 MS153: Model Reduction for Problems with Strong Convection, Sharp Gradients, and Discontinuities - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65903 MS131: Homogenization and Reduced Order Modelling for Wave Equations - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65904 MS165: Homogenization and Reduced Order Modelling for Wave Equations - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=66036 MS188: Reduced Order Modeling for Parametric CFD Problems- Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=66037 MS221: Reduced Order Modeling for Parametric CFD Problems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65744 MS191: New Challenges and Opportunities for Model Order Reduction - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65745 MS225: New Challenges and Opportunities for Model Order Reduction - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65757 MS243: Reduced Order Models for Fluids: Achievements and Open Problems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65758 MS276: Reduced Order Models for Fluids: Achievements and Open Problems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65898 MS267: Model Reduction and Reduced-order Modeling of Dynamical Systems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65899 MS301: Model Reduction and Reduced-order Modeling of Dynamical Systems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=66160 MS308: Data-driven and Mathematical Model Reductions for Combustion System Simulation and Design]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=66143 MS316: Rational Approximation and its Applications]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65578 MS343: Data-augmented Reduced-order Modeling: Operator Learning and Closure/error Modeling - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65579 MS376: Data-augmented Reduced-order Modeling: Operator Learning and Closure/error Modeling - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65662 MS352: Recent Developments in Model Order Reduction Methods - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65663 MS384: Recent Developments in Model Order Reduction Methods - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=66087 MS361: Structure-exploiting Techniques for Approximation, Inference and Control of Complex Systems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=66088 MS393: Structure-exploiting Techniques for Approximation, Inference and Control of Complex Systems - Part II of II]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== 2018 ===&lt;br /&gt;
&lt;br /&gt;
* [http://meetings.aps.org/Meeting/DFD18/Content/3571 71st Annual Meeting of the APS Division of Fluid Dynamics], November 18th - 20th, 2018; Atlanta (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.aps.org/Meeting/DFD18/Session/A01 Session A01: Nonlinear Dynamics: Model Reduction I]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.aps.org/Meeting/DFD18/Session/F15 Session F15: Flow Control: Coherent Structures and Reduced Order Modeling]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.aps.org/Meeting/DFD18/Session/Q01 Session Q01: Nonlinear Dynamics: Model Reduction II]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* [https://www.math.uni-hamburg.de/morss2018/ Model Order Reduction Summer School], September 24th - 28th, 2018; Hamburg (Germany)&lt;br /&gt;
&lt;br /&gt;
* [https://alop.uni-trier.de/eucco2018 5th European Conference on Computational Optimization - EUCCO 2018], September 10th - 12th; Trier (Germany)&lt;br /&gt;
** &amp;quot;Focus Session: Model order reduction and low-rank approximation for nonlinear problems&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* Minisymposium at [https://sim.mathematik.uni-halle.de/numdiff/Numdiff15/home NumDiff 15], September 3rd - 7th, 2018; Halle (Germany)&lt;br /&gt;
** &amp;quot;Model order reduction for dynamical systems&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* [http://597.euromech.org/ Colloquium 597 Reduced Order Modeling in Mechanics of Materials], August 28th - 31st, 2018; Bad Herrenalb (Germany)&lt;br /&gt;
&lt;br /&gt;
* Minisymposia at &amp;quot;[http://www.wccm2018.org/ 13th World Congress in Computational Mechanics]&amp;quot;, July 22nd - 27th, 2018; New York (USA)&lt;br /&gt;
** &amp;quot;[http://www.wccm2018.org/MS_715 MS715: Reduced Order Methods for Parametric CFD Problems]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.wccm2018.org/MS_1802 MS1802: Model Reduction, Big Data and Dynamic Data-Driven Systems]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.wccm2018.org/MS_1804 MS1804: Machine Learning and Reduced-order Models for Complex Systems]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* Minisymposia at &amp;quot;[http://ecmi.bolyai.hu/ The 20th European Conference on Mathematics for Industry]&amp;quot;, June 18th - 22nd, 2018; Budapest (Hungary)&lt;br /&gt;
** &amp;quot;MS35: Reduced Order Modelling for Industrial and Scientific Applications&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* Sessions at the [http://www.ecc18.eu/ European Control Conference 2018] June 12th - 15th, 2018; Limassol (Cyprus)&lt;br /&gt;
** [https://controls.papercept.net/conferences/conferences/ECC18/program/ECC18_ContentListWeb_4.html#fra3 Model Reduction and Control in Large-Scale Networks]&lt;br /&gt;
** [https://controls.papercept.net/conferences/conferences/ECC18/program/ECC18_ContentListWeb_4.html#frb3 Model and Order Reduction I]&lt;br /&gt;
** [https://controls.papercept.net/conferences/conferences/ECC18/program/ECC18_ContentListWeb_4.html#frc3 Model and Order Reduction II]&lt;br /&gt;
&lt;br /&gt;
* Minisymposia at &amp;quot;[http://www.eccm-ecfd2018.org ECCM-ECFD 2018]&amp;quot;, June 11th - 15th, 2018; Glasgow (Scotland)&lt;br /&gt;
** &amp;quot;[http://www.eccm-ecfd2018.org/admin/Files/FileAbstract/a48.pdf MS48: Model reduction, big data and dynamic data-driven systems]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.eccm-ecfd2018.org/admin/Files/FileAbstract/a126.pdf MS126: Reduced order modeling with error control and adaptivity]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.eccm-ecfd2018.org/admin/Files/FileAbstract/a130.pdf MS130: Advances in reduced basis techniques for flow problems in analysis, control and optimization]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.eccm-ecfd2018.org/admin/Files/FileAbstract/a149.pdf MS149: Model order reduction for multiscale problems in geo-engineering]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.eccm-ecfd2018.org/admin/Files/FileAbstract/a170.pdf MS170: Reduced order modeling for uncertainty quantification in subsurface flow problems]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.eccm-ecfd2018.org/admin/Files/FileAbstract/a192.pdf MS192: Developments in reduced-order modelling of the cardiovascular system -- methods and applications.]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* &amp;quot;[http://www.itm.uni-stuttgart.de/iutam2018/ IUTAM Symposium on Model Order Reduction for Coupled Systems (MORCOS18)]&amp;quot; May 22nd - 25th, 2018; Stuttgart (Germany)&lt;br /&gt;
&lt;br /&gt;
* &amp;quot;[https://sites.google.com/view/rom4cvs Workshop on Reduced Models for the Cardiovascular Systems]&amp;quot; April 26th - 27th, 2018; Atlanta (USA)&lt;br /&gt;
&lt;br /&gt;
* Sessions at &amp;quot;[http://www.siam.org/meetings/uq18/ SIAM Conference on Uncertainty Quantification 2018]&amp;quot; April 16th - 20th, 2018; Garden Grove (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63738 MS5 - Model reduction and fast sampling methods for Bayesian inference - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63739 MS18 - Model reduction and fast sampling methods for Bayesian inference - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63731 MS54 - Dimension reduction in Bayesian inference - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63732 MS67 - Dimension reduction in Bayesian inference - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63733 MS80 - Dimension reduction in Bayesian inference - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63754 MS39 - recent advances in model reduction and data-enabled modeling - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63755 MS53 - recent advances in model reduction and data-enabled modeling - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63756 MS66 - recent advances in model reduction and data-enabled modeling - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63821 MS75 - Reduced Order Modeling for Uncertainty Quantification Targeting Exascale Computing Applications]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63791 MS79 - Reduced-order modeling techniques for large-scale UQ problems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63792 MS93 - Reduced-order modeling techniques for large-scale UQ problems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63817 MS106 - Advances in Reduced Order Modeling for Uncertainty Quantification - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63818 MS119 - Advances in Reduced Order Modeling for Uncertainty Quantification - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=64390 CP2 - Reduced-order Modeling and Dynamical Systems I]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=64404 CP13 - Reduced-order Modeling and Dynamical Systems II]&amp;quot;&lt;br /&gt;
* &amp;quot;[http://morepas2018.sciencesconf.org MoRePaS 2018 - Model Reduction of Parametrized Systems IV]&amp;quot; April 9th - 13th, 2018; Nantes (France)&lt;br /&gt;
* &amp;quot;[http://www.newton.ac.uk/event/unqw03 Reducing dimensions and cost for UQ in complex systems]&amp;quot; March 5th - 9th, 2018; Cambridge (UK)&lt;br /&gt;
* Minisymposium at [http://www.mathmod.at/ 9th MathMod] February 21st - 23rd, 2018; Vienna (Austria)&lt;br /&gt;
** &amp;quot;Model Reduction&amp;quot;&lt;br /&gt;
* &amp;quot;[https://sisu.ut.ee/eu_mornet/node/17747 EU-MORNET Workshop]&amp;quot; February 8th - 9th, 2018; Tartu (Estonia)&lt;br /&gt;
* &amp;quot;[http://www.jade-hs.de/unsere-hochschule/fachbereiche/ingenieurwissenschaften/forschung-und-praxis/modellierung-und-simulation-mechatronischer-systeme/february-2nd-2018-eu-mornet-workshop-mor-4-mechatronics/ MOR 4 MECHATRONICS]&amp;quot; February 2nd, 2018; Wilhemshaven (Germany&lt;br /&gt;
&lt;br /&gt;
=== 2017 ===&lt;br /&gt;
&lt;br /&gt;
* [http://math.lbl.gov/~mjzahr/wcrw2017/ West Coast ROM Workshop], November 17th, 2017; Berkeley (USA)&lt;br /&gt;
* &amp;quot;[http://www.imus.us.es/IWROM4/ MORTech 2017]&amp;quot; November 8th - 10th; Seville (Spain)&lt;br /&gt;
* &amp;quot;[http://www.math.rug.nl/gcsc/morschool.html Groningen Autumn School on Model Order Reduction]&amp;quot; October 30th - November 1st, 2017; Groningen (Netherlands)&lt;br /&gt;
* Minisymposia at [http://www.uib.no/en/enumath2017 ENUMATH 2017] September 25th - 29th, 2017; Voss (Norway)&lt;br /&gt;
** &amp;quot;[http://www.uib.no/en/enumath2017/98144/minisymposia MS10 - Reduced order models for time-dependent problems]&amp;quot; &lt;br /&gt;
** &amp;quot;[http://www.uib.no/en/enumath2017/98144/minisymposia MS28 - Model reduction methods for simulation and (optimal) control]&amp;quot;&lt;br /&gt;
* &amp;quot;[http://scale-freeback.eu/grenoble-workshop-2017/ Modelling Reduction Tools for Large Scale Complex Networks]&amp;quot; September 21st - 22nd, 2017; Grenoble (France)&lt;br /&gt;
* &amp;quot;[http://www.rbss2017.de Reduced Basis (and Friends) Summer School 2017]&amp;quot; September 19th - 22nd, 2017; Goslar (Germany)&lt;br /&gt;
* &amp;quot;[http://www.gipsa-lab.fr/summerschool/auto2017/ Approximation of Large-Scale Dynamical Models]&amp;quot; September 11th - 15th, 2017; Grenoble (France)&lt;br /&gt;
* &amp;quot;[http://www.rt.mw.tum.de/workshops-seminare/2-mor-doktoranden-workshop/ 2. MOR Doktoranden-Workshop]&amp;quot; September 6th - 8th, 2017; Munich (Germany)&lt;br /&gt;
* &amp;quot;[http://www.maths.dur.ac.uk/lms/107/index.html EPSRC Durham Symposium Model Order Reduction]&amp;quot; August 7th - 17th, 2017; Durham (UK)&lt;br /&gt;
* &amp;quot;[http://modelreduction.net/workshops/6th-international-workshop 6th International Workshop on Model Reduction in Reacting Flows]&amp;quot; July 11th - 14th, 2017; Princeton (USA)&lt;br /&gt;
* &amp;quot;[http://www.siam.org/meetings/dr17/ SIAM Workshop on Parameter Space Dimension Reduction (DR17)]&amp;quot; July 9th - 10th, 2017; Pittsburgh (USA)&lt;br /&gt;
* &amp;quot;[https://www.math.vt.edu/GFD_conference2017/ Conference on Classical and Geophysical Fluid Dynamics: Modeling, Reduction and Simulation]&amp;quot; June 26th - 28th, 2017; Blacksburg (USA) &lt;br /&gt;
* Session at [http://acc2017.a2c2.org/ American Control Conference] May 24th - 26th, 2017; Seattle (USA)&lt;br /&gt;
** &amp;quot;[https://css.paperplaza.net/conferences/scripts/rtf/2017ACC_ContentListWeb_3.html#thc05 Reduced Order Modeling]&amp;quot;&lt;br /&gt;
* &amp;quot;[http://eumornetlux.weebly.com/ 2nd Exploratory Workshop on Applications of Model Order Reduction Methods in Industrial Research and Development]&amp;quot; March 10th, 2017; Luxembourg (Luxembourg)&lt;br /&gt;
* &amp;quot;[http://www.eu-mor.net/model-reduction-course-hydra/ Model Reduction Course HYDRA]&amp;quot; March 6th - 9th, 2017; Eindhoven (Netherlands)&lt;br /&gt;
* Minisymposia at [http://www.siam.org/meetings/cse17/ SIAM CSE&#039;17] February 27th, 2017; Atlanta (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=60778 MS8 - Smooth, Reduced, Sparse -- Exploiting Structures for Surrogate Modeling in CSE - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=60779 MS37 - Smooth, Reduced, Sparse -- Exploiting Structures for Surrogate Modeling in CSE- Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=60819 MS66 - Smooth, Reduced, Sparse -- Exploiting Structures for Surrogate Modeling in CSE - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=60968 MS75 - Model Reduction Software: Nonlinear Problems and Data-Driven Solutions]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=61076 MS106 - Reduced Order Models for Fluids: Achievements and Open Problems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=61077 MS133 - Reduced Order Models for Fluids: Achievements and Open Problems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=61078 MS161 - Reduced Order Models for Fluids: Achievements and Open Problems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=61079 MS188 - Reduced Order Models for Fluids: Achievements and Open Problems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=60854 MS107 - Model Order Reduction: Perspectives from Junior Researchers - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=61077 MS134 - Model Order Reduction: Perspectives from Junior Researchers - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=61070 MS145 - Reduced Order Modeling Techniques in Large Scale &amp;amp; Data-Driven PDE Problems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=61071 MS172 - Reduced Order Modeling Techniques in Large Scale &amp;amp; Data-Driven PDE Problems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=60909 MS162 - Model Reduction for Optimal Control Problems: Perspectives from Junior Researchers - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=60910 MS189 - Model Reduction for Optimal Control Problems: Perspectives from Junior Researchers - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=61275 MS313 - Model and Solution Reduction Methods in Computational Mechanics: Challenges and Perspectives]&amp;quot;&lt;br /&gt;
* &amp;quot;[http://www.hda2017.unsw.edu.au 7th Workshop on High-Dimensional Approximation]&amp;quot; February 13th - 17th, 2017; Sydney (Australia)&lt;br /&gt;
* &amp;quot;[http://matperso.mines-paristech.fr/Personnel/david.ryckelynck Doctoral Workshop on Model Reduction in Nonlinear Mechanics]&amp;quot; February 13th - 17th, 2017; Paris (France)&lt;br /&gt;
* &amp;quot;[http://www.mpi-magdeburg.mpg.de/csc/events/modred2017 3rd Workshop on Model Reduction of Complex Dynamical Systems]&amp;quot; January 11th - 13th, 2017; Odense (Denmark)&lt;br /&gt;
&lt;br /&gt;
=== 2016 ===&lt;br /&gt;
&lt;br /&gt;
* &amp;quot;[http://www.komso.org/events/challenge-workshops/reduced-order-modeling-simulation-and-optimization-powerful-algorithms Reduced-Order Modeling for Simulation and Optimization: Powerful Algorithms as Key Enablers for Scientific Computing]&amp;quot; November 17th - 18th; Renningen (Germany)&lt;br /&gt;
* Workshop &amp;quot;[http://www.ihp.fr/en/CEB/T3-2016/workshop2 Recent developments in numerical methods for model reduction]&amp;quot; November 7th - 10th, 2016; Paris (France)&lt;br /&gt;
* &amp;quot;[http://www.mpi-magdeburg.mpg.de/3104866/RBSS2016 Reduced Basis Summer School 2016]&amp;quot; October 4th - 7th, 2016; Hedersleben (Germany)&lt;br /&gt;
* Workshop on &amp;quot;[http://www.eventbrite.it/e/reduced-order-modelling-and-multi-physics-coupling-for-reactor-applications-registration-24511634960 Reduced Order Modelling and Multiphysics Coupling for Rector Application]&amp;quot; September 30th, 2016; Milano (Italy)&lt;br /&gt;
* &amp;quot;[http://alop.uni-trier.de/event/alop-workshop-reduced-order-models-in-optimization/ ALOP Workshop: Reduced Order Models in Optimization] September 26th - 28th, 2016; Trier (Germany)&lt;br /&gt;
* &amp;quot;[http://www.mathos.unios.hr/index.php/443 Workshop on Model Reduction Methods and Optimization]&amp;quot; September 20th - 21st, 2016; Opatija (Croatia)&lt;br /&gt;
* &amp;quot;[http://www.mechbau.uni-stuttgart.de/EMMA/worm2016 3rd International Workshop on Order-Reduction Methods for Mechanics of Materials]&amp;quot; August 29th - 31st, 2016; Bad Herrenalb (Germany)&lt;br /&gt;
* Sessions at [http://www.siam.org/meetings/an16/ SIAM Annual Meeting 2016] 11th - 15, 2016; Boston (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23289 MS32 - Reduced Order Modeling Techniques in Uncertainty Quantification - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23290 MS46 - Reduced Order Modeling Techniques in Uncertainty Quantification - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23600 MS70 - Model Reduction and Krylov-Subspace Methods]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23394 MS71 - Model Reduction for Inverse Problems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23395 MS87 - Model Reduction for Inverse Problems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23453 MS103 - Model Reduction for Wavefield Simulations - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23454 MS118 - Model Reduction for Wavefield Simulations - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23099 MS104 - Model Reduction of Parametrized PDEs in Continuum Mechanics - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23100 MS119 - Model Reduction of Parametrized PDEs in Continuum Mechanics - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23146 MS137 - Model Reduction of Parametrized PDEs: Application to Optimization and Uncertainty Quantification]&amp;quot;&lt;br /&gt;
* Minisymposium &amp;quot;[http://ilas2016.cs.kuleuven.be/minisymposium.php?sid=41 Data-Driven Model Reduction]&amp;quot; at ILAS July 11th - 15th, 2016; Leuven (Belgium)&lt;br /&gt;
* Sessions at [http://sites.google.com/a/umn.edu/mtns-2016/ 22nd International Symposium on Mathematical Theory of Networks and Systems], July 11th - 15th, 2016; Minnesota (USA)&lt;br /&gt;
** &amp;quot;[http://controls.papercept.net/conferences/conferences/MTNS16/program/MTNS16_ContentListWeb_1.html#tua06 Model Reduction I]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://controls.papercept.net/conferences/conferences/MTNS16/program/MTNS16_ContentListWeb_1.html#tub06 Model Reduction II]&amp;quot; &lt;br /&gt;
* Session at [http://ecc16.eu European Control conference 2016], June 29th - July 1st, 2016; Aalborg (Denmark)&lt;br /&gt;
**  &amp;quot;[http://controls.papercept.net/conferences/conferences/ECC16/program/ECC16_ContentListWeb_4.html#fra6 Model Reduction]&amp;quot; &lt;br /&gt;
* Seminar &amp;quot;[http://www.aices.rwth-aachen.de/news-events/eu-regional-school/eu-regional-school-2016/courses/heinkenschloss-seminar Model Reduction in PDE Constrained Optimization]&amp;quot; at EU Regional School, June 14th - 15th, 2016; Aachen (Germany)&lt;br /&gt;
* Minisymposium &amp;quot;Reduced Basis, POD and PGD Model Order Reduction Techniques&amp;quot; at [http://www.eccomas2016.org ECCOMAS Congress 2016] June 5th - 10th, 2016; Crete Island (Greece)&lt;br /&gt;
* Workshop on &amp;quot;[http://www.eu-mor.net/workshop-model-order-reduction-control-inverse-problems-morcip-2016/ Model Order Reduction for Control and Inverse Problems (MORCIP)]&amp;quot; May 19th - 20th, 2016; Lausanne (Switzerland)&lt;br /&gt;
* Spring School &amp;quot;[http://www.ercoftac.org/events/ercoftac_montestigliano_spring_school_2016/ Reduced-order models for non-linear dynamics in fluid flows]&amp;quot; May 17th - 23rd, 2016; Siena (Italy)&lt;br /&gt;
* Sessions at [http://www.siam.org/meetings/uq16/ SIAM Conference on Uncertainty Quantification] April 5th - 8th, 2016; Lausanne (Switzerland)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=21926 MS13 - Reduced Order Modelling for UQ PDEs Problems: Optimization, Control, Data Assimilation - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=21927 MS28 - Reduced Order Modelling for UQ PDEs Problems: Optimization, Control, Data Assimilation - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=22194 MS89 - Reduced-order Modeling in Uncertainty Quantification - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=22195 MS104 - Reduced-order Modeling in Uncertainty Quantification - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=22196 MS119 - Reduced-order Modeling in Uncertainty Quantification - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=22362 MS149 - Model Reduction in Stochastic Dynamical Systems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=22363 MS164 - Model Reduction in Stochastic Dynamical Systems - Part II of II]&amp;quot;&lt;br /&gt;
* Workshop &amp;quot;[http://www.ians.uni-stuttgart.de/agh/misc/events/morml2016/index.html Data-Driven Model Order Reduction and Machine Learning (MORML 2016)]&amp;quot; March 30th - April 1st, 2016; University of Stuttgart (Germany)&lt;br /&gt;
* Symposium &amp;quot;[http://www.humboldt-foundation.de/web/gafos-2016-sessions.html Model Reduction for Complex Systems]&amp;quot; at [http://www.humboldt-foundation.de/web/gafos-2016.html 20th German-American Symposium] March 10th - 13th, 2016; Potsdam (Germany)&lt;br /&gt;
* &amp;quot;Doctoral Workshop on Model Reduction in nonlinear dynamics of fluids and structures&amp;quot; January 25th - 29th, 2016; Paris (France)&lt;br /&gt;
&lt;br /&gt;
=== 2015 ===&lt;br /&gt;
&lt;br /&gt;
* West Coast ROM Workshop, November 19th, 2015; Livermore (USA)&lt;br /&gt;
* [http://sites.google.com/site/mor4mems2015/ MOR 4 MEMS] November 17th - 18th, 2015; Karlsruhe (Germany). [http://www2.mpi-magdeburg.mpg.de/mpcsc/events/MOR4MEMS2015/ Here] you find the presentation slides.&lt;br /&gt;
* [http://rom2015.sciencesconf.org Reduced Basis, POD and PGD Model Reduction Techniques] November 4th - 6th, 2015; Cachan (France)&lt;br /&gt;
* [http://eumornetlux.weebly.com/ Exploratory Workshop on Applications of Model Order Reduction Methods in Industrial Research and Development] November 6th, 2015; Luxembourg (Luxembourg)&lt;br /&gt;
* [http://indico.sissa.it/event/4/ MoRePaS III] October 13th - 16th, 2015; Trieste (Italy)&lt;br /&gt;
* [http://www.mathos.unios.hr/index.php/351 3rd International School on Model Reduction for Dynamical Control Systems] October 5th - 10th, 2015; Dubrovnik (Croatia)&lt;br /&gt;
* Minisymposium &amp;quot;[http://enumath2015.iam.metu.edu.tr/minisymposia20.html Local and adaptive model reduction for partial differential equations]&amp;quot; at [http://enumath2015.iam.metu.edu.tr ENuMath] September 14th - 18th, 2015; Ankara (Turkey)&lt;br /&gt;
* Minisymposium &amp;quot;[http://scicade2015.math.uni-potsdam.de/scicade2015/minisymposiadetails.html#MS34 Parametric Model Order Reduction: Challenges and Solutions]&amp;quot; at [http://scicade2015.math.uni-potsdam.de SciCADE] September 14th - 18th, 2015; Potsdam (Germany)&lt;br /&gt;
* [http://www.math.uni-konstanz.de/numerik/pod/rbss_2015/ Reduced Basis Summer School 2015] September 14th - 18th, 2015; Konstanz (Germany)&lt;br /&gt;
* [http://www.cs.cas.cz/more2015/index.php Workshop on MOdel REduction] September 6th - 10th, 2015; Pilsen (Czech Republic)&lt;br /&gt;
* Session at [http://www.iciam2015.cn 8th International Congresson Industrial and Applied Mathematics] August 10th - 14th, 2015; Beijing (China)&lt;br /&gt;
** &amp;quot;[http://www.iciam2015.cn/ICIAM%202015-program.pdf#MS-Mo-D-32.88 MS-Mo-D-32 - Reduced-order modeling in uncertainty quantification and computational fluiddynamics - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.iciam2015.cn/ICIAM%202015-program.pdf#MS-Mo-E-32.aD MS-Mo-E-32 - Reduced-order modeling in uncertainty quantification and computational fluiddynamics - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.iciam2015.cn/ICIAM%202015-program.pdf#MS-We-E-03.cC MS-We-E-03 - Reduced-order modeling in uncertainty quantification and computational fluiddynamics - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.iciam2015.cn/ICIAM%202015-program.pdf#MS-We-E-55.XZ MS-We-E-55 - New advances in model order reduction:  methods, algorithms, and applications - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.iciam2015.cn/ICIAM%202015-program.pdf#MS-Th-BC-55.A6 MS-Th-BC-55 - New advances in model order reduction:  methods, algorithms, and applications - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.iciam2015.cn/ICIAM%202015-program.pdf#MS-Tu-E-14.1F MS-Tu-E-14 - Optimality in reduced order modeling and inversion - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.iciam2015.cn/ICIAM%202015-program.pdf#MS-We-D-14.l1 MS-We-D-14 - Optimality in reduced order modeling and inversion - Part II of II]&amp;quot;&lt;br /&gt;
* Reduced Order Methods Session at [http://www.yic.rwth-aachen.de/ YIC GACM ACCCES] July 20th - 23rd; Aachen (Germany)&lt;br /&gt;
* Session at [https://desreg.jku.at/ecc15/ European Control Conference 2015] July 15th -17th, 2015; Linz (Austria)&lt;br /&gt;
** &amp;quot;[http://controls.papercept.net/conferences/conferences/ECC15/program/ECC15_ContentListWeb_2.html#wea11 Model Reduction I]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://controls.papercept.net/conferences/conferences/ECC15/program/ECC15_ContentListWeb_2.html#wec11 Model Reduction II]&amp;quot;&lt;br /&gt;
* [http://modelreduction.net/workshops/5th-annual 5th International Workshop on Model Reduction in Reacting Flows] June 28th - July 1st; Spreewald (Germany)&lt;br /&gt;
* [http://www3.math.tu-berlin.de/numerik/MoRTransPhen/ Model Reduction for Transport Dominated Phenomena] May 19th - 20th; Berlin (Germany)&lt;br /&gt;
* International Symposium: [http://www.tum-ias.de/bigdata2015/program.html Big Data and Predictive Computational Modelling] May 18th - 21st, 2015; München (Germany) &lt;br /&gt;
* Minisymposia at [http://www.siam.org/meetings/cse15 SIAM Conference on Computational Science and Engineering] March 14th - 18th, 2015; Salt Lake City (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=20081 MS4 - Adaptive Model Order Reduction - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=20082 MS30 - Adaptive Model Order Reduction - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=20083 MS55 - Adaptive Model Order Reduction - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=20296 MS91 - Parametric Model Reduction and Inverse Problems - Part I of IV]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=20297 MS116 - Parametric Model Reduction and Inverse Problems - Part II of IV]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=20300 MS143 - Parametric Model Reduction and Inverse Problems - Part III of IV]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=20301 MS169 - Parametric Model Reduction and Inverse Problems - Part IV of IV]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=19988 MS148 - Reduced-order Models for PDE-constrained Optimization Problems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=19989 MS174 - Reduced-order Models for PDE-constrained Optimization Problems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=19907 MS187 - Recent Advances in Model Reduction - Part I of V]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=19908 MS211 - Recent Advances in Model Reduction - Part II of V]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=19960 MS236 - Recent Advances in Model Reduction - Part III of V]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=19961 MS260 - Recent Advances in Model Reduction - Part IV of V]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=19962 MS285 - Recent Advances in Model Reduction - Part V of V]&amp;quot;&lt;br /&gt;
* Session at [http://www.mathmod.at Vienna Conference on Mathematical Modelling (MathMod)] February 18th - 20th, 2015; Vienna (Austria)&lt;br /&gt;
** &amp;quot;Model Reduction&amp;quot;&lt;br /&gt;
* [http://congress.cimne.com/mor/frontal/objectives.asp Short Course on Model Order Reduction] January 26th - 29th, 2015; Barcelona (Spain)&lt;br /&gt;
&lt;br /&gt;
=== 2014 ===&lt;br /&gt;
* [http://www.mfo.de/occasion/1448b/www_view Oberwolfach Seminar on Projection Based Model Reduction] November 23rd - 29th, 2014; Oberwolfach (Germany)&lt;br /&gt;
* [http://eu-mor.net EU-MORNET] Kick-Off Meeting September 18th - 19th; Eindhoven (Netherlands)&lt;br /&gt;
* [http://www2.le.ac.uk/departments/mathematics/extranet/conferences/model-reduction-across-disciplines Model reduction across disciplines] August 19th - 22nd, 2014; Leicester (United Kingdom) &lt;br /&gt;
* [http://wwwmath.uni-muenster.de/rbss2014 Reduced Basis Summer School 2014] August 18th - 22nd, 2014; Muenster (Germany)&lt;br /&gt;
* Bay Area ROM Workshop, August 7th, 2014; Livermore (USA)&lt;br /&gt;
&lt;br /&gt;
* Minisymposia at [http://www.wccm-eccm-ecfd2014.org IACM-ECCOMAS 2014] July 20th - 25th, 2014; Barcelona (Spain)&lt;br /&gt;
** &amp;quot;[http://congress.cimne.com/iacm-eccomas2014/admin/Files/FileAbstract/a239.pdf MS239: Multibody System Dynamics and Modal Reduction]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://congress.cimne.com/iacm-eccomas2014/admin/Files/FileAbstract/a15.pdf MS015: Reduced Basis, POD and PGD Model Reduction Techniques]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://congress.cimne.com/iacm-eccomas2014/admin/Files/FileAbstract/a141.pdf MS141: Reduced Order Models in Vibroacoustics]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://congress.cimne.com/iacm-eccomas2014/admin/Files/FileAbstract/a69.pdf MS069: Advanced Reduced-order Modeling Strategies for Parametrized PDEs and Applications]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* Session at [http://www.siam.org/meetings/an14/ SIAM Annual Meeting 2014], July 7th - 11th; Chicago (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=19618 CP1 - Reduced Order Models]&amp;quot;&lt;br /&gt;
* Sessions at the [http://ecc14.eu European Control Conference 2014] June 24th- 27th, 2014; Strasbourg (France)&lt;br /&gt;
** &amp;quot;[https://controls.papercept.net/conferences/conferences/ECC14/program/ECC14_ContentListWeb_3.html#tha2 Model and Controller Reduction I]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://controls.papercept.net/conferences/conferences/ECC14/program/ECC14_ContentListWeb_4.html#frc2 Model and Controller Reduction II]&amp;quot;&lt;br /&gt;
* Session at [http://acc2014.a2c2.org/ American Control Conference] June 4th - 6th, 2014; Portland (USA)&lt;br /&gt;
** &amp;quot;[https://css.paperplaza.net/conferences/conferences/2014ACC/program/2014ACC_ContentListWeb_1.html#wea04 Reduced Order Modeling]&amp;quot;&lt;br /&gt;
* Sessions at [http://siam.org/meetings/uq14/ SIAM Conference on Uncertainty Quantification] March 31st - April 3rd; Savannah (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=18137 MS10 - Model-Reduction Techniques for Quantifying and Controlling Uncertainty]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=18298 MT3 - Reduced Order Methods for Modelling and Computational Reduction in UQ Problems]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=18664 CP11 - Reduced-order Modeling]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=18192 MS67 - Surrogate and Reduced Order Modeling for Statistical Inversion and Prediction - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=18193 MS77 - Surrogate and Reduced Order Modeling for Statistical Inversion and Prediction - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=17858 MS87 - Uncertainty Quantification via Dimension Reduction: Deterministic and Stochastic Approaches]&amp;quot;&lt;br /&gt;
* [http://jahrestagung.gamm-ev.de/index.php/scientific-program/minisymposia Parametric Model Reduction of Dynamical Systems] Minisymposium at the [http://jahrestagung.gamm-ev.de/ GAMM annual meeting 2014] March 10th - 14th, 2014; Erlangen (Germany)&lt;br /&gt;
&lt;br /&gt;
===2013===&lt;br /&gt;
* [http://www2.mpi-magdeburg.mpg.de/mpcsc/events/ModRed/2013/ ModRed 2013] December 11th - 13th, 2013; Magdeburg (Germany)&lt;br /&gt;
* [http://www.mathos.unios.hr/locschool2013/ DAAD International School on Linear Optimal Control of Dynamic Systems] September 23rd - 28th; Osijek (Croatia)&lt;br /&gt;
* [http://www.ma.tum.de/IGDK1754/SummerSchool2013 Summerschool &amp;quot;Reduced Basis Methods - Fundamentals and Applications&amp;quot;] September 16th - 19th; Munich (Germany)&lt;br /&gt;
* Reduced Basis Summer School 2013 August, 2013; Aachen (Germany)&lt;br /&gt;
* [http://enumath2013.epfl.ch Enumath] Minisymposium &amp;quot;Reduced order modelling for the simulation of complex systems&amp;quot; August 26th - 30th, 2013, Lausanne (Switzerland)&lt;br /&gt;
* Sessions at the [http://www.ecc13.ethz.ch European control Conference 2013] July 17th - 19th, 2013; Zurich (Switzerland)&lt;br /&gt;
** &amp;quot;[https://controls.papercept.net/conferences/conferences/ECC13/program/ECC13_ContentListWeb_4.html#fra12 Reduced Order Systems]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://controls.papercept.net/conferences/conferences/ECC13/program/ECC13_ContentListWeb_4.html#frc12 Model Reduction]&amp;quot;&lt;br /&gt;
* [http://modelreduction.net/workshops/4th-annual 4th International Workshop on Model Reduction in Reacting Flows] June 19th - 21st, 2013, San Francisco (USA)&lt;br /&gt;
* Sessions at [http://acc2013.a2c2.org American Control Conference] June 17th - 19th, 2013; Washington D.C. (USA)&lt;br /&gt;
** &amp;quot;[https://css.paperplaza.net/conferences/conferences/2013ACC/program/2013ACC_ContentListWeb_3.html#web05 Reduced-Order Modeling]&amp;quot;&lt;br /&gt;
* [http://modredcirm2013.uni-muenster.de/ CIRM workshop Model Reduction and Approximation for Complex Systems] June 10th - 14th, 2013; Marseille (France)&lt;br /&gt;
* [http://www.tapir.caltech.edu/~rom-gr/ Reduced Order Modelling in General Relativity] June 6th - 7th, 2013; Pasadena (USA)&lt;br /&gt;
* Sessions at the [http://www.siam.org/meetings/cse13 SIAM Conference on Computational Science and Engineering] February 25th - March 1st; Boston (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15551 MS20 - Structure-preserving Model Order Reduction of Large-scale Dynamical Systems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15552 MS40 - Structure-preserving Model Order Reduction of Large-scale Dynamical Systems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15728 MS14 - Model Reduction and Surrogate Modeling Advances in Porous Media Flow Simulation and Optimization - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15729 MS34 - Model Reduction and Surrogate Modeling Advances in Porous Media Flow Simulation and Optimization - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15547 MS104 - Data-Driven Model Reduction - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15548 MS138 - Data-Driven Model Reduction - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15549 MS194 - Data-Driven Model Reduction - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15676 MS144 - Nonlinear Model Reduction of Complex Flows: Modeling, Analysis, and Computations - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15677 MS182 - Nonlinear Model Reduction of Complex Flows: Modeling, Analysis, and Computations - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15639 MS45 - Data Driven and Nonliner Model Reduction - Parts I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15640 MS68 - Data Driven and Nonliner Model Reduction - Parts II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15641 MS116 - Data Driven and Nonliner Model Reduction - Parts III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15422 MS95 - Reduced Order Modelling for Complex Systems in CFD - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15423 MS164 - Reduced Order Modelling for Complex Systems in CFD - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15424 MS244 - Reduced Order Modelling for Complex Systems in CFD - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15758 MS219 - Model Order Reduction: Recent Advances and Challenges - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15759 MS257 - Model Order Reduction: Recent Advances and Challenges - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15760 MS272 - Model Order Reduction: Recent Advances and Challenges - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15952 CP12 - Model Reduction and Data-Driven Approaches]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===2012===&lt;br /&gt;
* [http://www.morepas.org/workshop2012/index.html MoRePaS 2] October 2nd - 5th, 2012; Günzburg (Germany)&lt;br /&gt;
* [http://www.mathematik.uni-stuttgart.de/fak8/ians/lehrstuhl/agh/misc/events/rbm_workshop_2012.html Reduced Basis Summer School 2012] August 28th - 31st; Stuttgart (Germany)&lt;br /&gt;
* [http://www.math.uni-hamburg.de/moa/ Workshop on Adaptivity and Model Order Reduction in PDE Constrained Optimization] July 23rd - 27th; Hamburg (Germany)&lt;br /&gt;
* Sessions at [http://acc2012.a2c2.org/ American Control Conference] June 27th - 29th, 2012; Montreal (Canada)&lt;br /&gt;
** &amp;quot;[https://css.paperplaza.net/conferences/conferences/2012ACC/program/2012ACC_ContentListWeb_1.html#wec20 Reduced Order Modeling]&amp;quot;&lt;br /&gt;
* [https://www.cecam.org/workshop-2-681.html Reduced Basis, POD and Reduced Order Methods for model and computational reduction: towards real-time computing and visualization?] May 14 - 16th; Lausanne (Switzerland)&lt;br /&gt;
* [https://www2.mpi-magdeburg.mpg.de/mpcsc/news/program_tegernsee.pdf Workshop on Nonlinear MOR] May 6th - 9th; Tegernsee (Germany)&lt;br /&gt;
* Minisymposia at [http://siam.org/meetings/uq12/ SIAM Conference on Uncertaity Quantification] April 2nd - 6th; Raleigh (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=14305 MS58 - Model Reduction for Nonlinear Dynamical Systems]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=14520 MS80 - Reduced Order Modeling for High Dimensional Nonlinear Models]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===2011===&lt;br /&gt;
* [http://www.math.uni-konstanz.de/numerik/pod/workshop Advances in POD and RB Model-Order Reduction] November 21st, 2011; Konstanz (Germany)&lt;br /&gt;
* [http://www.uni-ulm.de/mawi/mawi-numerik/aktuelles/summer-school-rbm.html Reduced Basis Summer School 2011] October 25th - 28th; Ulm (Germany)&lt;br /&gt;
* [http://www2.mpi-magdeburg.mpg.de/mpcsc/events/trogir/ Summer School on Numerical Linear Algebra for Dynamical and High-Dimensional Problems] October 10th - 15th; Trogir (Croatia)&lt;br /&gt;
* [http://www.math.uni-bremen.de/zetem/cms/detail.php?template=gamm_parse_title&amp;amp;person=gamm11/program GAMM Workshop Applied and Numerical Linear Algebra with Special Emphasis on Model Reduction] September 21st - 22nd; Bremen (Germany)&lt;br /&gt;
* Sessions at [http://iciam.org/event/iciam-2011-%E2%80%93-vancouver 7th International Congress on Industrial and Applied Mathematics] July 18th - 22nd; Vancouver (Canada)&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11230 MS38 - Optimal Parameter Sampling in Model Reduction - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11231 MS87 - Optimal Parameter Sampling in Model Reduction - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11232 MS136 - Optimal Parameter Sampling in Model Reduction - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11296 MS148 - Structure-Preserving Model Reduction - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11297 MS199 - Structure-Preserving Model Reduction - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11298 MS256 - Structure-Preserving Model Reduction - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11452 MS340 - Dynamical Systems Approaches to Model Reduction -- Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=12051 MS388 - Dynamical Systems Approaches to Model Reduction -- Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11877 MS363 - Reduced Basis Methods and their Applications - Part I of IV]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11878 MS416 - Reduced Basis Methods and their Applications - Part II of IV]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11879 MS462 - Reduced Basis Methods and their Applications - Part III of IV]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11880 MS511 - Reduced Basis Methods and their Applications - Part IV of IV]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=13350 CP36 - Reduced Order Models]&amp;quot;&lt;br /&gt;
* [http://www.modelreduction.net/iwmrrf2011/site/ 3rd International Workshop on Model Reduction in Reacting Flows] April 27th - 29th; Corfu (Greece)&lt;br /&gt;
* Session at the [http://siam.org/meetings/cse11 SIAM Conference on Computational Science and Engineering] February 28th - March 4th; Reno (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=10982 MS18 - Model Reduction of Nonlinear and Parametrized Systems - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=10983 MS26 - Model Reduction of Nonlinear and Parametrized Systems - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=10984 MS40 - Model Reduction of Nonlinear and Parametrized Systems - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11497 MS39 - Model Order Reduction Using Graph Theory and Numerical Linear Algebra]&amp;quot;&lt;br /&gt;
* [http://www.wias-berlin.de/workshops/MOR2011/ Workshop on Model Order Reduction in Optimization and Control with PDEs] January 26th - 28th; Berlin (Germany)&lt;br /&gt;
&lt;br /&gt;
===2010===&lt;br /&gt;
* [http://www.ians.uni-stuttgart.de/MoRePaS/events/Ulm10/index.html Workshop on RB Methods] December 7th - 8th, 2010; Ulm (Germany)&lt;br /&gt;
* [http://www3.math.tu-berlin.de/modred2010/ ModRed 2010] December 2nd - 4th, 2010; Berlin (Germany)&lt;br /&gt;
* Sessions at [http://www.siam.org/meetings/an10/ SIAM Annual Meeting 2010], July 12th - 16th, 2010; Pittsburgh (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=10125 MS2 - Advances in Model Reduction for Large-Scale Problems - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=10126 MS38 - Advances in Model Reduction for Large-Scale Problems - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=10127 MS51 - Advances in Model Reduction for Large-Scale Problems - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=10202 MS33 - Reduced Order Models for Dynamical Systems]&amp;quot;&lt;br /&gt;
* Minisymposium &amp;quot;[http://www.eccomas-cfd2010.org/minisymposia.php Model Order Reduction of Complex Systems in CFD]&amp;quot; at [http://www.eccomas-cfd2010.org ECCOMAS CFD]; June 14th - 17th, 2010; Lisbon (Portugal)&lt;br /&gt;
&lt;br /&gt;
===2009===&lt;br /&gt;
* Sessions at [https://archive.siam.org/meetings/la09/index.php SIAM Conference on Applied Linear Algebra] October 26 th 29th, 2009; Monterey Bay-Seaside (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=8992 MS14 - Model Order Reduction for Dynamical Systems - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=8993 MS20 - Model Order Reduction for Dynamical Systems - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=8994 MS32 - Model Order Reduction for Dynamical Systems - Part III of III]&amp;quot;&lt;br /&gt;
* [http://www.win.tue.nl/casa/meetings/special/mor09/ Autumn School on Future Developments in Model Order Reduction] September 21st - 25th, 2009; Terschelling (Netherlands)&lt;br /&gt;
* [http://www.uni-muenster.de/CeNoS/ocs/index.php/MRP/MRP09/ MoRePaS] September 16th - 18th, 2009;  Münster (Germany)&lt;br /&gt;
* Session at [http://www.siam.org/meetings/an09/ SIAM Annual Meeting 2009] July 6th - 10th, 2009; Denver (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=8863 CP20 - Model Reduction]&amp;quot;&lt;br /&gt;
* [http://modelreduction.net/iwmrrf2009/ 2nd International Workshop on Model Reduction in Reacting Flows] March 30th - April 1st, 2009 Notre Dame (USA)&lt;br /&gt;
* [http://www.cl.eps.manchester.ac.uk/medialand/maths/archived-events/workshops/www.mims.manchester.ac.uk/events/workshops/HSMoR09/ CICADA Workshop on Hybrid Systems and Model Reduction] March 19th - 20th, 2009 Manchester (England)&lt;br /&gt;
* Sessions at the [http://siam.org/meetings/cse09 SIAM Conference on Computational Science and Engineering] March 2nd - 6th, 2009; Miami (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=8306 CP12 - Model Reduction]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=7918 MS106 - Model Reduction - Part I of V]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=7919 MS119 - Model Reduction - Part II of V]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=7920 MS127 - Model Reduction - Part III of V]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=7921 MS141 - Model Reduction - Part IV of V]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=7922 MS151 - Model Reduction - Part V of V]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===2008===&lt;br /&gt;
&lt;br /&gt;
* [https://www.math.uni-hamburg.de/spag/zms/syrene/ Model Reduction for Circuit Simulation] October 30th - 31st, 2008; Hamburg (Germany)&lt;br /&gt;
* Session at [http://acc2008.a2c2.org/ American Control Conference] June 11th - 13th, 2008; Seattle (USA)&lt;br /&gt;
** &amp;quot;[https://css.paperplaza.net/conferences/conferences/2008ACC/program/2008ACC_ContentListWeb_3.html#fra11 Model Reduction]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===2007===&lt;br /&gt;
* [http://www.win.tue.nl/casa/meetings/special/mor07/ Symposium on Recent Advances in Model Order Reduction] November 23rd, 2007; Eindhoven (Netherlands)&lt;br /&gt;
* [http://modelreduction.net/ModelReductionWorkshop/Home%20Page.html 1st International Workshop on Model Reduction in Reacting Flows] September 3rd - 5th, 2007; Rome (Italy)&lt;br /&gt;
* Sessions at [http://iciam.org/event/iciam-2007-%E2%80%93-zurich 6th International Congress for Industrial and Applied Mathematics] July 16th - 20th, 2007; Zurich (Switzerland)&lt;br /&gt;
** &amp;quot;[http://iciamold.jsiam.org/iciam2007/ICIAM07-ProgramBook.pdf#IC/MP/002/S/346 Model reduction: theory, methodology and software #1]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://iciamold.jsiam.org/iciam2007/ICIAM07-ProgramBook.pdf#IC/MP/002/S/346-2 Model reduction: theory, methodology and software #2]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://iciamold.jsiam.org/iciam2007/iciam07_programbook.pdf#IC/MP/020/S/347 Model reduction: structured and higher-order systems #1]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://iciamold.jsiam.org/iciam2007/iciam07_programbook.pdf#IC/MP/020/S/347-2 Model reduction: structured and higher-order systems #2]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://iciamold.jsiam.org/iciam2007/iciam07_programbook.pdf#IC/MP/020/P/348 Model reduction in circuit simulation #1]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://iciamold.jsiam.org/iciam2007/ICIAM07-ProgramBook.pdf#IC/MP/020/P/348-2 Model reduction in circuit simulation #2]&amp;quot;&lt;br /&gt;
* Session at [http://acc2007.a2c2.org/ American Control Conference] July 11th - 13th, 2007; New York (USA)&lt;br /&gt;
** &amp;quot;[https://css.paperplaza.net/conferences/conferences/2007ACC/program/2007ACC_ContentListWeb_1.html#web07 Reduced Order Modeling]&amp;quot;&lt;br /&gt;
* Sessions at [https://archive.siam.org/meetings/ct07/index.php SIAM Conference on Control and its Application] June 29th - July 1st, 2007; San Francisco (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=6338 MS16 - Model Reduction for Control and Dynamical Systems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=6339 MS21 - Model Reduction for Control and Dynamical Systems - Part II of II]&amp;quot;&lt;br /&gt;
* Sessions at [http://siam.org/meetings/cse07 SIAM Conference on Computational Science and Engineering] February 19th - 23rd, 2007; Costa Mesa (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=5955 MS36 - Model Order Reduction and Automated Behavioural Modeling - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=6029 MS48 - Model Order Reduction and Automated Behavioural Modeling - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=6137 CP12 - Reduced Order Modelling]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===2006===&lt;br /&gt;
* Session &amp;quot;Model Reduction&amp;quot; at [http://www.eurosime.org/b06.htm EuroSimE 2006] April 24th - 26th, 2006; Como (Italy)&lt;br /&gt;
&lt;br /&gt;
* Minisymposia at [http://www.siam.org/meetings/an06/index.php SIAM Annual Meeting 2006] July 10th - 14th, 2006; Boston (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=5357 MS13 - Model Reduction of Dynamical Systems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=5358 MS31 - Model Reduction of Dynamical Systems - Part II of II]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===2005===&lt;br /&gt;
* [http://www.lorentzcenter.nl/lc/web/2005/160/info.php3?wsid=160. Model order reduction, coupled problems and optimization] September 19th - 23rd, 2005; Leiden (Netherlands)&lt;br /&gt;
&lt;br /&gt;
* Minisymposia at [http://www.siam.org/meetings/an05/index.htm SIAM Annual Conference 2005] July 11th - 15th, 2005; New Orleans (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=4372 MS43 - Model Reduction for Large Scale Dynamical Systems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=4373 MS55 - Model Reduction for Large Scale Dynamical Systems - Part II of II]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===2004===&lt;br /&gt;
* [https://www.birs.ca/events/2004/5-day-workshops/04w5513 Model Reduction Problems and Matrix Methods] April 3rd - 8th; Banff (Canada)&lt;br /&gt;
&lt;br /&gt;
===2003===&lt;br /&gt;
* [http://web.archive.org/web/20070612131401/http://www.math.tu-berlin.de/numerik/mt/NumMat/Meetings/0310_MFO/ Dimensional Reduction of Large-Scale Systems] October 19th - 25th, 2003 Oberwolfach (Germany)&lt;br /&gt;
&lt;br /&gt;
===2001===&lt;br /&gt;
* [https://research.tue.nl/en/activities/macsi-workshop-on-model-reduction MACSI workshop on Model Reduction] October 8th - 9th, 2001; Eindhoven (Netherlands)&lt;br /&gt;
* Minisymposium at [http://user.it.uu.se/~icosahom/ International Conference On Spectral and High Order Methods] June 11th - 15th, 2001; Uppsala (Sweden)&lt;br /&gt;
** &amp;quot;Reduced-Basis Methods for Partial Differential Equations&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===2000===&lt;br /&gt;
* Session at the [https://archive.siam.org/meetings/cse00/ First SIAM Conference on Computational Science and Engineering] September 21st - 24th, 2000; Washington D.C. (USA)&lt;br /&gt;
** &amp;quot;[https://archive.siam.org/meetings/cse00/cp25.htm CP25 - Model Reduction, Validation and Data Assimilation]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===1999===&lt;br /&gt;
* Minisymposia at the [http://iciam.org/event/iciam-1999-%E2%80%93-edinburgh 4th International Council for Industrial and Applied Mathematics Congress] July 5th - 9th, 1999; Edinburgh (Scotland)&lt;br /&gt;
** &amp;quot;[http://www.macs.hw.ac.uk/archive/iciam99/PrintedProgramme/BookOfAbstracts.pdf#page=171 MSP-187 Reduced-Order Modeling of Large-Scale Systems and Applications in Industry]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.macs.hw.ac.uk/archive/iciam99/PrintedProgramme/BookOfAbstracts.pdf#page=187 MSP-205,206 Methods of Dimension Reduction]&amp;quot;&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=MOR_Wiki:Current_events&amp;diff=3952</id>
		<title>MOR Wiki:Current events</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=MOR_Wiki:Current_events&amp;diff=3952"/>
		<updated>2025-05-28T15:01:22Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Miscellaneous]]&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&lt;br /&gt;
== MOR Wiki Users Meetings ==&lt;br /&gt;
&lt;br /&gt;
* The first general assembly of MOR Wiki users took place on December 10th - 2013, at the [http://mpim.iwww.mpg.de/research/groups/csc MPI in Magdeburg] (Germany).&lt;br /&gt;
&lt;br /&gt;
* The second MOR Wiki meeting took place on April 23rd - 2015, at the [http://mpim.iwww.mpg.de/research/groups/csc MPI in Magdeburg] (Germany).&lt;br /&gt;
&lt;br /&gt;
* The third MOR Wiki meeting took place on January 11th - 2017, during the [http://www.mpi-magdeburg.mpg.de/csc/events/modred2017 ModRed in Odense] (Denmark).&lt;br /&gt;
&lt;br /&gt;
== Upcoming Workhops and Conferences ==&lt;br /&gt;
* [https://mortech2025.i3a.es/ MORTech 2025 -- 7th International Workshop on Model Order Reduction Techniques], November 26 - 28  2025, Zaragoza (Spain)&lt;br /&gt;
&lt;br /&gt;
== Past Events ==&lt;br /&gt;
=== 2025 ===&lt;br /&gt;
* [https://mathmod.at Minisymposium on Recent Advances in Model Order Reduction and Data-driven Modelling at MathMod 2025], February 19 - 21 2025, Vienna (Austria)&lt;br /&gt;
&lt;br /&gt;
=== 2024 ===&lt;br /&gt;
* [https://more2024.sciencesconf.org/ MORe2024 - Model Reduction and Surrogate Modeling], September 9 - 13, 2024; La Jolla, California (United States)&lt;br /&gt;
&lt;br /&gt;
* [https://www.ymmor2024.uni-stuttgart.de/ Young Mathematicians in Model Order Reduction Conference 2024], March 4 - 8, 2024; Stuttgart (Germany)&lt;br /&gt;
&lt;br /&gt;
=== 2023 ===&lt;br /&gt;
&lt;br /&gt;
* [https://mortech2023.sciencesconf.org/ MORTech 2023 – 6th International Workshop on Model Reduction Techniques], November 22 - 24, 2023; Paris-Saclay (France)&lt;br /&gt;
&lt;br /&gt;
* [https://ims.nus.edu.sg/events/international-workshop-on-reduced-order-methods/ International Workshop on Reduced Order Methods], May 22nd - 26th, 2023; Singapore (Singapore)&lt;br /&gt;
&lt;br /&gt;
* [https://personal.math.vt.edu/borggajt/nlromc/index.html Nonlinear Model Reduction for Control], May 22nd - 26th, 2023; Blacksburg (USA).&lt;br /&gt;
&lt;br /&gt;
=== 2022 ===&lt;br /&gt;
&lt;br /&gt;
* [https://alop.uni-trier.de/event/autumn-school-on-model-reduction-and-model-predictive-control-with-differential-equations/ Model Reduction and Model Predictive Control with Differential Equations], October 4th - 7th, 2022; Trier (Germany)&lt;br /&gt;
&lt;br /&gt;
* [https://more.sciencesconf.org/ Model Reduction and Surrogate Modeling (MORE)], September 19th - 23rd, 2022; Berlin (Germany)&lt;br /&gt;
&lt;br /&gt;
* [https://www.mathmod.at/ 10th Vienna International Conference on Mathematical Modelling], July 27th – 29th, 2022;Vienna (Austria)&lt;br /&gt;
** [https://ifac.papercept.net/conferences/conferences/MAMO21/program/MAMO21_ContentListWeb_2.html#wed3 Model Reduction]&lt;br /&gt;
** [https://ifac.papercept.net/conferences/conferences/MAMO21/program/MAMO21_ContentListWeb_2.html#wed1 Recent Advances in Model Reduction and Surrogate Modeling I of IV]&lt;br /&gt;
** [https://ifac.papercept.net/conferences/conferences/MAMO21/program/MAMO21_ContentListWeb_2.html#wee1 Recent Advances in Model Reduction and Surrogate Modeling II of IV]&lt;br /&gt;
** [https://ifac.papercept.net/conferences/conferences/MAMO21/program/MAMO21_ContentListWeb_2.html#thb1 Recent Advances in Model Reduction and Surrogate Modeling III of IV]&lt;br /&gt;
** [https://ifac.papercept.net/conferences/conferences/MAMO21/program/MAMO21_ContentListWeb_2.html#thd1 Recent Advances in Model Reduction and Surrogate Modeling IV of IV]&lt;br /&gt;
&lt;br /&gt;
* [https://www.uni-muenster.de/MathematicsMuenster/events/2022/YMCN-model-order-reduction.shtml#Schedule Young Mathematicians in Model Order Reduction (YMMOR)], July 18th - 22th, 2022; Münster (Germany)&lt;br /&gt;
&lt;br /&gt;
* [https://dcn.nat.fau.eu/events/mini-workshop-model-reduction-and-control/ Mini-Workshop &amp;quot;Model Reduction and Control&amp;quot;] May 24th, 2022; (ONLINE)&lt;br /&gt;
&lt;br /&gt;
* [https://www.siam.org/conferences/cm/conference/uq22 SIAM Conference on Uncertainty Quantification], April 12th -15th, 2022; Atlanta (USA)&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=73287 MS4: Nonlinear Model Reduction Methods for Random or Parametric Time Dependent Problems - Part I of III]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=73288 MS32: Nonlinear Model Reduction Methods for Random or Parametric Time Dependent Problems - Part II of III]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=73289 MS76: Nonlinear Model Reduction Methods for Random or Parametric Time Dependent Problems - Part III of III]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=73521 MS154: Reduced Order Modelling for Forward and Inverse UQ - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=73537 MS168: Reduced Order Modelling for Forward and Inverse UQ - Part II of II]&lt;br /&gt;
&lt;br /&gt;
=== 2021 ===&lt;br /&gt;
&lt;br /&gt;
* [https://indico.sissa.it/event/43/ RAMSES: Reduced order models; Approximation theory; Machine learning; Surrogates, Emulators and Simulators], December 14th - 17th, 2021; Trieste (Italy)&lt;br /&gt;
&lt;br /&gt;
* [https://www.romsoc.eu/wim-2021/ Workshop in Industrial Mathematics (WIM2021) with the Reduced-Order Modeling, Simulation and Optimization of Coupled Systems], October 20th - 22nd; Catania (Italy)&lt;br /&gt;
&lt;br /&gt;
* [https://www.icms.org.uk/events/event/?id=1178 New Developments in Reduced Order Modelling], October 15th; &#039;&#039;&#039;ONLINE&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* [https://mmldt.eng.ucsd.edu/home MMLDT-CSET - Mechanistic Machine Learning and Digital Twins for Computational Science, Engineering &amp;amp; Technology 2021],  September 26th - 29th, 2021; San Diego (USA)&lt;br /&gt;
** [https://docs.google.com/spreadsheets/d/1GosdHfvpskcnnR56u29ZRNfBWC4kg0hR/edit#gid=83060610&amp;amp;range=A1 MS 4-7: Physics-Informed Data-based Model Reduction]&lt;br /&gt;
** [https://docs.google.com/spreadsheets/d/1GosdHfvpskcnnR56u29ZRNfBWC4kg0hR/edit#gid=1626075110&amp;amp;range=A1 MS 4-8: Model Reduction and Machine Learning for Fluids and Fluid-Structure Interactions]&lt;br /&gt;
** [https://docs.google.com/spreadsheets/d/1GosdHfvpskcnnR56u29ZRNfBWC4kg0hR/edit#gid=618092903&amp;amp;range=A1 MS 4-9: Advances in Reduced Order Modeling of Solids and Fluids and Porous Media]&lt;br /&gt;
** [https://docs.google.com/spreadsheets/d/1GosdHfvpskcnnR56u29ZRNfBWC4kg0hR/edit#gid=378364206&amp;amp;range=A1 MS 4-10: Model Reduction of Dynamical Systems with Deep Learning]&lt;br /&gt;
** [https://docs.google.com/spreadsheets/d/1GosdHfvpskcnnR56u29ZRNfBWC4kg0hR/edit#gid=667740&amp;amp;range=A1 MS 5-1: Advances in Machine Learning and Model Reduction for Inversion in Geophysical and Geological Applications]&lt;br /&gt;
&lt;br /&gt;
* [http://smai.emath.fr/cemracs/cemracs21/ CEMRACS 2021 - Data Assimilation and Reduced Modeling for High Dimensional Problems], July 19th - August 27th, 2021; Luminy (France)&lt;br /&gt;
&lt;br /&gt;
* [http://16.usnccm.org US National Congress on Computational Mechanics (USNCCM)], July 25th - 29th, 2021; Chicago (USA)&lt;br /&gt;
** &amp;quot;[http://16.usnccm.org/MS_311 MS311: Model Order Reduction for Physical Simulations]&amp;quot; &lt;br /&gt;
&lt;br /&gt;
* [https://www.siam.org/conferences/cm/conference/an21 SIAM Annual Meeting], July 19th - 23rd, 2021; &#039;&#039;&#039;ONLINE&#039;&#039;&#039;&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=71670 MS62: Advances in Uncertainty Quantification with Model Order Reduction Methods I]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=71671 MS88: Advances in Uncertainty Quantification with Model Order Reduction Methods II]&lt;br /&gt;
&lt;br /&gt;
* [https://www.siam.org/conferences/cm/conference/ct21 SIAM Conference on Control and Its Applications], July 19th - 21st, 2021; &#039;&#039;&#039;ONLINE&#039;&#039;&#039;&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=71167 MS1: Model Reduction for Control of High-Dimensional Nonlinear Systems I]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=71168 MS9: Model Reduction for Control of High-Dimensional Nonlinear Systems II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=71169 MS17: Model Reduction for Control of High-Dimensional Nonlinear Systems III]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=72048 MS26: Data-Driven Methods in Model Reduction and Control I]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=72049 MS34: Data-Driven Methods in Model Reduction and Control II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=72050 MS42: Data-Driven Methods in Model Reduction and Control III]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=71716 MS25: Model Reduction of Complex Dynamical Systems and its Applications I]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=71717 MS33: Model Reduction of Complex Dynamical Systems and its Applications II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=71718 MS41: Model Reduction of Complex Dynamical Systems and its Applications III]&lt;br /&gt;
&lt;br /&gt;
* [https://www.siam.org/conferences/cm/conference/cse21 SIAM Conference on Computational Science and Engineering (CSE21)], March 1st - 5th, 2021; Fort Worth (USA)&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=70067 MS8:   Data Driven Reduced Order Models: Structure, Networks and Imaging - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69881 MS26:  Reduced Order Methods for Parametric CFD Problems - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69861 MS27:  Reduced Order Model Stabilizations and Closures - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69824 MS31:  Structure-Preserving Model Order Reduction for Large-Scale Systems - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69862 MS60:  Reduced Order Model Stabilizations and Closures - Part II of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69943 MS74:  Dimensionality Reduction and Reduced-Order Models for the Boltzmann Transport Equation]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=70068 MS98:  Data Driven Reduced Order Models: Structure, Networks and Imaging - Part II of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69882 MS111: Reduced Order Methods for Parametric CFD Problems - Part II of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69928 MS113: Reduced-Order Modeling and Analysis of Turbulence - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69825 MS119: Structure-Preserving Model Order Reduction for Large-Scale Systems - Part II of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69929 MS147: Reduced-Order Modeling and Analysis of Turbulence - Part II of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=70145 MS172: Model Order Reduction for Large-Scale Problems - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=70146 MS234: Model Order Reduction for Large-Scale Problems - Part II of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=70123 MS309: Data-Driven Modeling and Model Reduction: Honoring 70th Birthday of Thanos Antoulas - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69938 MS319: Model Order Reduction for Complex Systems - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69816 MS324: Recent Advances in Model Order Reduction for Advection-Dominated Simulations - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69764 MS326: Recent Developments in Nonlinear Model Reduction Methods - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=70124 MS340: Data-Driven Modeling and Model Reduction: Honoring 70th Birthday of Thanos Antoulas - Part II of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69939 MS350: Model Order Reduction for Complex Systems - Part II of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69819 MS355: Recent Advances in Model Order Reduction for Advection-Dominated Simulations - Part II of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69765 MS357: Recent Developments in Nonlinear Model Reduction Methods - Part II of II]&lt;br /&gt;
&lt;br /&gt;
* [https://www.wccm-eccomas2020.org 14th WWCM and ECCOMAS Congress 2020], January 11th - 15th, 2021; Paris (France)&lt;br /&gt;
** &amp;quot;[https://www.wccm-eccomas2020.org/admin/Files/FileAbstract/a93.pdf  MS93: Reduced Order and Surrogate Modeling for Uncertainty Analysis in Structural Mechanics]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.wccm-eccomas2020.org/admin/Files/FileAbstract/a139.pdf MS139: Advances in Intrusive and Non-Intrusive Order Reduction Techniques for Flow Analysis, Control and Optimization]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.wccm-eccomas2020.org/admin/Files/FileAbstract/a152.pdf MS152: Model Order Reduction Methods for Parametrized Mechanical Systems]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.wccm-eccomas2020.org/admin/Files/FileAbstract/a170.pdf MS170: Numerical Model Reduction and Data-Driven Surrogates for Multi-Physics Applications]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.wccm-eccomas2020.org/admin/Files/FileAbstract/a179.pdf MS179: Numerical Techniques for the Simulations and Model Reduction of Complex Physical Systems]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.wccm-eccomas2020.org/admin/Files/FileAbstract/a204.pdf MS204: Analysing Parameterised Reduced Order Models]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.wccm-eccomas2020.org/admin/Files/FileAbstract/a371.pdf MS371: Model Order Reduction for Vibroacoustic Problems]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.wccm-eccomas2020.org/admin/Files/FileAbstract/a415.pdf MS415: Model Order Reduction for Nonlinear (Time, Space, Parameter) Multiscale Problems and Applications]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.wccm-eccomas2020.org/admin/Files/FileAbstract/a458.pdf MS458: Coupled Multiphysics Problems and Reduced Order Methods Applied to Compute Digital Twin Models in Industrial Applications]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== 2020 ===&lt;br /&gt;
&lt;br /&gt;
* [https://www.mfo.de/occasion/2045a/www_view Banach Center – Oberwolfach Graduate Seminar: Model Reduction and Approximation: Projection-, Tensor- and Data-based Methods], November 1st - 7th, 2020; Bedlewo (Poland) (&#039;&#039;&#039;CANCELLED&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
* [https://www.tu-chemnitz.de/mathematik/dmv2020/index.php DMV Annual Meeting], September 14th - 18th, 2020; (&#039;&#039;&#039;VIRTUAL&#039;&#039;&#039;)&lt;br /&gt;
** &amp;quot;[https://www.tu-chemnitz.de/mathematik/dmv2020/minisymp.php Model Order Reduction]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* [https://morss2020.epfl.ch Model Order Reduction Summer School]; September 7th - 10th, 2020; (&#039;&#039;&#039;VIRTUAL&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
* [https://www.mpi-magdeburg.mpg.de/csc/events/samm20 SAMM20 - Learning Models from Data: Model Reduction, System Identification and Machine Learning], July  27th - 31st, 2020; (&#039;&#039;&#039;VIRTUAL&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
* [https://www.siam.org/conferences/cm/conference/an20 2nd Joint SIAM/CAIMS Annual Meeting], July 6th - 17th, 2020; (&#039;&#039;&#039;VIRTUAL&#039;&#039;&#039;)&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=68897 MS4: Projection-Based Model Order Reduction for Partial Differential Equations - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=68898 MS7: Projection-Based Model Order Reduction for Partial Differential Equations - Part II of II]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* [https://icerm.brown.edu/programs/sp-s20/ Model and dimension reduction in uncertain and dynamic systems], January 27th - May 1st, 2020; Providence (USA)&lt;br /&gt;
** [https://icerm.brown.edu/programs/sp-s20/w1/ Mathematics of Reduced Order Models], February 17th - 21st&lt;br /&gt;
** [https://icerm.brown.edu/programs/sp-s20/w2/ Algorithms for Dimension and Complexity Reduction], March 23rd - 27th (&#039;&#039;&#039;VIRTUAL&#039;&#039;&#039;)&lt;br /&gt;
** [https://icerm.brown.edu/programs/sp-s20/w3/ Computational Statistics and Data-Driven Models], April 20th - 24th (&#039;&#039;&#039;VIRTUAL&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
* [https://siam-uq20.ma.tum.de SIAM Conference on Uncertainty Quantification (UQ20)], March 24th - 27th, 2020; Munich (Germany) (&#039;&#039;&#039;CANCELLED&#039;&#039;&#039;)&lt;br /&gt;
** &amp;quot;[https://www.events.tum.de/frontend/index.php?page_id=3712&amp;amp;v=List&amp;amp;do=15&amp;amp;day=490&amp;amp;ses=1625# CT20: ROM and Surrogate Models]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.events.tum.de/frontend/index.php?page_id=3712&amp;amp;v=List&amp;amp;do=15&amp;amp;day=489&amp;amp;ses=1723# MS311: Dynamical low rank and reduced basis methods for random or parametric time dependent problems (Part I of II) ]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.events.tum.de/frontend/index.php?page_id=3712&amp;amp;v=List&amp;amp;do=15&amp;amp;day=489&amp;amp;ses=1724# MS312: Dynamical low rank and reduced basis methods for random or parametric time dependent problems (Part II of II)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.events.tum.de/frontend/index.php?page_id=3712&amp;amp;v=List&amp;amp;do=15&amp;amp;day=490&amp;amp;ses=1717# MS331: Recent Advances in Reduced-Order Models for Many Query and Time-Critical Problems]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.events.tum.de/frontend/index.php?page_id=3712&amp;amp;v=List&amp;amp;do=15&amp;amp;day=491&amp;amp;ses=1774# MS351: Reduced order methods for uncertainty quantification in CFD parametric problems]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== 2019 ===&lt;br /&gt;
&lt;br /&gt;
* [https://mortech2019.sciencesconf.org/ MORTech - 5th International Workshop on Reduced Basis, POD or PGD-Based Model Reduction Technique], November 20th - 22nd, 2019; Paris (France)&lt;br /&gt;
&lt;br /&gt;
* [https://www.tudelft.nl/en/events/2019/dcse/dcse-fall-school-november-4-8-2019-on-reduced-order-modeling-and-uncertainty-quantification/ DCSE Fall School November 4-8, 2019, on &amp;quot;Reduced-Order Modeling and Uncertainty Quantification&amp;quot;] November 4th - 8th, 2019; Delft (Netherlands)&lt;br /&gt;
&lt;br /&gt;
* [https://school.pymor.org/ pyMOR School 2019], October 7th - 11th, 2019; Magdeburg (Germany)&lt;br /&gt;
&lt;br /&gt;
* [https://www.enumath2019.eu ENUMATH 2019], September 30th - October 4th, 2019; Egmond aan Zee (Netherlands)&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/30 MS2: Recent Advances in Model Order Reduction]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/76 MS14: Reduced Order Models for parametric PDEs: special focus on time-dependent phenomena and time-harmonic wave problems (Part 1)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/87 MS14: Reduced Order Models for parametric PDEs: special focus on time-dependent phenomena and time-harmonic wave problems (Part 2)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/113 MS18: Model order reduction in optimisation, control, and data assimilation (Part 1)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/124 MS18: Model order reduction in optimisation, control, and data assimilation (Part 2)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/6 MS26: New challenges and opportunities for model order reduction (Part 1)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/17 MS26: New challenges and opportunities for model order reduction (Part 2)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/7 MS29: Low-rank modelling in uncertainty quantification (Part 1)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/18 MS29: Low-rank modelling in uncertainty quantification (Part 2)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/8 MS31: Numerical methods for identification and model reduction of nonlinear systems (Part 1)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/19 MS31: Numerical methods for identification and model reduction of nonlinear systems (Part 2)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/151 MS38: Modeling of reduced order submanifolds in non-linear spaces (Part 1)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/162 MS38: Modeling of reduced order submanifolds in non-linear spaces (Part 2)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/121 Computing and Model Order Reduction (Part 1)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/132 Computing and Model Order Reduction (Part 2)]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* [https://www.win.tue.nl/~hbansal/morss.html Model Order Reduction Summer School - MORSS], September 23rd - 27th, 2019; Eindhoven (Netherlands)&lt;br /&gt;
&lt;br /&gt;
* [https://congress.cimne.com/complas2019/frontal/default.asp International Conference on Computational Plasticity. Fundamentals and Applications.], September 3rd - 5th, 2019; Barcelona (Spain)&lt;br /&gt;
** &amp;quot;[https://congress.cimne.com/complas2019/frontal/ProgramPrint.asp?id=WeM1 Model Order Reduction with Emphasis on Non-linear and Multi-scale Problems I]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://congress.cimne.com/complas2019/frontal/ProgramPrint.asp?id=WeE1 Model Order Reduction with Emphasis on Non-linear and Multi-scale Problems II]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* [https://imsc.uni-graz.at/modred2019 4th Workshop on Model Reduction of Complex Dynamical Systems - MODRED], August 28th - 30th, 2019; Graz (Austria)&lt;br /&gt;
&lt;br /&gt;
* [http://15.usnccm.org US National Congress on Computational Mechanics (USNCCM)], July 28th - 1st August, 2019; Austin (USA)&lt;br /&gt;
** &amp;quot;[http://15.usnccm.org/208 Data Assimilation in Model Order Reduction Techniques for Computational Mechanics]&amp;quot; &lt;br /&gt;
** &amp;quot;[http://15.usnccm.org/1001 Model Order Reduction for Computational Continuum Mechanics]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* [https://iciam2019.org International Congress on Industrial and Applied Mathematics], July 15th - 19th, 2019; Valencia (Spain)&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FT-2-4%201 MS FT-2-4 1: New trends in dimensionality reduction of parametrized and stochastic PDEs - Part 1 of 2]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FT-2-4%202 MS FT-2-4 2: New trends in dimensionality reduction of parametrized and stochastic PDEs - Part 2 of 2]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20GH-3-3%202 MS GH-3-3 2: Model order reduction methods and their broad applications in engineering - Part 1 of 3]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20GH-3-3%203 MS GH-3-3 3: Model order reduction methods and their broad applications in engineering - Part 2 of 3]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20GH-3-3%204 MS GH-3-3 4: Model order reduction methods and their broad applications in engineering - Part 3 of 3]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20A1-1-1%205 MS A1-1-1 5: Advances in reduced order methods for parameter-dependent problems - Part 1 of 1]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FE-1-3%205 MS FE-1-3 5: Network based model reduction in large-scale simulations, imaging and data-science - Part 1 of 3]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FE-1-3%206 MS FE-1-3 6: Network based model reduction in large-scale simulations, imaging and data-science - Part 2 of 3]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FE-1-3%207 MS FE-1-3 7: Network based model reduction in large-scale simulations, imaging and data-science - Part 3 of 3]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20GH-3-3%205 MS GH-3-3 5: Model Reduction and Coupled Problems in Industry Applications - Part 1 of 2]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20GH-3-3%206 MS GH-3-3 6: Model Reduction and Coupled Problems in Industry Applications - Part 2 of 2]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FE-1-G%207 MS FE-1-G 7: Model-reduction, randomization, and other techniques for large-scale inversion and UQ   - Part 1 of 1]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FT-2-4%207 MS FT-2-4 7: Reduced Order Modeling for Parametric CFD Problems - Part 1 of 4]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FT-2-4%208 MS FT-2-4 8: Reduced Order Modeling for Parametric CFD Problems - Part 2 of 4]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FT-2-4%209 MS FT-2-4 9: Reduced Order Modeling for Parametric CFD Problems - Part 3 of 4]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FT-2-4%2010 MS FT-2-4 10: Reduced Order Modeling for Parametric CFD Problems - Part 4 of 4]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20GH-0-1%207 MS GH-0-1 7: Reduced-order modeling and data-driven estimation in waves and fluids - Part 1 of 2]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20GH-0-1%208 MS GH-0-1 8: Reduced-order modeling and data-driven estimation in waves and fluids - Part 2 of 2]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FE-1-G%209 MS FE-1-G 9: Recent Advancements in Model Reduction for Stochastic and Nonlinear Systems - Part 1 of 2]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FE-1-G%2010 MS FE-1-G 10: Recent Advancements in Model Reduction for Stochastic and Nonlinear Systems - Part 2 of 2]&amp;quot;&lt;br /&gt;
* [https://indico.sissa.it/event/34/ Summer School on Reduced Order Methods in Computational Fluid Dynamics], July 8th - 12th, 2019; Trieste (Italy)&lt;br /&gt;
* [https://2019.compdyn.org 7th International Conference on Computational Methods in Structural Dynamics and Earthquake Engineering - COMPDYN], June 24th - 26th, 2019; Crete (Greece)&lt;br /&gt;
** &amp;quot;MS 5: Surrogate and Reduced-Order Modeling for Stochastic Simulation of Physical Systems&amp;quot;&lt;br /&gt;
** &amp;quot;MS 6: Uncertainty Computations with Reduced Order Models and Low-Rank Representations&amp;quot;&lt;br /&gt;
** &amp;quot;MS 27: Advances in model reduction techniques in computational structural dynamics&amp;quot;&lt;br /&gt;
* [http://modelreduction.net/workshops/7th-international-workshop/ 7th International Workshop on Model Reduction in Reactive Flow (IWMRRF)], June 18th - 21st, 2019; Trondheim (Norway)&lt;br /&gt;
* [https://isc.tamu.edu/events/Spring2019/ Spring 2019 Model Reduction Workshop] April 29th, 2019; Houston (USA)&lt;br /&gt;
* [https://www.dropbox.com/s/yqqnyxufa36tfdf/EECI-IGSC-2019-Model%20Reduction.pdf?dl=0 Model Reduction for Linear and Nonlinear Systems], April 29th - May 3rd, 2019; London (England)&lt;br /&gt;
* [http://www.math.sissa.it/course/phd-course/reduced-order-methods-computational-mechanics Reduced Order Methods for Computational Mechanics], April 15th - 18th, 2019; Trieste (Italy)&lt;br /&gt;
* [https://cmsa.fas.harvard.edu/machine-learning/ Machine Learning for Multiscale Model Reduction Workshop], March 27th - 29th, 2019; Cambridge (USA)&lt;br /&gt;
* [https://www.siam.org/Conferences/CM/Main/cse19 2019 SIAM Conference on Computational Science and Engineering], February 25th - March 1st, 2019; Spokane (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65932 MS10: Model Reduction, Adaptivity, and High Dimensionality in Uncertainty Quantification - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65933 MS44: Model Reduction, Adaptivity, and High Dimensionality in Uncertainty Quantification - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65806 MS14: Emerging Trends for Structure Preserving Model Order Reduction - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65807 MS49: Emerging Trends for Structure Preserving Model Order Reduction - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65793 MS25: Discovering and Exploiting Low-dimensional Structures in Computational Models - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65794 MS60: Discovering and Exploiting Low-dimensional Structures in Computational Models - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=66052 MS93: Nonlinear Reduced Order Modeling of Realistic Engineering Fluid Flows]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65894 MS112: Recent Advances in Model Reduction and Uncertainty Quantification - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65895 MS145: Recent Advances in Model Reduction and Uncertainty Quantification - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65632 MS119: Model Reduction for Problems with Strong Convection, Sharp Gradients, and Discontinuities - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65633 MS153: Model Reduction for Problems with Strong Convection, Sharp Gradients, and Discontinuities - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65903 MS131: Homogenization and Reduced Order Modelling for Wave Equations - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65904 MS165: Homogenization and Reduced Order Modelling for Wave Equations - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=66036 MS188: Reduced Order Modeling for Parametric CFD Problems- Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=66037 MS221: Reduced Order Modeling for Parametric CFD Problems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65744 MS191: New Challenges and Opportunities for Model Order Reduction - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65745 MS225: New Challenges and Opportunities for Model Order Reduction - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65757 MS243: Reduced Order Models for Fluids: Achievements and Open Problems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65758 MS276: Reduced Order Models for Fluids: Achievements and Open Problems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65898 MS267: Model Reduction and Reduced-order Modeling of Dynamical Systems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65899 MS301: Model Reduction and Reduced-order Modeling of Dynamical Systems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=66160 MS308: Data-driven and Mathematical Model Reductions for Combustion System Simulation and Design]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=66143 MS316: Rational Approximation and its Applications]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65578 MS343: Data-augmented Reduced-order Modeling: Operator Learning and Closure/error Modeling - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65579 MS376: Data-augmented Reduced-order Modeling: Operator Learning and Closure/error Modeling - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65662 MS352: Recent Developments in Model Order Reduction Methods - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65663 MS384: Recent Developments in Model Order Reduction Methods - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=66087 MS361: Structure-exploiting Techniques for Approximation, Inference and Control of Complex Systems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=66088 MS393: Structure-exploiting Techniques for Approximation, Inference and Control of Complex Systems - Part II of II]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== 2018 ===&lt;br /&gt;
&lt;br /&gt;
* [http://meetings.aps.org/Meeting/DFD18/Content/3571 71st Annual Meeting of the APS Division of Fluid Dynamics], November 18th - 20th, 2018; Atlanta (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.aps.org/Meeting/DFD18/Session/A01 Session A01: Nonlinear Dynamics: Model Reduction I]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.aps.org/Meeting/DFD18/Session/F15 Session F15: Flow Control: Coherent Structures and Reduced Order Modeling]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.aps.org/Meeting/DFD18/Session/Q01 Session Q01: Nonlinear Dynamics: Model Reduction II]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* [https://www.math.uni-hamburg.de/morss2018/ Model Order Reduction Summer School], September 24th - 28th, 2018; Hamburg (Germany)&lt;br /&gt;
&lt;br /&gt;
* [https://alop.uni-trier.de/eucco2018 5th European Conference on Computational Optimization - EUCCO 2018], September 10th - 12th; Trier (Germany)&lt;br /&gt;
** &amp;quot;Focus Session: Model order reduction and low-rank approximation for nonlinear problems&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* Minisymposium at [https://sim.mathematik.uni-halle.de/numdiff/Numdiff15/home NumDiff 15], September 3rd - 7th, 2018; Halle (Germany)&lt;br /&gt;
** &amp;quot;Model order reduction for dynamical systems&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* [http://597.euromech.org/ Colloquium 597 Reduced Order Modeling in Mechanics of Materials], August 28th - 31st, 2018; Bad Herrenalb (Germany)&lt;br /&gt;
&lt;br /&gt;
* Minisymposia at &amp;quot;[http://www.wccm2018.org/ 13th World Congress in Computational Mechanics]&amp;quot;, July 22nd - 27th, 2018; New York (USA)&lt;br /&gt;
** &amp;quot;[http://www.wccm2018.org/MS_715 MS715: Reduced Order Methods for Parametric CFD Problems]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.wccm2018.org/MS_1802 MS1802: Model Reduction, Big Data and Dynamic Data-Driven Systems]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.wccm2018.org/MS_1804 MS1804: Machine Learning and Reduced-order Models for Complex Systems]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* Minisymposia at &amp;quot;[http://ecmi.bolyai.hu/ The 20th European Conference on Mathematics for Industry]&amp;quot;, June 18th - 22nd, 2018; Budapest (Hungary)&lt;br /&gt;
** &amp;quot;MS35: Reduced Order Modelling for Industrial and Scientific Applications&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* Sessions at the [http://www.ecc18.eu/ European Control Conference 2018] June 12th - 15th, 2018; Limassol (Cyprus)&lt;br /&gt;
** [https://controls.papercept.net/conferences/conferences/ECC18/program/ECC18_ContentListWeb_4.html#fra3 Model Reduction and Control in Large-Scale Networks]&lt;br /&gt;
** [https://controls.papercept.net/conferences/conferences/ECC18/program/ECC18_ContentListWeb_4.html#frb3 Model and Order Reduction I]&lt;br /&gt;
** [https://controls.papercept.net/conferences/conferences/ECC18/program/ECC18_ContentListWeb_4.html#frc3 Model and Order Reduction II]&lt;br /&gt;
&lt;br /&gt;
* Minisymposia at &amp;quot;[http://www.eccm-ecfd2018.org ECCM-ECFD 2018]&amp;quot;, June 11th - 15th, 2018; Glasgow (Scotland)&lt;br /&gt;
** &amp;quot;[http://www.eccm-ecfd2018.org/admin/Files/FileAbstract/a48.pdf MS48: Model reduction, big data and dynamic data-driven systems]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.eccm-ecfd2018.org/admin/Files/FileAbstract/a126.pdf MS126: Reduced order modeling with error control and adaptivity]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.eccm-ecfd2018.org/admin/Files/FileAbstract/a130.pdf MS130: Advances in reduced basis techniques for flow problems in analysis, control and optimization]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.eccm-ecfd2018.org/admin/Files/FileAbstract/a149.pdf MS149: Model order reduction for multiscale problems in geo-engineering]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.eccm-ecfd2018.org/admin/Files/FileAbstract/a170.pdf MS170: Reduced order modeling for uncertainty quantification in subsurface flow problems]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.eccm-ecfd2018.org/admin/Files/FileAbstract/a192.pdf MS192: Developments in reduced-order modelling of the cardiovascular system -- methods and applications.]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* &amp;quot;[http://www.itm.uni-stuttgart.de/iutam2018/ IUTAM Symposium on Model Order Reduction for Coupled Systems (MORCOS18)]&amp;quot; May 22nd - 25th, 2018; Stuttgart (Germany)&lt;br /&gt;
&lt;br /&gt;
* &amp;quot;[https://sites.google.com/view/rom4cvs Workshop on Reduced Models for the Cardiovascular Systems]&amp;quot; April 26th - 27th, 2018; Atlanta (USA)&lt;br /&gt;
&lt;br /&gt;
* Sessions at &amp;quot;[http://www.siam.org/meetings/uq18/ SIAM Conference on Uncertainty Quantification 2018]&amp;quot; April 16th - 20th, 2018; Garden Grove (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63738 MS5 - Model reduction and fast sampling methods for Bayesian inference - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63739 MS18 - Model reduction and fast sampling methods for Bayesian inference - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63731 MS54 - Dimension reduction in Bayesian inference - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63732 MS67 - Dimension reduction in Bayesian inference - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63733 MS80 - Dimension reduction in Bayesian inference - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63754 MS39 - recent advances in model reduction and data-enabled modeling - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63755 MS53 - recent advances in model reduction and data-enabled modeling - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63756 MS66 - recent advances in model reduction and data-enabled modeling - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63821 MS75 - Reduced Order Modeling for Uncertainty Quantification Targeting Exascale Computing Applications]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63791 MS79 - Reduced-order modeling techniques for large-scale UQ problems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63792 MS93 - Reduced-order modeling techniques for large-scale UQ problems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63817 MS106 - Advances in Reduced Order Modeling for Uncertainty Quantification - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63818 MS119 - Advances in Reduced Order Modeling for Uncertainty Quantification - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=64390 CP2 - Reduced-order Modeling and Dynamical Systems I]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=64404 CP13 - Reduced-order Modeling and Dynamical Systems II]&amp;quot;&lt;br /&gt;
* &amp;quot;[http://morepas2018.sciencesconf.org MoRePaS 2018 - Model Reduction of Parametrized Systems IV]&amp;quot; April 9th - 13th, 2018; Nantes (France)&lt;br /&gt;
* &amp;quot;[http://www.newton.ac.uk/event/unqw03 Reducing dimensions and cost for UQ in complex systems]&amp;quot; March 5th - 9th, 2018; Cambridge (UK)&lt;br /&gt;
* Minisymposium at [http://www.mathmod.at/ 9th MathMod] February 21st - 23rd, 2018; Vienna (Austria)&lt;br /&gt;
** &amp;quot;Model Reduction&amp;quot;&lt;br /&gt;
* &amp;quot;[https://sisu.ut.ee/eu_mornet/node/17747 EU-MORNET Workshop]&amp;quot; February 8th - 9th, 2018; Tartu (Estonia)&lt;br /&gt;
* &amp;quot;[http://www.jade-hs.de/unsere-hochschule/fachbereiche/ingenieurwissenschaften/forschung-und-praxis/modellierung-und-simulation-mechatronischer-systeme/february-2nd-2018-eu-mornet-workshop-mor-4-mechatronics/ MOR 4 MECHATRONICS]&amp;quot; February 2nd, 2018; Wilhemshaven (Germany&lt;br /&gt;
&lt;br /&gt;
=== 2017 ===&lt;br /&gt;
&lt;br /&gt;
* [http://math.lbl.gov/~mjzahr/wcrw2017/ West Coast ROM Workshop], November 17th, 2017; Berkeley (USA)&lt;br /&gt;
* &amp;quot;[http://www.imus.us.es/IWROM4/ MORTech 2017]&amp;quot; November 8th - 10th; Seville (Spain)&lt;br /&gt;
* &amp;quot;[http://www.math.rug.nl/gcsc/morschool.html Groningen Autumn School on Model Order Reduction]&amp;quot; October 30th - November 1st, 2017; Groningen (Netherlands)&lt;br /&gt;
* Minisymposia at [http://www.uib.no/en/enumath2017 ENUMATH 2017] September 25th - 29th, 2017; Voss (Norway)&lt;br /&gt;
** &amp;quot;[http://www.uib.no/en/enumath2017/98144/minisymposia MS10 - Reduced order models for time-dependent problems]&amp;quot; &lt;br /&gt;
** &amp;quot;[http://www.uib.no/en/enumath2017/98144/minisymposia MS28 - Model reduction methods for simulation and (optimal) control]&amp;quot;&lt;br /&gt;
* &amp;quot;[http://scale-freeback.eu/grenoble-workshop-2017/ Modelling Reduction Tools for Large Scale Complex Networks]&amp;quot; September 21st - 22nd, 2017; Grenoble (France)&lt;br /&gt;
* &amp;quot;[http://www.rbss2017.de Reduced Basis (and Friends) Summer School 2017]&amp;quot; September 19th - 22nd, 2017; Goslar (Germany)&lt;br /&gt;
* &amp;quot;[http://www.gipsa-lab.fr/summerschool/auto2017/ Approximation of Large-Scale Dynamical Models]&amp;quot; September 11th - 15th, 2017; Grenoble (France)&lt;br /&gt;
* &amp;quot;[http://www.rt.mw.tum.de/workshops-seminare/2-mor-doktoranden-workshop/ 2. MOR Doktoranden-Workshop]&amp;quot; September 6th - 8th, 2017; Munich (Germany)&lt;br /&gt;
* &amp;quot;[http://www.maths.dur.ac.uk/lms/107/index.html EPSRC Durham Symposium Model Order Reduction]&amp;quot; August 7th - 17th, 2017; Durham (UK)&lt;br /&gt;
* &amp;quot;[http://modelreduction.net/workshops/6th-international-workshop 6th International Workshop on Model Reduction in Reacting Flows]&amp;quot; July 11th - 14th, 2017; Princeton (USA)&lt;br /&gt;
* &amp;quot;[http://www.siam.org/meetings/dr17/ SIAM Workshop on Parameter Space Dimension Reduction (DR17)]&amp;quot; July 9th - 10th, 2017; Pittsburgh (USA)&lt;br /&gt;
* &amp;quot;[https://www.math.vt.edu/GFD_conference2017/ Conference on Classical and Geophysical Fluid Dynamics: Modeling, Reduction and Simulation]&amp;quot; June 26th - 28th, 2017; Blacksburg (USA) &lt;br /&gt;
* Session at [http://acc2017.a2c2.org/ American Control Conference] May 24th - 26th, 2017; Seattle (USA)&lt;br /&gt;
** &amp;quot;[https://css.paperplaza.net/conferences/scripts/rtf/2017ACC_ContentListWeb_3.html#thc05 Reduced Order Modeling]&amp;quot;&lt;br /&gt;
* &amp;quot;[http://eumornetlux.weebly.com/ 2nd Exploratory Workshop on Applications of Model Order Reduction Methods in Industrial Research and Development]&amp;quot; March 10th, 2017; Luxembourg (Luxembourg)&lt;br /&gt;
* &amp;quot;[http://www.eu-mor.net/model-reduction-course-hydra/ Model Reduction Course HYDRA]&amp;quot; March 6th - 9th, 2017; Eindhoven (Netherlands)&lt;br /&gt;
* Minisymposia at [http://www.siam.org/meetings/cse17/ SIAM CSE&#039;17] February 27th, 2017; Atlanta (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=60778 MS8 - Smooth, Reduced, Sparse -- Exploiting Structures for Surrogate Modeling in CSE - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=60779 MS37 - Smooth, Reduced, Sparse -- Exploiting Structures for Surrogate Modeling in CSE- Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=60819 MS66 - Smooth, Reduced, Sparse -- Exploiting Structures for Surrogate Modeling in CSE - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=60968 MS75 - Model Reduction Software: Nonlinear Problems and Data-Driven Solutions]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=61076 MS106 - Reduced Order Models for Fluids: Achievements and Open Problems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=61077 MS133 - Reduced Order Models for Fluids: Achievements and Open Problems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=61078 MS161 - Reduced Order Models for Fluids: Achievements and Open Problems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=61079 MS188 - Reduced Order Models for Fluids: Achievements and Open Problems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=60854 MS107 - Model Order Reduction: Perspectives from Junior Researchers - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=61077 MS134 - Model Order Reduction: Perspectives from Junior Researchers - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=61070 MS145 - Reduced Order Modeling Techniques in Large Scale &amp;amp; Data-Driven PDE Problems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=61071 MS172 - Reduced Order Modeling Techniques in Large Scale &amp;amp; Data-Driven PDE Problems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=60909 MS162 - Model Reduction for Optimal Control Problems: Perspectives from Junior Researchers - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=60910 MS189 - Model Reduction for Optimal Control Problems: Perspectives from Junior Researchers - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=61275 MS313 - Model and Solution Reduction Methods in Computational Mechanics: Challenges and Perspectives]&amp;quot;&lt;br /&gt;
* &amp;quot;[http://www.hda2017.unsw.edu.au 7th Workshop on High-Dimensional Approximation]&amp;quot; February 13th - 17th, 2017; Sydney (Australia)&lt;br /&gt;
* &amp;quot;[http://matperso.mines-paristech.fr/Personnel/david.ryckelynck Doctoral Workshop on Model Reduction in Nonlinear Mechanics]&amp;quot; February 13th - 17th, 2017; Paris (France)&lt;br /&gt;
* &amp;quot;[http://www.mpi-magdeburg.mpg.de/csc/events/modred2017 3rd Workshop on Model Reduction of Complex Dynamical Systems]&amp;quot; January 11th - 13th, 2017; Odense (Denmark)&lt;br /&gt;
&lt;br /&gt;
=== 2016 ===&lt;br /&gt;
&lt;br /&gt;
* &amp;quot;[http://www.komso.org/events/challenge-workshops/reduced-order-modeling-simulation-and-optimization-powerful-algorithms Reduced-Order Modeling for Simulation and Optimization: Powerful Algorithms as Key Enablers for Scientific Computing]&amp;quot; November 17th - 18th; Renningen (Germany)&lt;br /&gt;
* Workshop &amp;quot;[http://www.ihp.fr/en/CEB/T3-2016/workshop2 Recent developments in numerical methods for model reduction]&amp;quot; November 7th - 10th, 2016; Paris (France)&lt;br /&gt;
* &amp;quot;[http://www.mpi-magdeburg.mpg.de/3104866/RBSS2016 Reduced Basis Summer School 2016]&amp;quot; October 4th - 7th, 2016; Hedersleben (Germany)&lt;br /&gt;
* Workshop on &amp;quot;[http://www.eventbrite.it/e/reduced-order-modelling-and-multi-physics-coupling-for-reactor-applications-registration-24511634960 Reduced Order Modelling and Multiphysics Coupling for Rector Application]&amp;quot; September 30th, 2016; Milano (Italy)&lt;br /&gt;
* &amp;quot;[http://alop.uni-trier.de/event/alop-workshop-reduced-order-models-in-optimization/ ALOP Workshop: Reduced Order Models in Optimization] September 26th - 28th, 2016; Trier (Germany)&lt;br /&gt;
* &amp;quot;[http://www.mathos.unios.hr/index.php/443 Workshop on Model Reduction Methods and Optimization]&amp;quot; September 20th - 21st, 2016; Opatija (Croatia)&lt;br /&gt;
* &amp;quot;[http://www.mechbau.uni-stuttgart.de/EMMA/worm2016 3rd International Workshop on Order-Reduction Methods for Mechanics of Materials]&amp;quot; August 29th - 31st, 2016; Bad Herrenalb (Germany)&lt;br /&gt;
* Sessions at [http://www.siam.org/meetings/an16/ SIAM Annual Meeting 2016] 11th - 15, 2016; Boston (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23289 MS32 - Reduced Order Modeling Techniques in Uncertainty Quantification - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23290 MS46 - Reduced Order Modeling Techniques in Uncertainty Quantification - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23600 MS70 - Model Reduction and Krylov-Subspace Methods]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23394 MS71 - Model Reduction for Inverse Problems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23395 MS87 - Model Reduction for Inverse Problems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23453 MS103 - Model Reduction for Wavefield Simulations - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23454 MS118 - Model Reduction for Wavefield Simulations - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23099 MS104 - Model Reduction of Parametrized PDEs in Continuum Mechanics - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23100 MS119 - Model Reduction of Parametrized PDEs in Continuum Mechanics - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23146 MS137 - Model Reduction of Parametrized PDEs: Application to Optimization and Uncertainty Quantification]&amp;quot;&lt;br /&gt;
* Minisymposium &amp;quot;[http://ilas2016.cs.kuleuven.be/minisymposium.php?sid=41 Data-Driven Model Reduction]&amp;quot; at ILAS July 11th - 15th, 2016; Leuven (Belgium)&lt;br /&gt;
* Sessions at [http://sites.google.com/a/umn.edu/mtns-2016/ 22nd International Symposium on Mathematical Theory of Networks and Systems], July 11th - 15th, 2016; Minnesota (USA)&lt;br /&gt;
** &amp;quot;[http://controls.papercept.net/conferences/conferences/MTNS16/program/MTNS16_ContentListWeb_1.html#tua06 Model Reduction I]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://controls.papercept.net/conferences/conferences/MTNS16/program/MTNS16_ContentListWeb_1.html#tub06 Model Reduction II]&amp;quot; &lt;br /&gt;
* Session at [http://ecc16.eu European Control conference 2016], June 29th - July 1st, 2016; Aalborg (Denmark)&lt;br /&gt;
**  &amp;quot;[http://controls.papercept.net/conferences/conferences/ECC16/program/ECC16_ContentListWeb_4.html#fra6 Model Reduction]&amp;quot; &lt;br /&gt;
* Seminar &amp;quot;[http://www.aices.rwth-aachen.de/news-events/eu-regional-school/eu-regional-school-2016/courses/heinkenschloss-seminar Model Reduction in PDE Constrained Optimization]&amp;quot; at EU Regional School, June 14th - 15th, 2016; Aachen (Germany)&lt;br /&gt;
* Minisymposium &amp;quot;Reduced Basis, POD and PGD Model Order Reduction Techniques&amp;quot; at [http://www.eccomas2016.org ECCOMAS Congress 2016] June 5th - 10th, 2016; Crete Island (Greece)&lt;br /&gt;
* Workshop on &amp;quot;[http://www.eu-mor.net/workshop-model-order-reduction-control-inverse-problems-morcip-2016/ Model Order Reduction for Control and Inverse Problems (MORCIP)]&amp;quot; May 19th - 20th, 2016; Lausanne (Switzerland)&lt;br /&gt;
* Spring School &amp;quot;[http://www.ercoftac.org/events/ercoftac_montestigliano_spring_school_2016/ Reduced-order models for non-linear dynamics in fluid flows]&amp;quot; May 17th - 23rd, 2016; Siena (Italy)&lt;br /&gt;
* Sessions at [http://www.siam.org/meetings/uq16/ SIAM Conference on Uncertainty Quantification] April 5th - 8th, 2016; Lausanne (Switzerland)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=21926 MS13 - Reduced Order Modelling for UQ PDEs Problems: Optimization, Control, Data Assimilation - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=21927 MS28 - Reduced Order Modelling for UQ PDEs Problems: Optimization, Control, Data Assimilation - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=22194 MS89 - Reduced-order Modeling in Uncertainty Quantification - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=22195 MS104 - Reduced-order Modeling in Uncertainty Quantification - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=22196 MS119 - Reduced-order Modeling in Uncertainty Quantification - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=22362 MS149 - Model Reduction in Stochastic Dynamical Systems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=22363 MS164 - Model Reduction in Stochastic Dynamical Systems - Part II of II]&amp;quot;&lt;br /&gt;
* Workshop &amp;quot;[http://www.ians.uni-stuttgart.de/agh/misc/events/morml2016/index.html Data-Driven Model Order Reduction and Machine Learning (MORML 2016)]&amp;quot; March 30th - April 1st, 2016; University of Stuttgart (Germany)&lt;br /&gt;
* Symposium &amp;quot;[http://www.humboldt-foundation.de/web/gafos-2016-sessions.html Model Reduction for Complex Systems]&amp;quot; at [http://www.humboldt-foundation.de/web/gafos-2016.html 20th German-American Symposium] March 10th - 13th, 2016; Potsdam (Germany)&lt;br /&gt;
* &amp;quot;Doctoral Workshop on Model Reduction in nonlinear dynamics of fluids and structures&amp;quot; January 25th - 29th, 2016; Paris (France)&lt;br /&gt;
&lt;br /&gt;
=== 2015 ===&lt;br /&gt;
&lt;br /&gt;
* West Coast ROM Workshop, November 19th, 2015; Livermore (USA)&lt;br /&gt;
* [http://sites.google.com/site/mor4mems2015/ MOR 4 MEMS] November 17th - 18th, 2015; Karlsruhe (Germany). [http://www2.mpi-magdeburg.mpg.de/mpcsc/events/MOR4MEMS2015/ Here] you find the presentation slides.&lt;br /&gt;
* [http://rom2015.sciencesconf.org Reduced Basis, POD and PGD Model Reduction Techniques] November 4th - 6th, 2015; Cachan (France)&lt;br /&gt;
* [http://eumornetlux.weebly.com/ Exploratory Workshop on Applications of Model Order Reduction Methods in Industrial Research and Development] November 6th, 2015; Luxembourg (Luxembourg)&lt;br /&gt;
* [http://indico.sissa.it/event/4/ MoRePaS III] October 13th - 16th, 2015; Trieste (Italy)&lt;br /&gt;
* [http://www.mathos.unios.hr/index.php/351 3rd International School on Model Reduction for Dynamical Control Systems] October 5th - 10th, 2015; Dubrovnik (Croatia)&lt;br /&gt;
* Minisymposium &amp;quot;[http://enumath2015.iam.metu.edu.tr/minisymposia20.html Local and adaptive model reduction for partial differential equations]&amp;quot; at [http://enumath2015.iam.metu.edu.tr ENuMath] September 14th - 18th, 2015; Ankara (Turkey)&lt;br /&gt;
* Minisymposium &amp;quot;[http://scicade2015.math.uni-potsdam.de/scicade2015/minisymposiadetails.html#MS34 Parametric Model Order Reduction: Challenges and Solutions]&amp;quot; at [http://scicade2015.math.uni-potsdam.de SciCADE] September 14th - 18th, 2015; Potsdam (Germany)&lt;br /&gt;
* [http://www.math.uni-konstanz.de/numerik/pod/rbss_2015/ Reduced Basis Summer School 2015] September 14th - 18th, 2015; Konstanz (Germany)&lt;br /&gt;
* [http://www.cs.cas.cz/more2015/index.php Workshop on MOdel REduction] September 6th - 10th, 2015; Pilsen (Czech Republic)&lt;br /&gt;
* Session at [http://www.iciam2015.cn 8th International Congresson Industrial and Applied Mathematics] August 10th - 14th, 2015; Beijing (China)&lt;br /&gt;
** &amp;quot;[http://www.iciam2015.cn/ICIAM%202015-program.pdf#MS-Mo-D-32.88 MS-Mo-D-32 - Reduced-order modeling in uncertainty quantification and computational fluiddynamics - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.iciam2015.cn/ICIAM%202015-program.pdf#MS-Mo-E-32.aD MS-Mo-E-32 - Reduced-order modeling in uncertainty quantification and computational fluiddynamics - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.iciam2015.cn/ICIAM%202015-program.pdf#MS-We-E-03.cC MS-We-E-03 - Reduced-order modeling in uncertainty quantification and computational fluiddynamics - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.iciam2015.cn/ICIAM%202015-program.pdf#MS-We-E-55.XZ MS-We-E-55 - New advances in model order reduction:  methods, algorithms, and applications - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.iciam2015.cn/ICIAM%202015-program.pdf#MS-Th-BC-55.A6 MS-Th-BC-55 - New advances in model order reduction:  methods, algorithms, and applications - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.iciam2015.cn/ICIAM%202015-program.pdf#MS-Tu-E-14.1F MS-Tu-E-14 - Optimality in reduced order modeling and inversion - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.iciam2015.cn/ICIAM%202015-program.pdf#MS-We-D-14.l1 MS-We-D-14 - Optimality in reduced order modeling and inversion - Part II of II]&amp;quot;&lt;br /&gt;
* Reduced Order Methods Session at [http://www.yic.rwth-aachen.de/ YIC GACM ACCCES] July 20th - 23rd; Aachen (Germany)&lt;br /&gt;
* Session at [https://desreg.jku.at/ecc15/ European Control Conference 2015] July 15th -17th, 2015; Linz (Austria)&lt;br /&gt;
** &amp;quot;[http://controls.papercept.net/conferences/conferences/ECC15/program/ECC15_ContentListWeb_2.html#wea11 Model Reduction I]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://controls.papercept.net/conferences/conferences/ECC15/program/ECC15_ContentListWeb_2.html#wec11 Model Reduction II]&amp;quot;&lt;br /&gt;
* [http://modelreduction.net/workshops/5th-annual 5th International Workshop on Model Reduction in Reacting Flows] June 28th - July 1st; Spreewald (Germany)&lt;br /&gt;
* [http://www3.math.tu-berlin.de/numerik/MoRTransPhen/ Model Reduction for Transport Dominated Phenomena] May 19th - 20th; Berlin (Germany)&lt;br /&gt;
* International Symposium: [http://www.tum-ias.de/bigdata2015/program.html Big Data and Predictive Computational Modelling] May 18th - 21st, 2015; München (Germany) &lt;br /&gt;
* Minisymposia at [http://www.siam.org/meetings/cse15 SIAM Conference on Computational Science and Engineering] March 14th - 18th, 2015; Salt Lake City (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=20081 MS4 - Adaptive Model Order Reduction - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=20082 MS30 - Adaptive Model Order Reduction - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=20083 MS55 - Adaptive Model Order Reduction - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=20296 MS91 - Parametric Model Reduction and Inverse Problems - Part I of IV]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=20297 MS116 - Parametric Model Reduction and Inverse Problems - Part II of IV]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=20300 MS143 - Parametric Model Reduction and Inverse Problems - Part III of IV]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=20301 MS169 - Parametric Model Reduction and Inverse Problems - Part IV of IV]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=19988 MS148 - Reduced-order Models for PDE-constrained Optimization Problems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=19989 MS174 - Reduced-order Models for PDE-constrained Optimization Problems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=19907 MS187 - Recent Advances in Model Reduction - Part I of V]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=19908 MS211 - Recent Advances in Model Reduction - Part II of V]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=19960 MS236 - Recent Advances in Model Reduction - Part III of V]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=19961 MS260 - Recent Advances in Model Reduction - Part IV of V]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=19962 MS285 - Recent Advances in Model Reduction - Part V of V]&amp;quot;&lt;br /&gt;
* Session at [http://www.mathmod.at Vienna Conference on Mathematical Modelling (MathMod)] February 18th - 20th, 2015; Vienna (Austria)&lt;br /&gt;
** &amp;quot;Model Reduction&amp;quot;&lt;br /&gt;
* [http://congress.cimne.com/mor/frontal/objectives.asp Short Course on Model Order Reduction] January 26th - 29th, 2015; Barcelona (Spain)&lt;br /&gt;
&lt;br /&gt;
=== 2014 ===&lt;br /&gt;
* [http://www.mfo.de/occasion/1448b/www_view Oberwolfach Seminar on Projection Based Model Reduction] November 23rd - 29th, 2014; Oberwolfach (Germany)&lt;br /&gt;
* [http://eu-mor.net EU-MORNET] Kick-Off Meeting September 18th - 19th; Eindhoven (Netherlands)&lt;br /&gt;
* [http://www2.le.ac.uk/departments/mathematics/extranet/conferences/model-reduction-across-disciplines Model reduction across disciplines] August 19th - 22nd, 2014; Leicester (United Kingdom) &lt;br /&gt;
* [http://wwwmath.uni-muenster.de/rbss2014 Reduced Basis Summer School 2014] August 18th - 22nd, 2014; Muenster (Germany)&lt;br /&gt;
* Bay Area ROM Workshop, August 7th, 2014; Livermore (USA)&lt;br /&gt;
&lt;br /&gt;
* Minisymposia at [http://www.wccm-eccm-ecfd2014.org IACM-ECCOMAS 2014] July 20th - 25th, 2014; Barcelona (Spain)&lt;br /&gt;
** &amp;quot;[http://congress.cimne.com/iacm-eccomas2014/admin/Files/FileAbstract/a239.pdf MS239: Multibody System Dynamics and Modal Reduction]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://congress.cimne.com/iacm-eccomas2014/admin/Files/FileAbstract/a15.pdf MS015: Reduced Basis, POD and PGD Model Reduction Techniques]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://congress.cimne.com/iacm-eccomas2014/admin/Files/FileAbstract/a141.pdf MS141: Reduced Order Models in Vibroacoustics]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://congress.cimne.com/iacm-eccomas2014/admin/Files/FileAbstract/a69.pdf MS069: Advanced Reduced-order Modeling Strategies for Parametrized PDEs and Applications]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* Session at [http://www.siam.org/meetings/an14/ SIAM Annual Meeting 2014], July 7th - 11th; Chicago (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=19618 CP1 - Reduced Order Models]&amp;quot;&lt;br /&gt;
* Sessions at the [http://ecc14.eu European Control Conference 2014] June 24th- 27th, 2014; Strasbourg (France)&lt;br /&gt;
** &amp;quot;[https://controls.papercept.net/conferences/conferences/ECC14/program/ECC14_ContentListWeb_3.html#tha2 Model and Controller Reduction I]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://controls.papercept.net/conferences/conferences/ECC14/program/ECC14_ContentListWeb_4.html#frc2 Model and Controller Reduction II]&amp;quot;&lt;br /&gt;
* Session at [http://acc2014.a2c2.org/ American Control Conference] June 4th - 6th, 2014; Portland (USA)&lt;br /&gt;
** &amp;quot;[https://css.paperplaza.net/conferences/conferences/2014ACC/program/2014ACC_ContentListWeb_1.html#wea04 Reduced Order Modeling]&amp;quot;&lt;br /&gt;
* Sessions at [http://siam.org/meetings/uq14/ SIAM Conference on Uncertainty Quantification] March 31st - April 3rd; Savannah (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=18137 MS10 - Model-Reduction Techniques for Quantifying and Controlling Uncertainty]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=18298 MT3 - Reduced Order Methods for Modelling and Computational Reduction in UQ Problems]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=18664 CP11 - Reduced-order Modeling]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=18192 MS67 - Surrogate and Reduced Order Modeling for Statistical Inversion and Prediction - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=18193 MS77 - Surrogate and Reduced Order Modeling for Statistical Inversion and Prediction - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=17858 MS87 - Uncertainty Quantification via Dimension Reduction: Deterministic and Stochastic Approaches]&amp;quot;&lt;br /&gt;
* [http://jahrestagung.gamm-ev.de/index.php/scientific-program/minisymposia Parametric Model Reduction of Dynamical Systems] Minisymposium at the [http://jahrestagung.gamm-ev.de/ GAMM annual meeting 2014] March 10th - 14th, 2014; Erlangen (Germany)&lt;br /&gt;
&lt;br /&gt;
===2013===&lt;br /&gt;
* [http://www2.mpi-magdeburg.mpg.de/mpcsc/events/ModRed/2013/ ModRed 2013] December 11th - 13th, 2013; Magdeburg (Germany)&lt;br /&gt;
* [http://www.mathos.unios.hr/locschool2013/ DAAD International School on Linear Optimal Control of Dynamic Systems] September 23rd - 28th; Osijek (Croatia)&lt;br /&gt;
* [http://www.ma.tum.de/IGDK1754/SummerSchool2013 Summerschool &amp;quot;Reduced Basis Methods - Fundamentals and Applications&amp;quot;] September 16th - 19th; Munich (Germany)&lt;br /&gt;
* Reduced Basis Summer School 2013 August, 2013; Aachen (Germany)&lt;br /&gt;
* [http://enumath2013.epfl.ch Enumath] Minisymposium &amp;quot;Reduced order modelling for the simulation of complex systems&amp;quot; August 26th - 30th, 2013, Lausanne (Switzerland)&lt;br /&gt;
* Sessions at the [http://www.ecc13.ethz.ch European control Conference 2013] July 17th - 19th, 2013; Zurich (Switzerland)&lt;br /&gt;
** &amp;quot;[https://controls.papercept.net/conferences/conferences/ECC13/program/ECC13_ContentListWeb_4.html#fra12 Reduced Order Systems]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://controls.papercept.net/conferences/conferences/ECC13/program/ECC13_ContentListWeb_4.html#frc12 Model Reduction]&amp;quot;&lt;br /&gt;
* [http://modelreduction.net/workshops/4th-annual 4th International Workshop on Model Reduction in Reacting Flows] June 19th - 21st, 2013, San Francisco (USA)&lt;br /&gt;
* Sessions at [http://acc2013.a2c2.org American Control Conference] June 17th - 19th, 2013; Washington D.C. (USA)&lt;br /&gt;
** &amp;quot;[https://css.paperplaza.net/conferences/conferences/2013ACC/program/2013ACC_ContentListWeb_3.html#web05 Reduced-Order Modeling]&amp;quot;&lt;br /&gt;
* [http://modredcirm2013.uni-muenster.de/ CIRM workshop Model Reduction and Approximation for Complex Systems] June 10th - 14th, 2013; Marseille (France)&lt;br /&gt;
* [http://www.tapir.caltech.edu/~rom-gr/ Reduced Order Modelling in General Relativity] June 6th - 7th, 2013; Pasadena (USA)&lt;br /&gt;
* Sessions at the [http://www.siam.org/meetings/cse13 SIAM Conference on Computational Science and Engineering] February 25th - March 1st; Boston (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15551 MS20 - Structure-preserving Model Order Reduction of Large-scale Dynamical Systems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15552 MS40 - Structure-preserving Model Order Reduction of Large-scale Dynamical Systems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15728 MS14 - Model Reduction and Surrogate Modeling Advances in Porous Media Flow Simulation and Optimization - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15729 MS34 - Model Reduction and Surrogate Modeling Advances in Porous Media Flow Simulation and Optimization - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15547 MS104 - Data-Driven Model Reduction - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15548 MS138 - Data-Driven Model Reduction - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15549 MS194 - Data-Driven Model Reduction - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15676 MS144 - Nonlinear Model Reduction of Complex Flows: Modeling, Analysis, and Computations - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15677 MS182 - Nonlinear Model Reduction of Complex Flows: Modeling, Analysis, and Computations - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15639 MS45 - Data Driven and Nonliner Model Reduction - Parts I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15640 MS68 - Data Driven and Nonliner Model Reduction - Parts II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15641 MS116 - Data Driven and Nonliner Model Reduction - Parts III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15422 MS95 - Reduced Order Modelling for Complex Systems in CFD - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15423 MS164 - Reduced Order Modelling for Complex Systems in CFD - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15424 MS244 - Reduced Order Modelling for Complex Systems in CFD - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15758 MS219 - Model Order Reduction: Recent Advances and Challenges - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15759 MS257 - Model Order Reduction: Recent Advances and Challenges - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15760 MS272 - Model Order Reduction: Recent Advances and Challenges - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15952 CP12 - Model Reduction and Data-Driven Approaches]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===2012===&lt;br /&gt;
* [http://www.morepas.org/workshop2012/index.html MoRePaS 2] October 2nd - 5th, 2012; Günzburg (Germany)&lt;br /&gt;
* [http://www.mathematik.uni-stuttgart.de/fak8/ians/lehrstuhl/agh/misc/events/rbm_workshop_2012.html Reduced Basis Summer School 2012] August 28th - 31st; Stuttgart (Germany)&lt;br /&gt;
* [http://www.math.uni-hamburg.de/moa/ Workshop on Adaptivity and Model Order Reduction in PDE Constrained Optimization] July 23rd - 27th; Hamburg (Germany)&lt;br /&gt;
* Sessions at [http://acc2012.a2c2.org/ American Control Conference] June 27th - 29th, 2012; Montreal (Canada)&lt;br /&gt;
** &amp;quot;[https://css.paperplaza.net/conferences/conferences/2012ACC/program/2012ACC_ContentListWeb_1.html#wec20 Reduced Order Modeling]&amp;quot;&lt;br /&gt;
* [https://www.cecam.org/workshop-2-681.html Reduced Basis, POD and Reduced Order Methods for model and computational reduction: towards real-time computing and visualization?] May 14 - 16th; Lausanne (Switzerland)&lt;br /&gt;
* [https://www2.mpi-magdeburg.mpg.de/mpcsc/news/program_tegernsee.pdf Workshop on Nonlinear MOR] May 6th - 9th; Tegernsee (Germany)&lt;br /&gt;
* Minisymposia at [http://siam.org/meetings/uq12/ SIAM Conference on Uncertaity Quantification] April 2nd - 6th; Raleigh (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=14305 MS58 - Model Reduction for Nonlinear Dynamical Systems]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=14520 MS80 - Reduced Order Modeling for High Dimensional Nonlinear Models]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===2011===&lt;br /&gt;
* [http://www.math.uni-konstanz.de/numerik/pod/workshop Advances in POD and RB Model-Order Reduction] November 21st, 2011; Konstanz (Germany)&lt;br /&gt;
* [http://www.uni-ulm.de/mawi/mawi-numerik/aktuelles/summer-school-rbm.html Reduced Basis Summer School 2011] October 25th - 28th; Ulm (Germany)&lt;br /&gt;
* [http://www2.mpi-magdeburg.mpg.de/mpcsc/events/trogir/ Summer School on Numerical Linear Algebra for Dynamical and High-Dimensional Problems] October 10th - 15th; Trogir (Croatia)&lt;br /&gt;
* [http://www.math.uni-bremen.de/zetem/cms/detail.php?template=gamm_parse_title&amp;amp;person=gamm11/program GAMM Workshop Applied and Numerical Linear Algebra with Special Emphasis on Model Reduction] September 21st - 22nd; Bremen (Germany)&lt;br /&gt;
* Sessions at [http://iciam.org/event/iciam-2011-%E2%80%93-vancouver 7th International Congress on Industrial and Applied Mathematics] July 18th - 22nd; Vancouver (Canada)&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11230 MS38 - Optimal Parameter Sampling in Model Reduction - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11231 MS87 - Optimal Parameter Sampling in Model Reduction - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11232 MS136 - Optimal Parameter Sampling in Model Reduction - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11296 MS148 - Structure-Preserving Model Reduction - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11297 MS199 - Structure-Preserving Model Reduction - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11298 MS256 - Structure-Preserving Model Reduction - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11452 MS340 - Dynamical Systems Approaches to Model Reduction -- Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=12051 MS388 - Dynamical Systems Approaches to Model Reduction -- Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11877 MS363 - Reduced Basis Methods and their Applications - Part I of IV]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11878 MS416 - Reduced Basis Methods and their Applications - Part II of IV]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11879 MS462 - Reduced Basis Methods and their Applications - Part III of IV]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11880 MS511 - Reduced Basis Methods and their Applications - Part IV of IV]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=13350 CP36 - Reduced Order Models]&amp;quot;&lt;br /&gt;
* [http://www.modelreduction.net/iwmrrf2011/site/ 3rd International Workshop on Model Reduction in Reacting Flows] April 27th - 29th; Corfu (Greece)&lt;br /&gt;
* Session at the [http://siam.org/meetings/cse11 SIAM Conference on Computational Science and Engineering] February 28th - March 4th; Reno (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=10982 MS18 - Model Reduction of Nonlinear and Parametrized Systems - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=10983 MS26 - Model Reduction of Nonlinear and Parametrized Systems - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=10984 MS40 - Model Reduction of Nonlinear and Parametrized Systems - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11497 MS39 - Model Order Reduction Using Graph Theory and Numerical Linear Algebra]&amp;quot;&lt;br /&gt;
* [http://www.wias-berlin.de/workshops/MOR2011/ Workshop on Model Order Reduction in Optimization and Control with PDEs] January 26th - 28th; Berlin (Germany)&lt;br /&gt;
&lt;br /&gt;
===2010===&lt;br /&gt;
* [http://www.ians.uni-stuttgart.de/MoRePaS/events/Ulm10/index.html Workshop on RB Methods] December 7th - 8th, 2010; Ulm (Germany)&lt;br /&gt;
* [http://www3.math.tu-berlin.de/modred2010/ ModRed 2010] December 2nd - 4th, 2010; Berlin (Germany)&lt;br /&gt;
* Sessions at [http://www.siam.org/meetings/an10/ SIAM Annual Meeting 2010], July 12th - 16th, 2010; Pittsburgh (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=10125 MS2 - Advances in Model Reduction for Large-Scale Problems - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=10126 MS38 - Advances in Model Reduction for Large-Scale Problems - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=10127 MS51 - Advances in Model Reduction for Large-Scale Problems - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=10202 MS33 - Reduced Order Models for Dynamical Systems]&amp;quot;&lt;br /&gt;
* Minisymposium &amp;quot;[http://www.eccomas-cfd2010.org/minisymposia.php Model Order Reduction of Complex Systems in CFD]&amp;quot; at [http://www.eccomas-cfd2010.org ECCOMAS CFD]; June 14th - 17th, 2010; Lisbon (Portugal)&lt;br /&gt;
&lt;br /&gt;
===2009===&lt;br /&gt;
* Sessions at [https://archive.siam.org/meetings/la09/index.php SIAM Conference on Applied Linear Algebra] October 26 th 29th, 2009; Monterey Bay-Seaside (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=8992 MS14 - Model Order Reduction for Dynamical Systems - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=8993 MS20 - Model Order Reduction for Dynamical Systems - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=8994 MS32 - Model Order Reduction for Dynamical Systems - Part III of III]&amp;quot;&lt;br /&gt;
* [http://www.win.tue.nl/casa/meetings/special/mor09/ Autumn School on Future Developments in Model Order Reduction] September 21st - 25th, 2009; Terschelling (Netherlands)&lt;br /&gt;
* [http://www.uni-muenster.de/CeNoS/ocs/index.php/MRP/MRP09/ MoRePaS] September 16th - 18th, 2009;  Münster (Germany)&lt;br /&gt;
* Session at [http://www.siam.org/meetings/an09/ SIAM Annual Meeting 2009] July 6th - 10th, 2009; Denver (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=8863 CP20 - Model Reduction]&amp;quot;&lt;br /&gt;
* [http://modelreduction.net/iwmrrf2009/ 2nd International Workshop on Model Reduction in Reacting Flows] March 30th - April 1st, 2009 Notre Dame (USA)&lt;br /&gt;
* [http://www.cl.eps.manchester.ac.uk/medialand/maths/archived-events/workshops/www.mims.manchester.ac.uk/events/workshops/HSMoR09/ CICADA Workshop on Hybrid Systems and Model Reduction] March 19th - 20th, 2009 Manchester (England)&lt;br /&gt;
* Sessions at the [http://siam.org/meetings/cse09 SIAM Conference on Computational Science and Engineering] March 2nd - 6th, 2009; Miami (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=8306 CP12 - Model Reduction]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=7918 MS106 - Model Reduction - Part I of V]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=7919 MS119 - Model Reduction - Part II of V]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=7920 MS127 - Model Reduction - Part III of V]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=7921 MS141 - Model Reduction - Part IV of V]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=7922 MS151 - Model Reduction - Part V of V]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===2008===&lt;br /&gt;
&lt;br /&gt;
* [https://www.math.uni-hamburg.de/spag/zms/syrene/ Model Reduction for Circuit Simulation] October 30th - 31st, 2008; Hamburg (Germany)&lt;br /&gt;
* Session at [http://acc2008.a2c2.org/ American Control Conference] June 11th - 13th, 2008; Seattle (USA)&lt;br /&gt;
** &amp;quot;[https://css.paperplaza.net/conferences/conferences/2008ACC/program/2008ACC_ContentListWeb_3.html#fra11 Model Reduction]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===2007===&lt;br /&gt;
* [http://www.win.tue.nl/casa/meetings/special/mor07/ Symposium on Recent Advances in Model Order Reduction] November 23rd, 2007; Eindhoven (Netherlands)&lt;br /&gt;
* [http://modelreduction.net/ModelReductionWorkshop/Home%20Page.html 1st International Workshop on Model Reduction in Reacting Flows] September 3rd - 5th, 2007; Rome (Italy)&lt;br /&gt;
* Sessions at [http://iciam.org/event/iciam-2007-%E2%80%93-zurich 6th International Congress for Industrial and Applied Mathematics] July 16th - 20th, 2007; Zurich (Switzerland)&lt;br /&gt;
** &amp;quot;[http://iciamold.jsiam.org/iciam2007/ICIAM07-ProgramBook.pdf#IC/MP/002/S/346 Model reduction: theory, methodology and software #1]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://iciamold.jsiam.org/iciam2007/ICIAM07-ProgramBook.pdf#IC/MP/002/S/346-2 Model reduction: theory, methodology and software #2]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://iciamold.jsiam.org/iciam2007/iciam07_programbook.pdf#IC/MP/020/S/347 Model reduction: structured and higher-order systems #1]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://iciamold.jsiam.org/iciam2007/iciam07_programbook.pdf#IC/MP/020/S/347-2 Model reduction: structured and higher-order systems #2]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://iciamold.jsiam.org/iciam2007/iciam07_programbook.pdf#IC/MP/020/P/348 Model reduction in circuit simulation #1]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://iciamold.jsiam.org/iciam2007/ICIAM07-ProgramBook.pdf#IC/MP/020/P/348-2 Model reduction in circuit simulation #2]&amp;quot;&lt;br /&gt;
* Session at [http://acc2007.a2c2.org/ American Control Conference] July 11th - 13th, 2007; New York (USA)&lt;br /&gt;
** &amp;quot;[https://css.paperplaza.net/conferences/conferences/2007ACC/program/2007ACC_ContentListWeb_1.html#web07 Reduced Order Modeling]&amp;quot;&lt;br /&gt;
* Sessions at [https://archive.siam.org/meetings/ct07/index.php SIAM Conference on Control and its Application] June 29th - July 1st, 2007; San Francisco (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=6338 MS16 - Model Reduction for Control and Dynamical Systems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=6339 MS21 - Model Reduction for Control and Dynamical Systems - Part II of II]&amp;quot;&lt;br /&gt;
* Sessions at [http://siam.org/meetings/cse07 SIAM Conference on Computational Science and Engineering] February 19th - 23rd, 2007; Costa Mesa (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=5955 MS36 - Model Order Reduction and Automated Behavioural Modeling - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=6029 MS48 - Model Order Reduction and Automated Behavioural Modeling - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=6137 CP12 - Reduced Order Modelling]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===2006===&lt;br /&gt;
* Session &amp;quot;Model Reduction&amp;quot; at [http://www.eurosime.org/b06.htm EuroSimE 2006] April 24th - 26th, 2006; Como (Italy)&lt;br /&gt;
&lt;br /&gt;
* Minisymposia at [http://www.siam.org/meetings/an06/index.php SIAM Annual Meeting 2006] July 10th - 14th, 2006; Boston (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=5357 MS13 - Model Reduction of Dynamical Systems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=5358 MS31 - Model Reduction of Dynamical Systems - Part II of II]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===2005===&lt;br /&gt;
* [http://www.lorentzcenter.nl/lc/web/2005/160/info.php3?wsid=160. Model order reduction, coupled problems and optimization] September 19th - 23rd, 2005; Leiden (Netherlands)&lt;br /&gt;
&lt;br /&gt;
* Minisymposia at [http://www.siam.org/meetings/an05/index.htm SIAM Annual Conference 2005] July 11th - 15th, 2005; New Orleans (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=4372 MS43 - Model Reduction for Large Scale Dynamical Systems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=4373 MS55 - Model Reduction for Large Scale Dynamical Systems - Part II of II]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===2004===&lt;br /&gt;
* [https://www.birs.ca/events/2004/5-day-workshops/04w5513 Model Reduction Problems and Matrix Methods] April 3rd - 8th; Banff (Canada)&lt;br /&gt;
&lt;br /&gt;
===2003===&lt;br /&gt;
* [http://web.archive.org/web/20070612131401/http://www.math.tu-berlin.de/numerik/mt/NumMat/Meetings/0310_MFO/ Dimensional Reduction of Large-Scale Systems] October 19th - 25th, 2003 Oberwolfach (Germany)&lt;br /&gt;
&lt;br /&gt;
===2001===&lt;br /&gt;
* [https://research.tue.nl/en/activities/macsi-workshop-on-model-reduction MACSI workshop on Model Reduction] October 8th - 9th, 2001; Eindhoven (Netherlands)&lt;br /&gt;
* Minisymposium at [http://user.it.uu.se/~icosahom/ International Conference On Spectral and High Order Methods] June 11th - 15th, 2001; Uppsala (Sweden)&lt;br /&gt;
** &amp;quot;Reduced-Basis Methods for Partial Differential Equations&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===2000===&lt;br /&gt;
* Session at the [https://archive.siam.org/meetings/cse00/ First SIAM Conference on Computational Science and Engineering] September 21st - 24th, 2000; Washington D.C. (USA)&lt;br /&gt;
** &amp;quot;[https://archive.siam.org/meetings/cse00/cp25.htm CP25 - Model Reduction, Validation and Data Assimilation]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===1999===&lt;br /&gt;
* Minisymposia at the [http://iciam.org/event/iciam-1999-%E2%80%93-edinburgh 4th International Council for Industrial and Applied Mathematics Congress] July 5th - 9th, 1999; Edinburgh (Scotland)&lt;br /&gt;
** &amp;quot;[http://www.macs.hw.ac.uk/archive/iciam99/PrintedProgramme/BookOfAbstracts.pdf#page=171 MSP-187 Reduced-Order Modeling of Large-Scale Systems and Applications in Industry]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.macs.hw.ac.uk/archive/iciam99/PrintedProgramme/BookOfAbstracts.pdf#page=187 MSP-205,206 Methods of Dimension Reduction]&amp;quot;&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=Plate_with_tuned_vibration_absorbers&amp;diff=3951</id>
		<title>Plate with tuned vibration absorbers</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=Plate_with_tuned_vibration_absorbers&amp;diff=3951"/>
		<updated>2025-05-27T07:25:55Z</updated>

		<summary type="html">&lt;p&gt;Saak: clarified which version the frequency response is for.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:benchmark]]&lt;br /&gt;
[[Category:linear]]&lt;br /&gt;
[[Category:second differential order]]&lt;br /&gt;
[[Category:SISO]]&lt;br /&gt;
[[Category:MIMO]]&lt;br /&gt;
&lt;br /&gt;
{{Infobox&lt;br /&gt;
|Title           = Plate with tuned vibration absorbers&lt;br /&gt;
|Benchmark ID    = &lt;br /&gt;
* plateTVA_n201900m1q1&lt;br /&gt;
* plateTVA_n201900m1q28278&lt;br /&gt;
|Category        = misc&lt;br /&gt;
|System-Class    = LTI-SOS&lt;br /&gt;
|nstates         = 201900&lt;br /&gt;
|ninputs         = 1&lt;br /&gt;
|noutputs        = &lt;br /&gt;
* 1&lt;br /&gt;
* 28278&lt;br /&gt;
|nparameters     = 0&lt;br /&gt;
|components      = B, C, E, K, M&lt;br /&gt;
|License         = Creative Commons Attribution 4.0 International&lt;br /&gt;
|Creator         = [[User:Aumann]]&lt;br /&gt;
|Editor          = &lt;br /&gt;
* [[User:Aumann]]&lt;br /&gt;
|Zenodo-link     = &lt;br /&gt;
* https://zenodo.org/record/7671686/files/plateTVA_n201900m1q1.mat&lt;br /&gt;
* https://zenodo.org/record/7671686/files/plateTVA_n201900m1q28278.mat&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;figure id=&amp;quot;fig:plot1&amp;quot;&amp;gt;&lt;br /&gt;
[[File:Plate_tva.png|480px|thumb|right|&amp;lt;caption&amp;gt;Sketch of the geometry.&amp;lt;/caption&amp;gt;]]&lt;br /&gt;
&amp;lt;/figure&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;figure id=&amp;quot;fig:tf&amp;quot;&amp;gt;&lt;br /&gt;
[[File:Plate_tva_frf.png|480px|thumb|right|&amp;lt;caption&amp;gt;Frequency response function (for the SIMO model version).&amp;lt;/caption&amp;gt;]]&lt;br /&gt;
&amp;lt;/figure&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
The &#039;&#039;&#039;Plate with tuned vibration absorbers&#039;&#039;&#039; benchmark models the vibration response of a plate excited by a single harmonic load. The plate is equipped with 108 tuned vibration absorbers (TVA), which change the vibration pattern of the host structure in a narrow frequency band around their tuning frequency&amp;lt;ref name=&amp;quot;sun95&amp;quot;/&amp;gt;. Such systems have, for example, been examined in &amp;lt;ref name=&amp;quot;jagodzinski20&amp;quot;/&amp;gt; and &amp;lt;ref name=&amp;quot;claeys16&amp;quot;/&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
This benchmark models an aluminum plate with dimensions &amp;lt;math&amp;gt;0.8 \times 0.8\,\mathrm{m}&amp;lt;/math&amp;gt; and a thickness of &amp;lt;math&amp;gt;t = 1\,\mathrm{mm}&amp;lt;/math&amp;gt;. The surrounding edges are simply supported. The plate&#039;s surface is equipped with six struts along the &amp;lt;math&amp;gt;y&amp;lt;/math&amp;gt;-direction, on which the TVAs are placed. The TVAs have a combined mass of &amp;lt;math&amp;gt;10\,\%&amp;lt;/math&amp;gt; of the plate mass and are tuned to &amp;lt;math&amp;gt;f=48\,\mathrm{Hz}&amp;lt;/math&amp;gt;. The plate is excited by a single load near one of the corners of the plate (see sketch). The root mean square of the displacement in &amp;lt;math&amp;gt;z&amp;lt;/math&amp;gt;-direction at all points of the plate surface is plotted in Figure 2. The effect of the TVAs is clearly visible in the frequency range around their tuning frequency.&lt;br /&gt;
&lt;br /&gt;
The following material parameters have been considered for aluminum:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin: auto;&amp;quot;&lt;br /&gt;
|+ style=&amp;quot;caption-side:bottom;&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|Parameter&lt;br /&gt;
|Value&lt;br /&gt;
|Unit&lt;br /&gt;
|-style=&amp;quot;background-color:#FFFFFF;&amp;quot;&lt;br /&gt;
|&amp;lt;math&amp;gt;E&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;69&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;\mathrm{GPa}&amp;lt;/math&amp;gt;&lt;br /&gt;
|-style=&amp;quot;background-color:#FFFFFF;&amp;quot;&lt;br /&gt;
|&amp;lt;math&amp;gt;\rho&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;2650&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;\mathrm{kg}\,\mathrm{m}^{-3}&amp;lt;/math&amp;gt;&lt;br /&gt;
|-style=&amp;quot;background-color:#FFFFFF;&amp;quot;&lt;br /&gt;
|&amp;lt;math&amp;gt;\nu&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;0.22&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;-&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Dimensions==&lt;br /&gt;
System structure:&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;&lt;br /&gt;
\begin{align}&lt;br /&gt;
M \ddot{x}(t) + E \dot{x}(t) + K x(t) &amp;amp;= B u(t), \\&lt;br /&gt;
y(t) &amp;amp;= C x(t)&lt;br /&gt;
\end{align}&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
System dimensions:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;M \in \mathbb{R}^{n \times n}&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;E \in \mathbb{R}^{n \times n}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;K \in \mathbb{R}^{n \times n}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;B \in \mathbb{R}^{n \times 1}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;C \in \mathbb{R}^{q \times n}&amp;lt;/math&amp;gt;,&lt;br /&gt;
with &amp;lt;math&amp;gt;n=201\,900&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;q=28\,278&amp;lt;/math&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
Proportional damping, i.e. &amp;lt;math&amp;gt;E=\alpha M + \beta K&amp;lt;/math&amp;gt;, with &amp;lt;math&amp;gt;\alpha=1\cdot 10^{-2}, \beta=1\cdot 10^{-4}&amp;lt;/math&amp;gt; is considered.&lt;br /&gt;
The matrices &amp;lt;math&amp;gt;M, E, K&amp;lt;/math&amp;gt; are positive (semi-) definite.&lt;br /&gt;
&lt;br /&gt;
==Data==&lt;br /&gt;
The data is available at [https://doi.org/10.5281/zenodo.7507011 Zenodo].&lt;br /&gt;
&lt;br /&gt;
==Remarks==&lt;br /&gt;
* The dataset also contains a version with a single output (SISO). Here, the displacement of the plate at the location of the load is evaluated.&lt;br /&gt;
* The frequency response in the range &amp;lt;math&amp;gt;1\,\mathrm{Hz}&amp;lt;/math&amp;gt; to &amp;lt;math&amp;gt;250\,\mathrm{Hz}&amp;lt;/math&amp;gt; is included in the dataset.&lt;br /&gt;
* The finite element discretization has been performed with [https://github.com/KratosMultiphysics/Kratos Kratos Multiphysics].&lt;br /&gt;
* A comparison of different interpolation-based MOR methods using this benchmark example is available in &amp;lt;ref name=&amp;quot;aumann23&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Citation==&lt;br /&gt;
To cite this benchmark, use the following references:&lt;br /&gt;
&lt;br /&gt;
* For the benchmark itself and its data:&lt;br /&gt;
  @Misc{dataAum23,&lt;br /&gt;
    author =       {Aumann, Q.},&lt;br /&gt;
    title =        {Matrices for a plate with tuned vibration absorbers},&lt;br /&gt;
    howpublished = {hosted at {MORwiki} -- Model Order Reduction Wiki},&lt;br /&gt;
    year =         2023,&lt;br /&gt;
    doi =          {10.5281/zenodo.7507011}&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
* For the background on the benchmark:&lt;br /&gt;
&lt;br /&gt;
  @Article{AumW23,&lt;br /&gt;
    author =       {Aumann, Q. and Werner, S.~W.~R.},&lt;br /&gt;
    title =        {Structured model order reduction for vibro-acoustic problems using interpolation and balancing methods},&lt;br /&gt;
    journal =      {Journal of Sound and Vibration},&lt;br /&gt;
    volume =       543,&lt;br /&gt;
    year =         2023,&lt;br /&gt;
    pages =        {117363},&lt;br /&gt;
    doi =          {10.1016/j.jsv.2022.117363},&lt;br /&gt;
    publisher =    {Elsevier {BV}}&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;sun95&amp;quot;&amp;gt; J. Q. Sun, M. R. Jolly, M. A. Norris. &amp;quot;&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[http://dx.doi.org/10.1115/1.2836462 Passive, Adaptive and Active Tuned Vibration Absorbers—A Survey]&amp;lt;/span&amp;gt;&amp;quot;, Journal of Mechanical Design, 117.B: 234–242, 1995.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;jagodzinski20&amp;quot;&amp;gt; D. J. Jagodzinski, M. Miksch, Q. Aumann, G. Müller. &amp;quot;&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[http://dx.doi.org/10.1080/15397734.2020.1787842 Modeling and optimizing an acoustic metamaterial to minimize low-frequency structure-borne sound]&amp;lt;/span&amp;gt;&amp;quot;, Mechanics Based Design of Structures and Machines, 50(8): 2877–2891, 2020.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;claeys16&amp;quot;&amp;gt; C. Claeys, E. Deckers, B. Pluymers, W. Desmet. &amp;quot;&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[http://dx.doi.org/10.1016/j.ymssp.2015.08.029 A lightweight vibro-acoustic metamaterial demonstrator: Numerical and experimental investigation]&amp;lt;/span&amp;gt;&amp;quot;, Mechanical Systems and Signal Processing, 70-71: 853–880, 2016.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;aumann23&amp;quot;&amp;gt;Q. Aumann, S. W. R. Werner. &amp;quot;&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1016/j.jsv.2022.117363 Structured model order reduction for vibro-acoustic problems using interpolation and balancing methods]&amp;lt;/span&amp;gt;&amp;quot;, Journal of Sound and Vibration, 543: 117363, 2023.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=MOR_Wiki:Current_events&amp;diff=3950</id>
		<title>MOR Wiki:Current events</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=MOR_Wiki:Current_events&amp;diff=3950"/>
		<updated>2025-05-26T12:24:46Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Miscellaneous]]&lt;br /&gt;
&lt;br /&gt;
== MOR Wiki Users Meetings ==&lt;br /&gt;
&lt;br /&gt;
* The first general assembly of MOR Wiki users took place on December 10th - 2013, at the [http://mpim.iwww.mpg.de/research/groups/csc MPI in Magdeburg] (Germany).&lt;br /&gt;
&lt;br /&gt;
* The second MOR Wiki meeting took place on April 23rd - 2015, at the [http://mpim.iwww.mpg.de/research/groups/csc MPI in Magdeburg] (Germany).&lt;br /&gt;
&lt;br /&gt;
* The third MOR Wiki meeting took place on January 11th - 2017, during the [http://www.mpi-magdeburg.mpg.de/csc/events/modred2017 ModRed in Odense] (Denmark).&lt;br /&gt;
&lt;br /&gt;
== Upcoming Workhops and Conferences ==&lt;br /&gt;
* [https://mortech2025.i3a.es/ MORTech 2025 -- 7th International Workshop on Model Order Reduction Techniques], November 26 - 28  2025, Zaragoza (Spain)&lt;br /&gt;
&lt;br /&gt;
== Past Events ==&lt;br /&gt;
=== 2025 ===&lt;br /&gt;
* [https://mathmod.at Minisymposium on Recent Advances in Model Order Reduction and Data-driven Modelling at MathMod 2025], February 19 - 21 2025, Vienna (Austria)&lt;br /&gt;
&lt;br /&gt;
=== 2024 ===&lt;br /&gt;
* [https://more2024.sciencesconf.org/ MORe2024 - Model Reduction and Surrogate Modeling], September 9 - 13, 2024; La Jolla, California (United States)&lt;br /&gt;
&lt;br /&gt;
* [https://www.ymmor2024.uni-stuttgart.de/ Young Mathematicians in Model Order Reduction Conference 2024], March 4 - 8, 2024; Stuttgart (Germany)&lt;br /&gt;
&lt;br /&gt;
=== 2023 ===&lt;br /&gt;
&lt;br /&gt;
* [https://mortech2023.sciencesconf.org/ MORTech 2023 – 6th International Workshop on Model Reduction Techniques], November 22 - 24, 2023; Paris-Saclay (France)&lt;br /&gt;
&lt;br /&gt;
* [https://ims.nus.edu.sg/events/international-workshop-on-reduced-order-methods/ International Workshop on Reduced Order Methods], May 22nd - 26th, 2023; Singapore (Singapore)&lt;br /&gt;
&lt;br /&gt;
* [https://personal.math.vt.edu/borggajt/nlromc/index.html Nonlinear Model Reduction for Control], May 22nd - 26th, 2023; Blacksburg (USA).&lt;br /&gt;
&lt;br /&gt;
=== 2022 ===&lt;br /&gt;
&lt;br /&gt;
* [https://alop.uni-trier.de/event/autumn-school-on-model-reduction-and-model-predictive-control-with-differential-equations/ Model Reduction and Model Predictive Control with Differential Equations], October 4th - 7th, 2022; Trier (Germany)&lt;br /&gt;
&lt;br /&gt;
* [https://more.sciencesconf.org/ Model Reduction and Surrogate Modeling (MORE)], September 19th - 23rd, 2022; Berlin (Germany)&lt;br /&gt;
&lt;br /&gt;
* [https://www.mathmod.at/ 10th Vienna International Conference on Mathematical Modelling], July 27th – 29th, 2022;Vienna (Austria)&lt;br /&gt;
** [https://ifac.papercept.net/conferences/conferences/MAMO21/program/MAMO21_ContentListWeb_2.html#wed3 Model Reduction]&lt;br /&gt;
** [https://ifac.papercept.net/conferences/conferences/MAMO21/program/MAMO21_ContentListWeb_2.html#wed1 Recent Advances in Model Reduction and Surrogate Modeling I of IV]&lt;br /&gt;
** [https://ifac.papercept.net/conferences/conferences/MAMO21/program/MAMO21_ContentListWeb_2.html#wee1 Recent Advances in Model Reduction and Surrogate Modeling II of IV]&lt;br /&gt;
** [https://ifac.papercept.net/conferences/conferences/MAMO21/program/MAMO21_ContentListWeb_2.html#thb1 Recent Advances in Model Reduction and Surrogate Modeling III of IV]&lt;br /&gt;
** [https://ifac.papercept.net/conferences/conferences/MAMO21/program/MAMO21_ContentListWeb_2.html#thd1 Recent Advances in Model Reduction and Surrogate Modeling IV of IV]&lt;br /&gt;
&lt;br /&gt;
* [https://www.uni-muenster.de/MathematicsMuenster/events/2022/YMCN-model-order-reduction.shtml#Schedule Young Mathematicians in Model Order Reduction (YMMOR)], July 18th - 22th, 2022; Münster (Germany)&lt;br /&gt;
&lt;br /&gt;
* [https://dcn.nat.fau.eu/events/mini-workshop-model-reduction-and-control/ Mini-Workshop &amp;quot;Model Reduction and Control&amp;quot;] May 24th, 2022; (ONLINE)&lt;br /&gt;
&lt;br /&gt;
* [https://www.siam.org/conferences/cm/conference/uq22 SIAM Conference on Uncertainty Quantification], April 12th -15th, 2022; Atlanta (USA)&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=73287 MS4: Nonlinear Model Reduction Methods for Random or Parametric Time Dependent Problems - Part I of III]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=73288 MS32: Nonlinear Model Reduction Methods for Random or Parametric Time Dependent Problems - Part II of III]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=73289 MS76: Nonlinear Model Reduction Methods for Random or Parametric Time Dependent Problems - Part III of III]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=73521 MS154: Reduced Order Modelling for Forward and Inverse UQ - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=73537 MS168: Reduced Order Modelling for Forward and Inverse UQ - Part II of II]&lt;br /&gt;
&lt;br /&gt;
=== 2021 ===&lt;br /&gt;
&lt;br /&gt;
* [https://indico.sissa.it/event/43/ RAMSES: Reduced order models; Approximation theory; Machine learning; Surrogates, Emulators and Simulators], December 14th - 17th, 2021; Trieste (Italy)&lt;br /&gt;
&lt;br /&gt;
* [https://www.romsoc.eu/wim-2021/ Workshop in Industrial Mathematics (WIM2021) with the Reduced-Order Modeling, Simulation and Optimization of Coupled Systems], October 20th - 22nd; Catania (Italy)&lt;br /&gt;
&lt;br /&gt;
* [https://www.icms.org.uk/events/event/?id=1178 New Developments in Reduced Order Modelling], October 15th; &#039;&#039;&#039;ONLINE&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* [https://mmldt.eng.ucsd.edu/home MMLDT-CSET - Mechanistic Machine Learning and Digital Twins for Computational Science, Engineering &amp;amp; Technology 2021],  September 26th - 29th, 2021; San Diego (USA)&lt;br /&gt;
** [https://docs.google.com/spreadsheets/d/1GosdHfvpskcnnR56u29ZRNfBWC4kg0hR/edit#gid=83060610&amp;amp;range=A1 MS 4-7: Physics-Informed Data-based Model Reduction]&lt;br /&gt;
** [https://docs.google.com/spreadsheets/d/1GosdHfvpskcnnR56u29ZRNfBWC4kg0hR/edit#gid=1626075110&amp;amp;range=A1 MS 4-8: Model Reduction and Machine Learning for Fluids and Fluid-Structure Interactions]&lt;br /&gt;
** [https://docs.google.com/spreadsheets/d/1GosdHfvpskcnnR56u29ZRNfBWC4kg0hR/edit#gid=618092903&amp;amp;range=A1 MS 4-9: Advances in Reduced Order Modeling of Solids and Fluids and Porous Media]&lt;br /&gt;
** [https://docs.google.com/spreadsheets/d/1GosdHfvpskcnnR56u29ZRNfBWC4kg0hR/edit#gid=378364206&amp;amp;range=A1 MS 4-10: Model Reduction of Dynamical Systems with Deep Learning]&lt;br /&gt;
** [https://docs.google.com/spreadsheets/d/1GosdHfvpskcnnR56u29ZRNfBWC4kg0hR/edit#gid=667740&amp;amp;range=A1 MS 5-1: Advances in Machine Learning and Model Reduction for Inversion in Geophysical and Geological Applications]&lt;br /&gt;
&lt;br /&gt;
* [http://smai.emath.fr/cemracs/cemracs21/ CEMRACS 2021 - Data Assimilation and Reduced Modeling for High Dimensional Problems], July 19th - August 27th, 2021; Luminy (France)&lt;br /&gt;
&lt;br /&gt;
* [http://16.usnccm.org US National Congress on Computational Mechanics (USNCCM)], July 25th - 29th, 2021; Chicago (USA)&lt;br /&gt;
** &amp;quot;[http://16.usnccm.org/MS_311 MS311: Model Order Reduction for Physical Simulations]&amp;quot; &lt;br /&gt;
&lt;br /&gt;
* [https://www.siam.org/conferences/cm/conference/an21 SIAM Annual Meeting], July 19th - 23rd, 2021; &#039;&#039;&#039;ONLINE&#039;&#039;&#039;&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=71670 MS62: Advances in Uncertainty Quantification with Model Order Reduction Methods I]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=71671 MS88: Advances in Uncertainty Quantification with Model Order Reduction Methods II]&lt;br /&gt;
&lt;br /&gt;
* [https://www.siam.org/conferences/cm/conference/ct21 SIAM Conference on Control and Its Applications], July 19th - 21st, 2021; &#039;&#039;&#039;ONLINE&#039;&#039;&#039;&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=71167 MS1: Model Reduction for Control of High-Dimensional Nonlinear Systems I]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=71168 MS9: Model Reduction for Control of High-Dimensional Nonlinear Systems II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=71169 MS17: Model Reduction for Control of High-Dimensional Nonlinear Systems III]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=72048 MS26: Data-Driven Methods in Model Reduction and Control I]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=72049 MS34: Data-Driven Methods in Model Reduction and Control II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=72050 MS42: Data-Driven Methods in Model Reduction and Control III]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=71716 MS25: Model Reduction of Complex Dynamical Systems and its Applications I]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=71717 MS33: Model Reduction of Complex Dynamical Systems and its Applications II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=71718 MS41: Model Reduction of Complex Dynamical Systems and its Applications III]&lt;br /&gt;
&lt;br /&gt;
* [https://www.siam.org/conferences/cm/conference/cse21 SIAM Conference on Computational Science and Engineering (CSE21)], March 1st - 5th, 2021; Fort Worth (USA)&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=70067 MS8:   Data Driven Reduced Order Models: Structure, Networks and Imaging - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69881 MS26:  Reduced Order Methods for Parametric CFD Problems - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69861 MS27:  Reduced Order Model Stabilizations and Closures - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69824 MS31:  Structure-Preserving Model Order Reduction for Large-Scale Systems - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69862 MS60:  Reduced Order Model Stabilizations and Closures - Part II of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69943 MS74:  Dimensionality Reduction and Reduced-Order Models for the Boltzmann Transport Equation]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=70068 MS98:  Data Driven Reduced Order Models: Structure, Networks and Imaging - Part II of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69882 MS111: Reduced Order Methods for Parametric CFD Problems - Part II of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69928 MS113: Reduced-Order Modeling and Analysis of Turbulence - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69825 MS119: Structure-Preserving Model Order Reduction for Large-Scale Systems - Part II of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69929 MS147: Reduced-Order Modeling and Analysis of Turbulence - Part II of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=70145 MS172: Model Order Reduction for Large-Scale Problems - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=70146 MS234: Model Order Reduction for Large-Scale Problems - Part II of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=70123 MS309: Data-Driven Modeling and Model Reduction: Honoring 70th Birthday of Thanos Antoulas - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69938 MS319: Model Order Reduction for Complex Systems - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69816 MS324: Recent Advances in Model Order Reduction for Advection-Dominated Simulations - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69764 MS326: Recent Developments in Nonlinear Model Reduction Methods - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=70124 MS340: Data-Driven Modeling and Model Reduction: Honoring 70th Birthday of Thanos Antoulas - Part II of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69939 MS350: Model Order Reduction for Complex Systems - Part II of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69819 MS355: Recent Advances in Model Order Reduction for Advection-Dominated Simulations - Part II of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69765 MS357: Recent Developments in Nonlinear Model Reduction Methods - Part II of II]&lt;br /&gt;
&lt;br /&gt;
* [https://www.wccm-eccomas2020.org 14th WWCM and ECCOMAS Congress 2020], January 11th - 15th, 2021; Paris (France)&lt;br /&gt;
** &amp;quot;[https://www.wccm-eccomas2020.org/admin/Files/FileAbstract/a93.pdf  MS93: Reduced Order and Surrogate Modeling for Uncertainty Analysis in Structural Mechanics]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.wccm-eccomas2020.org/admin/Files/FileAbstract/a139.pdf MS139: Advances in Intrusive and Non-Intrusive Order Reduction Techniques for Flow Analysis, Control and Optimization]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.wccm-eccomas2020.org/admin/Files/FileAbstract/a152.pdf MS152: Model Order Reduction Methods for Parametrized Mechanical Systems]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.wccm-eccomas2020.org/admin/Files/FileAbstract/a170.pdf MS170: Numerical Model Reduction and Data-Driven Surrogates for Multi-Physics Applications]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.wccm-eccomas2020.org/admin/Files/FileAbstract/a179.pdf MS179: Numerical Techniques for the Simulations and Model Reduction of Complex Physical Systems]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.wccm-eccomas2020.org/admin/Files/FileAbstract/a204.pdf MS204: Analysing Parameterised Reduced Order Models]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.wccm-eccomas2020.org/admin/Files/FileAbstract/a371.pdf MS371: Model Order Reduction for Vibroacoustic Problems]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.wccm-eccomas2020.org/admin/Files/FileAbstract/a415.pdf MS415: Model Order Reduction for Nonlinear (Time, Space, Parameter) Multiscale Problems and Applications]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.wccm-eccomas2020.org/admin/Files/FileAbstract/a458.pdf MS458: Coupled Multiphysics Problems and Reduced Order Methods Applied to Compute Digital Twin Models in Industrial Applications]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== 2020 ===&lt;br /&gt;
&lt;br /&gt;
* [https://www.mfo.de/occasion/2045a/www_view Banach Center – Oberwolfach Graduate Seminar: Model Reduction and Approximation: Projection-, Tensor- and Data-based Methods], November 1st - 7th, 2020; Bedlewo (Poland) (&#039;&#039;&#039;CANCELLED&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
* [https://www.tu-chemnitz.de/mathematik/dmv2020/index.php DMV Annual Meeting], September 14th - 18th, 2020; (&#039;&#039;&#039;VIRTUAL&#039;&#039;&#039;)&lt;br /&gt;
** &amp;quot;[https://www.tu-chemnitz.de/mathematik/dmv2020/minisymp.php Model Order Reduction]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* [https://morss2020.epfl.ch Model Order Reduction Summer School]; September 7th - 10th, 2020; (&#039;&#039;&#039;VIRTUAL&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
* [https://www.mpi-magdeburg.mpg.de/csc/events/samm20 SAMM20 - Learning Models from Data: Model Reduction, System Identification and Machine Learning], July  27th - 31st, 2020; (&#039;&#039;&#039;VIRTUAL&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
* [https://www.siam.org/conferences/cm/conference/an20 2nd Joint SIAM/CAIMS Annual Meeting], July 6th - 17th, 2020; (&#039;&#039;&#039;VIRTUAL&#039;&#039;&#039;)&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=68897 MS4: Projection-Based Model Order Reduction for Partial Differential Equations - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=68898 MS7: Projection-Based Model Order Reduction for Partial Differential Equations - Part II of II]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* [https://icerm.brown.edu/programs/sp-s20/ Model and dimension reduction in uncertain and dynamic systems], January 27th - May 1st, 2020; Providence (USA)&lt;br /&gt;
** [https://icerm.brown.edu/programs/sp-s20/w1/ Mathematics of Reduced Order Models], February 17th - 21st&lt;br /&gt;
** [https://icerm.brown.edu/programs/sp-s20/w2/ Algorithms for Dimension and Complexity Reduction], March 23rd - 27th (&#039;&#039;&#039;VIRTUAL&#039;&#039;&#039;)&lt;br /&gt;
** [https://icerm.brown.edu/programs/sp-s20/w3/ Computational Statistics and Data-Driven Models], April 20th - 24th (&#039;&#039;&#039;VIRTUAL&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
* [https://siam-uq20.ma.tum.de SIAM Conference on Uncertainty Quantification (UQ20)], March 24th - 27th, 2020; Munich (Germany) (&#039;&#039;&#039;CANCELLED&#039;&#039;&#039;)&lt;br /&gt;
** &amp;quot;[https://www.events.tum.de/frontend/index.php?page_id=3712&amp;amp;v=List&amp;amp;do=15&amp;amp;day=490&amp;amp;ses=1625# CT20: ROM and Surrogate Models]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.events.tum.de/frontend/index.php?page_id=3712&amp;amp;v=List&amp;amp;do=15&amp;amp;day=489&amp;amp;ses=1723# MS311: Dynamical low rank and reduced basis methods for random or parametric time dependent problems (Part I of II) ]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.events.tum.de/frontend/index.php?page_id=3712&amp;amp;v=List&amp;amp;do=15&amp;amp;day=489&amp;amp;ses=1724# MS312: Dynamical low rank and reduced basis methods for random or parametric time dependent problems (Part II of II)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.events.tum.de/frontend/index.php?page_id=3712&amp;amp;v=List&amp;amp;do=15&amp;amp;day=490&amp;amp;ses=1717# MS331: Recent Advances in Reduced-Order Models for Many Query and Time-Critical Problems]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.events.tum.de/frontend/index.php?page_id=3712&amp;amp;v=List&amp;amp;do=15&amp;amp;day=491&amp;amp;ses=1774# MS351: Reduced order methods for uncertainty quantification in CFD parametric problems]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== 2019 ===&lt;br /&gt;
&lt;br /&gt;
* [https://mortech2019.sciencesconf.org/ MORTech - 5th International Workshop on Reduced Basis, POD or PGD-Based Model Reduction Technique], November 20th - 22nd, 2019; Paris (France)&lt;br /&gt;
&lt;br /&gt;
* [https://www.tudelft.nl/en/events/2019/dcse/dcse-fall-school-november-4-8-2019-on-reduced-order-modeling-and-uncertainty-quantification/ DCSE Fall School November 4-8, 2019, on &amp;quot;Reduced-Order Modeling and Uncertainty Quantification&amp;quot;] November 4th - 8th, 2019; Delft (Netherlands)&lt;br /&gt;
&lt;br /&gt;
* [https://school.pymor.org/ pyMOR School 2019], October 7th - 11th, 2019; Magdeburg (Germany)&lt;br /&gt;
&lt;br /&gt;
* [https://www.enumath2019.eu ENUMATH 2019], September 30th - October 4th, 2019; Egmond aan Zee (Netherlands)&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/30 MS2: Recent Advances in Model Order Reduction]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/76 MS14: Reduced Order Models for parametric PDEs: special focus on time-dependent phenomena and time-harmonic wave problems (Part 1)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/87 MS14: Reduced Order Models for parametric PDEs: special focus on time-dependent phenomena and time-harmonic wave problems (Part 2)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/113 MS18: Model order reduction in optimisation, control, and data assimilation (Part 1)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/124 MS18: Model order reduction in optimisation, control, and data assimilation (Part 2)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/6 MS26: New challenges and opportunities for model order reduction (Part 1)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/17 MS26: New challenges and opportunities for model order reduction (Part 2)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/7 MS29: Low-rank modelling in uncertainty quantification (Part 1)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/18 MS29: Low-rank modelling in uncertainty quantification (Part 2)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/8 MS31: Numerical methods for identification and model reduction of nonlinear systems (Part 1)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/19 MS31: Numerical methods for identification and model reduction of nonlinear systems (Part 2)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/151 MS38: Modeling of reduced order submanifolds in non-linear spaces (Part 1)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/162 MS38: Modeling of reduced order submanifolds in non-linear spaces (Part 2)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/121 Computing and Model Order Reduction (Part 1)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/132 Computing and Model Order Reduction (Part 2)]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* [https://www.win.tue.nl/~hbansal/morss.html Model Order Reduction Summer School - MORSS], September 23rd - 27th, 2019; Eindhoven (Netherlands)&lt;br /&gt;
&lt;br /&gt;
* [https://congress.cimne.com/complas2019/frontal/default.asp International Conference on Computational Plasticity. Fundamentals and Applications.], September 3rd - 5th, 2019; Barcelona (Spain)&lt;br /&gt;
** &amp;quot;[https://congress.cimne.com/complas2019/frontal/ProgramPrint.asp?id=WeM1 Model Order Reduction with Emphasis on Non-linear and Multi-scale Problems I]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://congress.cimne.com/complas2019/frontal/ProgramPrint.asp?id=WeE1 Model Order Reduction with Emphasis on Non-linear and Multi-scale Problems II]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* [https://imsc.uni-graz.at/modred2019 4th Workshop on Model Reduction of Complex Dynamical Systems - MODRED], August 28th - 30th, 2019; Graz (Austria)&lt;br /&gt;
&lt;br /&gt;
* [http://15.usnccm.org US National Congress on Computational Mechanics (USNCCM)], July 28th - 1st August, 2019; Austin (USA)&lt;br /&gt;
** &amp;quot;[http://15.usnccm.org/208 Data Assimilation in Model Order Reduction Techniques for Computational Mechanics]&amp;quot; &lt;br /&gt;
** &amp;quot;[http://15.usnccm.org/1001 Model Order Reduction for Computational Continuum Mechanics]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* [https://iciam2019.org International Congress on Industrial and Applied Mathematics], July 15th - 19th, 2019; Valencia (Spain)&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FT-2-4%201 MS FT-2-4 1: New trends in dimensionality reduction of parametrized and stochastic PDEs - Part 1 of 2]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FT-2-4%202 MS FT-2-4 2: New trends in dimensionality reduction of parametrized and stochastic PDEs - Part 2 of 2]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20GH-3-3%202 MS GH-3-3 2: Model order reduction methods and their broad applications in engineering - Part 1 of 3]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20GH-3-3%203 MS GH-3-3 3: Model order reduction methods and their broad applications in engineering - Part 2 of 3]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20GH-3-3%204 MS GH-3-3 4: Model order reduction methods and their broad applications in engineering - Part 3 of 3]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20A1-1-1%205 MS A1-1-1 5: Advances in reduced order methods for parameter-dependent problems - Part 1 of 1]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FE-1-3%205 MS FE-1-3 5: Network based model reduction in large-scale simulations, imaging and data-science - Part 1 of 3]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FE-1-3%206 MS FE-1-3 6: Network based model reduction in large-scale simulations, imaging and data-science - Part 2 of 3]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FE-1-3%207 MS FE-1-3 7: Network based model reduction in large-scale simulations, imaging and data-science - Part 3 of 3]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20GH-3-3%205 MS GH-3-3 5: Model Reduction and Coupled Problems in Industry Applications - Part 1 of 2]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20GH-3-3%206 MS GH-3-3 6: Model Reduction and Coupled Problems in Industry Applications - Part 2 of 2]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FE-1-G%207 MS FE-1-G 7: Model-reduction, randomization, and other techniques for large-scale inversion and UQ   - Part 1 of 1]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FT-2-4%207 MS FT-2-4 7: Reduced Order Modeling for Parametric CFD Problems - Part 1 of 4]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FT-2-4%208 MS FT-2-4 8: Reduced Order Modeling for Parametric CFD Problems - Part 2 of 4]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FT-2-4%209 MS FT-2-4 9: Reduced Order Modeling for Parametric CFD Problems - Part 3 of 4]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FT-2-4%2010 MS FT-2-4 10: Reduced Order Modeling for Parametric CFD Problems - Part 4 of 4]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20GH-0-1%207 MS GH-0-1 7: Reduced-order modeling and data-driven estimation in waves and fluids - Part 1 of 2]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20GH-0-1%208 MS GH-0-1 8: Reduced-order modeling and data-driven estimation in waves and fluids - Part 2 of 2]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FE-1-G%209 MS FE-1-G 9: Recent Advancements in Model Reduction for Stochastic and Nonlinear Systems - Part 1 of 2]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FE-1-G%2010 MS FE-1-G 10: Recent Advancements in Model Reduction for Stochastic and Nonlinear Systems - Part 2 of 2]&amp;quot;&lt;br /&gt;
* [https://indico.sissa.it/event/34/ Summer School on Reduced Order Methods in Computational Fluid Dynamics], July 8th - 12th, 2019; Trieste (Italy)&lt;br /&gt;
* [https://2019.compdyn.org 7th International Conference on Computational Methods in Structural Dynamics and Earthquake Engineering - COMPDYN], June 24th - 26th, 2019; Crete (Greece)&lt;br /&gt;
** &amp;quot;MS 5: Surrogate and Reduced-Order Modeling for Stochastic Simulation of Physical Systems&amp;quot;&lt;br /&gt;
** &amp;quot;MS 6: Uncertainty Computations with Reduced Order Models and Low-Rank Representations&amp;quot;&lt;br /&gt;
** &amp;quot;MS 27: Advances in model reduction techniques in computational structural dynamics&amp;quot;&lt;br /&gt;
* [http://modelreduction.net/workshops/7th-international-workshop/ 7th International Workshop on Model Reduction in Reactive Flow (IWMRRF)], June 18th - 21st, 2019; Trondheim (Norway)&lt;br /&gt;
* [https://isc.tamu.edu/events/Spring2019/ Spring 2019 Model Reduction Workshop] April 29th, 2019; Houston (USA)&lt;br /&gt;
* [https://www.dropbox.com/s/yqqnyxufa36tfdf/EECI-IGSC-2019-Model%20Reduction.pdf?dl=0 Model Reduction for Linear and Nonlinear Systems], April 29th - May 3rd, 2019; London (England)&lt;br /&gt;
* [http://www.math.sissa.it/course/phd-course/reduced-order-methods-computational-mechanics Reduced Order Methods for Computational Mechanics], April 15th - 18th, 2019; Trieste (Italy)&lt;br /&gt;
* [https://cmsa.fas.harvard.edu/machine-learning/ Machine Learning for Multiscale Model Reduction Workshop], March 27th - 29th, 2019; Cambridge (USA)&lt;br /&gt;
* [https://www.siam.org/Conferences/CM/Main/cse19 2019 SIAM Conference on Computational Science and Engineering], February 25th - March 1st, 2019; Spokane (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65932 MS10: Model Reduction, Adaptivity, and High Dimensionality in Uncertainty Quantification - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65933 MS44: Model Reduction, Adaptivity, and High Dimensionality in Uncertainty Quantification - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65806 MS14: Emerging Trends for Structure Preserving Model Order Reduction - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65807 MS49: Emerging Trends for Structure Preserving Model Order Reduction - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65793 MS25: Discovering and Exploiting Low-dimensional Structures in Computational Models - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65794 MS60: Discovering and Exploiting Low-dimensional Structures in Computational Models - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=66052 MS93: Nonlinear Reduced Order Modeling of Realistic Engineering Fluid Flows]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65894 MS112: Recent Advances in Model Reduction and Uncertainty Quantification - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65895 MS145: Recent Advances in Model Reduction and Uncertainty Quantification - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65632 MS119: Model Reduction for Problems with Strong Convection, Sharp Gradients, and Discontinuities - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65633 MS153: Model Reduction for Problems with Strong Convection, Sharp Gradients, and Discontinuities - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65903 MS131: Homogenization and Reduced Order Modelling for Wave Equations - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65904 MS165: Homogenization and Reduced Order Modelling for Wave Equations - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=66036 MS188: Reduced Order Modeling for Parametric CFD Problems- Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=66037 MS221: Reduced Order Modeling for Parametric CFD Problems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65744 MS191: New Challenges and Opportunities for Model Order Reduction - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65745 MS225: New Challenges and Opportunities for Model Order Reduction - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65757 MS243: Reduced Order Models for Fluids: Achievements and Open Problems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65758 MS276: Reduced Order Models for Fluids: Achievements and Open Problems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65898 MS267: Model Reduction and Reduced-order Modeling of Dynamical Systems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65899 MS301: Model Reduction and Reduced-order Modeling of Dynamical Systems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=66160 MS308: Data-driven and Mathematical Model Reductions for Combustion System Simulation and Design]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=66143 MS316: Rational Approximation and its Applications]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65578 MS343: Data-augmented Reduced-order Modeling: Operator Learning and Closure/error Modeling - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65579 MS376: Data-augmented Reduced-order Modeling: Operator Learning and Closure/error Modeling - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65662 MS352: Recent Developments in Model Order Reduction Methods - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65663 MS384: Recent Developments in Model Order Reduction Methods - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=66087 MS361: Structure-exploiting Techniques for Approximation, Inference and Control of Complex Systems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=66088 MS393: Structure-exploiting Techniques for Approximation, Inference and Control of Complex Systems - Part II of II]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== 2018 ===&lt;br /&gt;
&lt;br /&gt;
* [http://meetings.aps.org/Meeting/DFD18/Content/3571 71st Annual Meeting of the APS Division of Fluid Dynamics], November 18th - 20th, 2018; Atlanta (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.aps.org/Meeting/DFD18/Session/A01 Session A01: Nonlinear Dynamics: Model Reduction I]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.aps.org/Meeting/DFD18/Session/F15 Session F15: Flow Control: Coherent Structures and Reduced Order Modeling]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.aps.org/Meeting/DFD18/Session/Q01 Session Q01: Nonlinear Dynamics: Model Reduction II]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* [https://www.math.uni-hamburg.de/morss2018/ Model Order Reduction Summer School], September 24th - 28th, 2018; Hamburg (Germany)&lt;br /&gt;
&lt;br /&gt;
* [https://alop.uni-trier.de/eucco2018 5th European Conference on Computational Optimization - EUCCO 2018], September 10th - 12th; Trier (Germany)&lt;br /&gt;
** &amp;quot;Focus Session: Model order reduction and low-rank approximation for nonlinear problems&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* Minisymposium at [https://sim.mathematik.uni-halle.de/numdiff/Numdiff15/home NumDiff 15], September 3rd - 7th, 2018; Halle (Germany)&lt;br /&gt;
** &amp;quot;Model order reduction for dynamical systems&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* [http://597.euromech.org/ Colloquium 597 Reduced Order Modeling in Mechanics of Materials], August 28th - 31st, 2018; Bad Herrenalb (Germany)&lt;br /&gt;
&lt;br /&gt;
* Minisymposia at &amp;quot;[http://www.wccm2018.org/ 13th World Congress in Computational Mechanics]&amp;quot;, July 22nd - 27th, 2018; New York (USA)&lt;br /&gt;
** &amp;quot;[http://www.wccm2018.org/MS_715 MS715: Reduced Order Methods for Parametric CFD Problems]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.wccm2018.org/MS_1802 MS1802: Model Reduction, Big Data and Dynamic Data-Driven Systems]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.wccm2018.org/MS_1804 MS1804: Machine Learning and Reduced-order Models for Complex Systems]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* Minisymposia at &amp;quot;[http://ecmi.bolyai.hu/ The 20th European Conference on Mathematics for Industry]&amp;quot;, June 18th - 22nd, 2018; Budapest (Hungary)&lt;br /&gt;
** &amp;quot;MS35: Reduced Order Modelling for Industrial and Scientific Applications&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* Sessions at the [http://www.ecc18.eu/ European Control Conference 2018] June 12th - 15th, 2018; Limassol (Cyprus)&lt;br /&gt;
** [https://controls.papercept.net/conferences/conferences/ECC18/program/ECC18_ContentListWeb_4.html#fra3 Model Reduction and Control in Large-Scale Networks]&lt;br /&gt;
** [https://controls.papercept.net/conferences/conferences/ECC18/program/ECC18_ContentListWeb_4.html#frb3 Model and Order Reduction I]&lt;br /&gt;
** [https://controls.papercept.net/conferences/conferences/ECC18/program/ECC18_ContentListWeb_4.html#frc3 Model and Order Reduction II]&lt;br /&gt;
&lt;br /&gt;
* Minisymposia at &amp;quot;[http://www.eccm-ecfd2018.org ECCM-ECFD 2018]&amp;quot;, June 11th - 15th, 2018; Glasgow (Scotland)&lt;br /&gt;
** &amp;quot;[http://www.eccm-ecfd2018.org/admin/Files/FileAbstract/a48.pdf MS48: Model reduction, big data and dynamic data-driven systems]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.eccm-ecfd2018.org/admin/Files/FileAbstract/a126.pdf MS126: Reduced order modeling with error control and adaptivity]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.eccm-ecfd2018.org/admin/Files/FileAbstract/a130.pdf MS130: Advances in reduced basis techniques for flow problems in analysis, control and optimization]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.eccm-ecfd2018.org/admin/Files/FileAbstract/a149.pdf MS149: Model order reduction for multiscale problems in geo-engineering]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.eccm-ecfd2018.org/admin/Files/FileAbstract/a170.pdf MS170: Reduced order modeling for uncertainty quantification in subsurface flow problems]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.eccm-ecfd2018.org/admin/Files/FileAbstract/a192.pdf MS192: Developments in reduced-order modelling of the cardiovascular system -- methods and applications.]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* &amp;quot;[http://www.itm.uni-stuttgart.de/iutam2018/ IUTAM Symposium on Model Order Reduction for Coupled Systems (MORCOS18)]&amp;quot; May 22nd - 25th, 2018; Stuttgart (Germany)&lt;br /&gt;
&lt;br /&gt;
* &amp;quot;[https://sites.google.com/view/rom4cvs Workshop on Reduced Models for the Cardiovascular Systems]&amp;quot; April 26th - 27th, 2018; Atlanta (USA)&lt;br /&gt;
&lt;br /&gt;
* Sessions at &amp;quot;[http://www.siam.org/meetings/uq18/ SIAM Conference on Uncertainty Quantification 2018]&amp;quot; April 16th - 20th, 2018; Garden Grove (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63738 MS5 - Model reduction and fast sampling methods for Bayesian inference - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63739 MS18 - Model reduction and fast sampling methods for Bayesian inference - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63731 MS54 - Dimension reduction in Bayesian inference - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63732 MS67 - Dimension reduction in Bayesian inference - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63733 MS80 - Dimension reduction in Bayesian inference - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63754 MS39 - recent advances in model reduction and data-enabled modeling - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63755 MS53 - recent advances in model reduction and data-enabled modeling - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63756 MS66 - recent advances in model reduction and data-enabled modeling - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63821 MS75 - Reduced Order Modeling for Uncertainty Quantification Targeting Exascale Computing Applications]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63791 MS79 - Reduced-order modeling techniques for large-scale UQ problems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63792 MS93 - Reduced-order modeling techniques for large-scale UQ problems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63817 MS106 - Advances in Reduced Order Modeling for Uncertainty Quantification - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63818 MS119 - Advances in Reduced Order Modeling for Uncertainty Quantification - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=64390 CP2 - Reduced-order Modeling and Dynamical Systems I]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=64404 CP13 - Reduced-order Modeling and Dynamical Systems II]&amp;quot;&lt;br /&gt;
* &amp;quot;[http://morepas2018.sciencesconf.org MoRePaS 2018 - Model Reduction of Parametrized Systems IV]&amp;quot; April 9th - 13th, 2018; Nantes (France)&lt;br /&gt;
* &amp;quot;[http://www.newton.ac.uk/event/unqw03 Reducing dimensions and cost for UQ in complex systems]&amp;quot; March 5th - 9th, 2018; Cambridge (UK)&lt;br /&gt;
* Minisymposium at [http://www.mathmod.at/ 9th MathMod] February 21st - 23rd, 2018; Vienna (Austria)&lt;br /&gt;
** &amp;quot;Model Reduction&amp;quot;&lt;br /&gt;
* &amp;quot;[https://sisu.ut.ee/eu_mornet/node/17747 EU-MORNET Workshop]&amp;quot; February 8th - 9th, 2018; Tartu (Estonia)&lt;br /&gt;
* &amp;quot;[http://www.jade-hs.de/unsere-hochschule/fachbereiche/ingenieurwissenschaften/forschung-und-praxis/modellierung-und-simulation-mechatronischer-systeme/february-2nd-2018-eu-mornet-workshop-mor-4-mechatronics/ MOR 4 MECHATRONICS]&amp;quot; February 2nd, 2018; Wilhemshaven (Germany&lt;br /&gt;
&lt;br /&gt;
=== 2017 ===&lt;br /&gt;
&lt;br /&gt;
* [http://math.lbl.gov/~mjzahr/wcrw2017/ West Coast ROM Workshop], November 17th, 2017; Berkeley (USA)&lt;br /&gt;
* &amp;quot;[http://www.imus.us.es/IWROM4/ MORTech 2017]&amp;quot; November 8th - 10th; Seville (Spain)&lt;br /&gt;
* &amp;quot;[http://www.math.rug.nl/gcsc/morschool.html Groningen Autumn School on Model Order Reduction]&amp;quot; October 30th - November 1st, 2017; Groningen (Netherlands)&lt;br /&gt;
* Minisymposia at [http://www.uib.no/en/enumath2017 ENUMATH 2017] September 25th - 29th, 2017; Voss (Norway)&lt;br /&gt;
** &amp;quot;[http://www.uib.no/en/enumath2017/98144/minisymposia MS10 - Reduced order models for time-dependent problems]&amp;quot; &lt;br /&gt;
** &amp;quot;[http://www.uib.no/en/enumath2017/98144/minisymposia MS28 - Model reduction methods for simulation and (optimal) control]&amp;quot;&lt;br /&gt;
* &amp;quot;[http://scale-freeback.eu/grenoble-workshop-2017/ Modelling Reduction Tools for Large Scale Complex Networks]&amp;quot; September 21st - 22nd, 2017; Grenoble (France)&lt;br /&gt;
* &amp;quot;[http://www.rbss2017.de Reduced Basis (and Friends) Summer School 2017]&amp;quot; September 19th - 22nd, 2017; Goslar (Germany)&lt;br /&gt;
* &amp;quot;[http://www.gipsa-lab.fr/summerschool/auto2017/ Approximation of Large-Scale Dynamical Models]&amp;quot; September 11th - 15th, 2017; Grenoble (France)&lt;br /&gt;
* &amp;quot;[http://www.rt.mw.tum.de/workshops-seminare/2-mor-doktoranden-workshop/ 2. MOR Doktoranden-Workshop]&amp;quot; September 6th - 8th, 2017; Munich (Germany)&lt;br /&gt;
* &amp;quot;[http://www.maths.dur.ac.uk/lms/107/index.html EPSRC Durham Symposium Model Order Reduction]&amp;quot; August 7th - 17th, 2017; Durham (UK)&lt;br /&gt;
* &amp;quot;[http://modelreduction.net/workshops/6th-international-workshop 6th International Workshop on Model Reduction in Reacting Flows]&amp;quot; July 11th - 14th, 2017; Princeton (USA)&lt;br /&gt;
* &amp;quot;[http://www.siam.org/meetings/dr17/ SIAM Workshop on Parameter Space Dimension Reduction (DR17)]&amp;quot; July 9th - 10th, 2017; Pittsburgh (USA)&lt;br /&gt;
* &amp;quot;[https://www.math.vt.edu/GFD_conference2017/ Conference on Classical and Geophysical Fluid Dynamics: Modeling, Reduction and Simulation]&amp;quot; June 26th - 28th, 2017; Blacksburg (USA) &lt;br /&gt;
* Session at [http://acc2017.a2c2.org/ American Control Conference] May 24th - 26th, 2017; Seattle (USA)&lt;br /&gt;
** &amp;quot;[https://css.paperplaza.net/conferences/scripts/rtf/2017ACC_ContentListWeb_3.html#thc05 Reduced Order Modeling]&amp;quot;&lt;br /&gt;
* &amp;quot;[http://eumornetlux.weebly.com/ 2nd Exploratory Workshop on Applications of Model Order Reduction Methods in Industrial Research and Development]&amp;quot; March 10th, 2017; Luxembourg (Luxembourg)&lt;br /&gt;
* &amp;quot;[http://www.eu-mor.net/model-reduction-course-hydra/ Model Reduction Course HYDRA]&amp;quot; March 6th - 9th, 2017; Eindhoven (Netherlands)&lt;br /&gt;
* Minisymposia at [http://www.siam.org/meetings/cse17/ SIAM CSE&#039;17] February 27th, 2017; Atlanta (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=60778 MS8 - Smooth, Reduced, Sparse -- Exploiting Structures for Surrogate Modeling in CSE - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=60779 MS37 - Smooth, Reduced, Sparse -- Exploiting Structures for Surrogate Modeling in CSE- Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=60819 MS66 - Smooth, Reduced, Sparse -- Exploiting Structures for Surrogate Modeling in CSE - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=60968 MS75 - Model Reduction Software: Nonlinear Problems and Data-Driven Solutions]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=61076 MS106 - Reduced Order Models for Fluids: Achievements and Open Problems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=61077 MS133 - Reduced Order Models for Fluids: Achievements and Open Problems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=61078 MS161 - Reduced Order Models for Fluids: Achievements and Open Problems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=61079 MS188 - Reduced Order Models for Fluids: Achievements and Open Problems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=60854 MS107 - Model Order Reduction: Perspectives from Junior Researchers - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=61077 MS134 - Model Order Reduction: Perspectives from Junior Researchers - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=61070 MS145 - Reduced Order Modeling Techniques in Large Scale &amp;amp; Data-Driven PDE Problems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=61071 MS172 - Reduced Order Modeling Techniques in Large Scale &amp;amp; Data-Driven PDE Problems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=60909 MS162 - Model Reduction for Optimal Control Problems: Perspectives from Junior Researchers - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=60910 MS189 - Model Reduction for Optimal Control Problems: Perspectives from Junior Researchers - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=61275 MS313 - Model and Solution Reduction Methods in Computational Mechanics: Challenges and Perspectives]&amp;quot;&lt;br /&gt;
* &amp;quot;[http://www.hda2017.unsw.edu.au 7th Workshop on High-Dimensional Approximation]&amp;quot; February 13th - 17th, 2017; Sydney (Australia)&lt;br /&gt;
* &amp;quot;[http://matperso.mines-paristech.fr/Personnel/david.ryckelynck Doctoral Workshop on Model Reduction in Nonlinear Mechanics]&amp;quot; February 13th - 17th, 2017; Paris (France)&lt;br /&gt;
* &amp;quot;[http://www.mpi-magdeburg.mpg.de/csc/events/modred2017 3rd Workshop on Model Reduction of Complex Dynamical Systems]&amp;quot; January 11th - 13th, 2017; Odense (Denmark)&lt;br /&gt;
&lt;br /&gt;
=== 2016 ===&lt;br /&gt;
&lt;br /&gt;
* &amp;quot;[http://www.komso.org/events/challenge-workshops/reduced-order-modeling-simulation-and-optimization-powerful-algorithms Reduced-Order Modeling for Simulation and Optimization: Powerful Algorithms as Key Enablers for Scientific Computing]&amp;quot; November 17th - 18th; Renningen (Germany)&lt;br /&gt;
* Workshop &amp;quot;[http://www.ihp.fr/en/CEB/T3-2016/workshop2 Recent developments in numerical methods for model reduction]&amp;quot; November 7th - 10th, 2016; Paris (France)&lt;br /&gt;
* &amp;quot;[http://www.mpi-magdeburg.mpg.de/3104866/RBSS2016 Reduced Basis Summer School 2016]&amp;quot; October 4th - 7th, 2016; Hedersleben (Germany)&lt;br /&gt;
* Workshop on &amp;quot;[http://www.eventbrite.it/e/reduced-order-modelling-and-multi-physics-coupling-for-reactor-applications-registration-24511634960 Reduced Order Modelling and Multiphysics Coupling for Rector Application]&amp;quot; September 30th, 2016; Milano (Italy)&lt;br /&gt;
* &amp;quot;[http://alop.uni-trier.de/event/alop-workshop-reduced-order-models-in-optimization/ ALOP Workshop: Reduced Order Models in Optimization] September 26th - 28th, 2016; Trier (Germany)&lt;br /&gt;
* &amp;quot;[http://www.mathos.unios.hr/index.php/443 Workshop on Model Reduction Methods and Optimization]&amp;quot; September 20th - 21st, 2016; Opatija (Croatia)&lt;br /&gt;
* &amp;quot;[http://www.mechbau.uni-stuttgart.de/EMMA/worm2016 3rd International Workshop on Order-Reduction Methods for Mechanics of Materials]&amp;quot; August 29th - 31st, 2016; Bad Herrenalb (Germany)&lt;br /&gt;
* Sessions at [http://www.siam.org/meetings/an16/ SIAM Annual Meeting 2016] 11th - 15, 2016; Boston (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23289 MS32 - Reduced Order Modeling Techniques in Uncertainty Quantification - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23290 MS46 - Reduced Order Modeling Techniques in Uncertainty Quantification - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23600 MS70 - Model Reduction and Krylov-Subspace Methods]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23394 MS71 - Model Reduction for Inverse Problems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23395 MS87 - Model Reduction for Inverse Problems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23453 MS103 - Model Reduction for Wavefield Simulations - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23454 MS118 - Model Reduction for Wavefield Simulations - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23099 MS104 - Model Reduction of Parametrized PDEs in Continuum Mechanics - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23100 MS119 - Model Reduction of Parametrized PDEs in Continuum Mechanics - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23146 MS137 - Model Reduction of Parametrized PDEs: Application to Optimization and Uncertainty Quantification]&amp;quot;&lt;br /&gt;
* Minisymposium &amp;quot;[http://ilas2016.cs.kuleuven.be/minisymposium.php?sid=41 Data-Driven Model Reduction]&amp;quot; at ILAS July 11th - 15th, 2016; Leuven (Belgium)&lt;br /&gt;
* Sessions at [http://sites.google.com/a/umn.edu/mtns-2016/ 22nd International Symposium on Mathematical Theory of Networks and Systems], July 11th - 15th, 2016; Minnesota (USA)&lt;br /&gt;
** &amp;quot;[http://controls.papercept.net/conferences/conferences/MTNS16/program/MTNS16_ContentListWeb_1.html#tua06 Model Reduction I]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://controls.papercept.net/conferences/conferences/MTNS16/program/MTNS16_ContentListWeb_1.html#tub06 Model Reduction II]&amp;quot; &lt;br /&gt;
* Session at [http://ecc16.eu European Control conference 2016], June 29th - July 1st, 2016; Aalborg (Denmark)&lt;br /&gt;
**  &amp;quot;[http://controls.papercept.net/conferences/conferences/ECC16/program/ECC16_ContentListWeb_4.html#fra6 Model Reduction]&amp;quot; &lt;br /&gt;
* Seminar &amp;quot;[http://www.aices.rwth-aachen.de/news-events/eu-regional-school/eu-regional-school-2016/courses/heinkenschloss-seminar Model Reduction in PDE Constrained Optimization]&amp;quot; at EU Regional School, June 14th - 15th, 2016; Aachen (Germany)&lt;br /&gt;
* Minisymposium &amp;quot;Reduced Basis, POD and PGD Model Order Reduction Techniques&amp;quot; at [http://www.eccomas2016.org ECCOMAS Congress 2016] June 5th - 10th, 2016; Crete Island (Greece)&lt;br /&gt;
* Workshop on &amp;quot;[http://www.eu-mor.net/workshop-model-order-reduction-control-inverse-problems-morcip-2016/ Model Order Reduction for Control and Inverse Problems (MORCIP)]&amp;quot; May 19th - 20th, 2016; Lausanne (Switzerland)&lt;br /&gt;
* Spring School &amp;quot;[http://www.ercoftac.org/events/ercoftac_montestigliano_spring_school_2016/ Reduced-order models for non-linear dynamics in fluid flows]&amp;quot; May 17th - 23rd, 2016; Siena (Italy)&lt;br /&gt;
* Sessions at [http://www.siam.org/meetings/uq16/ SIAM Conference on Uncertainty Quantification] April 5th - 8th, 2016; Lausanne (Switzerland)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=21926 MS13 - Reduced Order Modelling for UQ PDEs Problems: Optimization, Control, Data Assimilation - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=21927 MS28 - Reduced Order Modelling for UQ PDEs Problems: Optimization, Control, Data Assimilation - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=22194 MS89 - Reduced-order Modeling in Uncertainty Quantification - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=22195 MS104 - Reduced-order Modeling in Uncertainty Quantification - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=22196 MS119 - Reduced-order Modeling in Uncertainty Quantification - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=22362 MS149 - Model Reduction in Stochastic Dynamical Systems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=22363 MS164 - Model Reduction in Stochastic Dynamical Systems - Part II of II]&amp;quot;&lt;br /&gt;
* Workshop &amp;quot;[http://www.ians.uni-stuttgart.de/agh/misc/events/morml2016/index.html Data-Driven Model Order Reduction and Machine Learning (MORML 2016)]&amp;quot; March 30th - April 1st, 2016; University of Stuttgart (Germany)&lt;br /&gt;
* Symposium &amp;quot;[http://www.humboldt-foundation.de/web/gafos-2016-sessions.html Model Reduction for Complex Systems]&amp;quot; at [http://www.humboldt-foundation.de/web/gafos-2016.html 20th German-American Symposium] March 10th - 13th, 2016; Potsdam (Germany)&lt;br /&gt;
* &amp;quot;Doctoral Workshop on Model Reduction in nonlinear dynamics of fluids and structures&amp;quot; January 25th - 29th, 2016; Paris (France)&lt;br /&gt;
&lt;br /&gt;
=== 2015 ===&lt;br /&gt;
&lt;br /&gt;
* West Coast ROM Workshop, November 19th, 2015; Livermore (USA)&lt;br /&gt;
* [http://sites.google.com/site/mor4mems2015/ MOR 4 MEMS] November 17th - 18th, 2015; Karlsruhe (Germany). [http://www2.mpi-magdeburg.mpg.de/mpcsc/events/MOR4MEMS2015/ Here] you find the presentation slides.&lt;br /&gt;
* [http://rom2015.sciencesconf.org Reduced Basis, POD and PGD Model Reduction Techniques] November 4th - 6th, 2015; Cachan (France)&lt;br /&gt;
* [http://eumornetlux.weebly.com/ Exploratory Workshop on Applications of Model Order Reduction Methods in Industrial Research and Development] November 6th, 2015; Luxembourg (Luxembourg)&lt;br /&gt;
* [http://indico.sissa.it/event/4/ MoRePaS III] October 13th - 16th, 2015; Trieste (Italy)&lt;br /&gt;
* [http://www.mathos.unios.hr/index.php/351 3rd International School on Model Reduction for Dynamical Control Systems] October 5th - 10th, 2015; Dubrovnik (Croatia)&lt;br /&gt;
* Minisymposium &amp;quot;[http://enumath2015.iam.metu.edu.tr/minisymposia20.html Local and adaptive model reduction for partial differential equations]&amp;quot; at [http://enumath2015.iam.metu.edu.tr ENuMath] September 14th - 18th, 2015; Ankara (Turkey)&lt;br /&gt;
* Minisymposium &amp;quot;[http://scicade2015.math.uni-potsdam.de/scicade2015/minisymposiadetails.html#MS34 Parametric Model Order Reduction: Challenges and Solutions]&amp;quot; at [http://scicade2015.math.uni-potsdam.de SciCADE] September 14th - 18th, 2015; Potsdam (Germany)&lt;br /&gt;
* [http://www.math.uni-konstanz.de/numerik/pod/rbss_2015/ Reduced Basis Summer School 2015] September 14th - 18th, 2015; Konstanz (Germany)&lt;br /&gt;
* [http://www.cs.cas.cz/more2015/index.php Workshop on MOdel REduction] September 6th - 10th, 2015; Pilsen (Czech Republic)&lt;br /&gt;
* Session at [http://www.iciam2015.cn 8th International Congresson Industrial and Applied Mathematics] August 10th - 14th, 2015; Beijing (China)&lt;br /&gt;
** &amp;quot;[http://www.iciam2015.cn/ICIAM%202015-program.pdf#MS-Mo-D-32.88 MS-Mo-D-32 - Reduced-order modeling in uncertainty quantification and computational fluiddynamics - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.iciam2015.cn/ICIAM%202015-program.pdf#MS-Mo-E-32.aD MS-Mo-E-32 - Reduced-order modeling in uncertainty quantification and computational fluiddynamics - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.iciam2015.cn/ICIAM%202015-program.pdf#MS-We-E-03.cC MS-We-E-03 - Reduced-order modeling in uncertainty quantification and computational fluiddynamics - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.iciam2015.cn/ICIAM%202015-program.pdf#MS-We-E-55.XZ MS-We-E-55 - New advances in model order reduction:  methods, algorithms, and applications - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.iciam2015.cn/ICIAM%202015-program.pdf#MS-Th-BC-55.A6 MS-Th-BC-55 - New advances in model order reduction:  methods, algorithms, and applications - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.iciam2015.cn/ICIAM%202015-program.pdf#MS-Tu-E-14.1F MS-Tu-E-14 - Optimality in reduced order modeling and inversion - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.iciam2015.cn/ICIAM%202015-program.pdf#MS-We-D-14.l1 MS-We-D-14 - Optimality in reduced order modeling and inversion - Part II of II]&amp;quot;&lt;br /&gt;
* Reduced Order Methods Session at [http://www.yic.rwth-aachen.de/ YIC GACM ACCCES] July 20th - 23rd; Aachen (Germany)&lt;br /&gt;
* Session at [https://desreg.jku.at/ecc15/ European Control Conference 2015] July 15th -17th, 2015; Linz (Austria)&lt;br /&gt;
** &amp;quot;[http://controls.papercept.net/conferences/conferences/ECC15/program/ECC15_ContentListWeb_2.html#wea11 Model Reduction I]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://controls.papercept.net/conferences/conferences/ECC15/program/ECC15_ContentListWeb_2.html#wec11 Model Reduction II]&amp;quot;&lt;br /&gt;
* [http://modelreduction.net/workshops/5th-annual 5th International Workshop on Model Reduction in Reacting Flows] June 28th - July 1st; Spreewald (Germany)&lt;br /&gt;
* [http://www3.math.tu-berlin.de/numerik/MoRTransPhen/ Model Reduction for Transport Dominated Phenomena] May 19th - 20th; Berlin (Germany)&lt;br /&gt;
* International Symposium: [http://www.tum-ias.de/bigdata2015/program.html Big Data and Predictive Computational Modelling] May 18th - 21st, 2015; München (Germany) &lt;br /&gt;
* Minisymposia at [http://www.siam.org/meetings/cse15 SIAM Conference on Computational Science and Engineering] March 14th - 18th, 2015; Salt Lake City (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=20081 MS4 - Adaptive Model Order Reduction - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=20082 MS30 - Adaptive Model Order Reduction - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=20083 MS55 - Adaptive Model Order Reduction - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=20296 MS91 - Parametric Model Reduction and Inverse Problems - Part I of IV]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=20297 MS116 - Parametric Model Reduction and Inverse Problems - Part II of IV]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=20300 MS143 - Parametric Model Reduction and Inverse Problems - Part III of IV]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=20301 MS169 - Parametric Model Reduction and Inverse Problems - Part IV of IV]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=19988 MS148 - Reduced-order Models for PDE-constrained Optimization Problems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=19989 MS174 - Reduced-order Models for PDE-constrained Optimization Problems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=19907 MS187 - Recent Advances in Model Reduction - Part I of V]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=19908 MS211 - Recent Advances in Model Reduction - Part II of V]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=19960 MS236 - Recent Advances in Model Reduction - Part III of V]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=19961 MS260 - Recent Advances in Model Reduction - Part IV of V]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=19962 MS285 - Recent Advances in Model Reduction - Part V of V]&amp;quot;&lt;br /&gt;
* Session at [http://www.mathmod.at Vienna Conference on Mathematical Modelling (MathMod)] February 18th - 20th, 2015; Vienna (Austria)&lt;br /&gt;
** &amp;quot;Model Reduction&amp;quot;&lt;br /&gt;
* [http://congress.cimne.com/mor/frontal/objectives.asp Short Course on Model Order Reduction] January 26th - 29th, 2015; Barcelona (Spain)&lt;br /&gt;
&lt;br /&gt;
=== 2014 ===&lt;br /&gt;
* [http://www.mfo.de/occasion/1448b/www_view Oberwolfach Seminar on Projection Based Model Reduction] November 23rd - 29th, 2014; Oberwolfach (Germany)&lt;br /&gt;
* [http://eu-mor.net EU-MORNET] Kick-Off Meeting September 18th - 19th; Eindhoven (Netherlands)&lt;br /&gt;
* [http://www2.le.ac.uk/departments/mathematics/extranet/conferences/model-reduction-across-disciplines Model reduction across disciplines] August 19th - 22nd, 2014; Leicester (United Kingdom) &lt;br /&gt;
* [http://wwwmath.uni-muenster.de/rbss2014 Reduced Basis Summer School 2014] August 18th - 22nd, 2014; Muenster (Germany)&lt;br /&gt;
* Bay Area ROM Workshop, August 7th, 2014; Livermore (USA)&lt;br /&gt;
&lt;br /&gt;
* Minisymposia at [http://www.wccm-eccm-ecfd2014.org IACM-ECCOMAS 2014] July 20th - 25th, 2014; Barcelona (Spain)&lt;br /&gt;
** &amp;quot;[http://congress.cimne.com/iacm-eccomas2014/admin/Files/FileAbstract/a239.pdf MS239: Multibody System Dynamics and Modal Reduction]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://congress.cimne.com/iacm-eccomas2014/admin/Files/FileAbstract/a15.pdf MS015: Reduced Basis, POD and PGD Model Reduction Techniques]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://congress.cimne.com/iacm-eccomas2014/admin/Files/FileAbstract/a141.pdf MS141: Reduced Order Models in Vibroacoustics]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://congress.cimne.com/iacm-eccomas2014/admin/Files/FileAbstract/a69.pdf MS069: Advanced Reduced-order Modeling Strategies for Parametrized PDEs and Applications]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* Session at [http://www.siam.org/meetings/an14/ SIAM Annual Meeting 2014], July 7th - 11th; Chicago (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=19618 CP1 - Reduced Order Models]&amp;quot;&lt;br /&gt;
* Sessions at the [http://ecc14.eu European Control Conference 2014] June 24th- 27th, 2014; Strasbourg (France)&lt;br /&gt;
** &amp;quot;[https://controls.papercept.net/conferences/conferences/ECC14/program/ECC14_ContentListWeb_3.html#tha2 Model and Controller Reduction I]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://controls.papercept.net/conferences/conferences/ECC14/program/ECC14_ContentListWeb_4.html#frc2 Model and Controller Reduction II]&amp;quot;&lt;br /&gt;
* Session at [http://acc2014.a2c2.org/ American Control Conference] June 4th - 6th, 2014; Portland (USA)&lt;br /&gt;
** &amp;quot;[https://css.paperplaza.net/conferences/conferences/2014ACC/program/2014ACC_ContentListWeb_1.html#wea04 Reduced Order Modeling]&amp;quot;&lt;br /&gt;
* Sessions at [http://siam.org/meetings/uq14/ SIAM Conference on Uncertainty Quantification] March 31st - April 3rd; Savannah (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=18137 MS10 - Model-Reduction Techniques for Quantifying and Controlling Uncertainty]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=18298 MT3 - Reduced Order Methods for Modelling and Computational Reduction in UQ Problems]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=18664 CP11 - Reduced-order Modeling]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=18192 MS67 - Surrogate and Reduced Order Modeling for Statistical Inversion and Prediction - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=18193 MS77 - Surrogate and Reduced Order Modeling for Statistical Inversion and Prediction - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=17858 MS87 - Uncertainty Quantification via Dimension Reduction: Deterministic and Stochastic Approaches]&amp;quot;&lt;br /&gt;
* [http://jahrestagung.gamm-ev.de/index.php/scientific-program/minisymposia Parametric Model Reduction of Dynamical Systems] Minisymposium at the [http://jahrestagung.gamm-ev.de/ GAMM annual meeting 2014] March 10th - 14th, 2014; Erlangen (Germany)&lt;br /&gt;
&lt;br /&gt;
===2013===&lt;br /&gt;
* [http://www2.mpi-magdeburg.mpg.de/mpcsc/events/ModRed/2013/ ModRed 2013] December 11th - 13th, 2013; Magdeburg (Germany)&lt;br /&gt;
* [http://www.mathos.unios.hr/locschool2013/ DAAD International School on Linear Optimal Control of Dynamic Systems] September 23rd - 28th; Osijek (Croatia)&lt;br /&gt;
* [http://www.ma.tum.de/IGDK1754/SummerSchool2013 Summerschool &amp;quot;Reduced Basis Methods - Fundamentals and Applications&amp;quot;] September 16th - 19th; Munich (Germany)&lt;br /&gt;
* Reduced Basis Summer School 2013 August, 2013; Aachen (Germany)&lt;br /&gt;
* [http://enumath2013.epfl.ch Enumath] Minisymposium &amp;quot;Reduced order modelling for the simulation of complex systems&amp;quot; August 26th - 30th, 2013, Lausanne (Switzerland)&lt;br /&gt;
* Sessions at the [http://www.ecc13.ethz.ch European control Conference 2013] July 17th - 19th, 2013; Zurich (Switzerland)&lt;br /&gt;
** &amp;quot;[https://controls.papercept.net/conferences/conferences/ECC13/program/ECC13_ContentListWeb_4.html#fra12 Reduced Order Systems]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://controls.papercept.net/conferences/conferences/ECC13/program/ECC13_ContentListWeb_4.html#frc12 Model Reduction]&amp;quot;&lt;br /&gt;
* [http://modelreduction.net/workshops/4th-annual 4th International Workshop on Model Reduction in Reacting Flows] June 19th - 21st, 2013, San Francisco (USA)&lt;br /&gt;
* Sessions at [http://acc2013.a2c2.org American Control Conference] June 17th - 19th, 2013; Washington D.C. (USA)&lt;br /&gt;
** &amp;quot;[https://css.paperplaza.net/conferences/conferences/2013ACC/program/2013ACC_ContentListWeb_3.html#web05 Reduced-Order Modeling]&amp;quot;&lt;br /&gt;
* [http://modredcirm2013.uni-muenster.de/ CIRM workshop Model Reduction and Approximation for Complex Systems] June 10th - 14th, 2013; Marseille (France)&lt;br /&gt;
* [http://www.tapir.caltech.edu/~rom-gr/ Reduced Order Modelling in General Relativity] June 6th - 7th, 2013; Pasadena (USA)&lt;br /&gt;
* Sessions at the [http://www.siam.org/meetings/cse13 SIAM Conference on Computational Science and Engineering] February 25th - March 1st; Boston (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15551 MS20 - Structure-preserving Model Order Reduction of Large-scale Dynamical Systems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15552 MS40 - Structure-preserving Model Order Reduction of Large-scale Dynamical Systems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15728 MS14 - Model Reduction and Surrogate Modeling Advances in Porous Media Flow Simulation and Optimization - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15729 MS34 - Model Reduction and Surrogate Modeling Advances in Porous Media Flow Simulation and Optimization - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15547 MS104 - Data-Driven Model Reduction - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15548 MS138 - Data-Driven Model Reduction - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15549 MS194 - Data-Driven Model Reduction - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15676 MS144 - Nonlinear Model Reduction of Complex Flows: Modeling, Analysis, and Computations - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15677 MS182 - Nonlinear Model Reduction of Complex Flows: Modeling, Analysis, and Computations - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15639 MS45 - Data Driven and Nonliner Model Reduction - Parts I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15640 MS68 - Data Driven and Nonliner Model Reduction - Parts II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15641 MS116 - Data Driven and Nonliner Model Reduction - Parts III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15422 MS95 - Reduced Order Modelling for Complex Systems in CFD - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15423 MS164 - Reduced Order Modelling for Complex Systems in CFD - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15424 MS244 - Reduced Order Modelling for Complex Systems in CFD - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15758 MS219 - Model Order Reduction: Recent Advances and Challenges - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15759 MS257 - Model Order Reduction: Recent Advances and Challenges - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15760 MS272 - Model Order Reduction: Recent Advances and Challenges - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15952 CP12 - Model Reduction and Data-Driven Approaches]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===2012===&lt;br /&gt;
* [http://www.morepas.org/workshop2012/index.html MoRePaS 2] October 2nd - 5th, 2012; Günzburg (Germany)&lt;br /&gt;
* [http://www.mathematik.uni-stuttgart.de/fak8/ians/lehrstuhl/agh/misc/events/rbm_workshop_2012.html Reduced Basis Summer School 2012] August 28th - 31st; Stuttgart (Germany)&lt;br /&gt;
* [http://www.math.uni-hamburg.de/moa/ Workshop on Adaptivity and Model Order Reduction in PDE Constrained Optimization] July 23rd - 27th; Hamburg (Germany)&lt;br /&gt;
* Sessions at [http://acc2012.a2c2.org/ American Control Conference] June 27th - 29th, 2012; Montreal (Canada)&lt;br /&gt;
** &amp;quot;[https://css.paperplaza.net/conferences/conferences/2012ACC/program/2012ACC_ContentListWeb_1.html#wec20 Reduced Order Modeling]&amp;quot;&lt;br /&gt;
* [https://www.cecam.org/workshop-2-681.html Reduced Basis, POD and Reduced Order Methods for model and computational reduction: towards real-time computing and visualization?] May 14 - 16th; Lausanne (Switzerland)&lt;br /&gt;
* [https://www2.mpi-magdeburg.mpg.de/mpcsc/news/program_tegernsee.pdf Workshop on Nonlinear MOR] May 6th - 9th; Tegernsee (Germany)&lt;br /&gt;
* Minisymposia at [http://siam.org/meetings/uq12/ SIAM Conference on Uncertaity Quantification] April 2nd - 6th; Raleigh (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=14305 MS58 - Model Reduction for Nonlinear Dynamical Systems]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=14520 MS80 - Reduced Order Modeling for High Dimensional Nonlinear Models]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===2011===&lt;br /&gt;
* [http://www.math.uni-konstanz.de/numerik/pod/workshop Advances in POD and RB Model-Order Reduction] November 21st, 2011; Konstanz (Germany)&lt;br /&gt;
* [http://www.uni-ulm.de/mawi/mawi-numerik/aktuelles/summer-school-rbm.html Reduced Basis Summer School 2011] October 25th - 28th; Ulm (Germany)&lt;br /&gt;
* [http://www2.mpi-magdeburg.mpg.de/mpcsc/events/trogir/ Summer School on Numerical Linear Algebra for Dynamical and High-Dimensional Problems] October 10th - 15th; Trogir (Croatia)&lt;br /&gt;
* [http://www.math.uni-bremen.de/zetem/cms/detail.php?template=gamm_parse_title&amp;amp;person=gamm11/program GAMM Workshop Applied and Numerical Linear Algebra with Special Emphasis on Model Reduction] September 21st - 22nd; Bremen (Germany)&lt;br /&gt;
* Sessions at [http://iciam.org/event/iciam-2011-%E2%80%93-vancouver 7th International Congress on Industrial and Applied Mathematics] July 18th - 22nd; Vancouver (Canada)&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11230 MS38 - Optimal Parameter Sampling in Model Reduction - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11231 MS87 - Optimal Parameter Sampling in Model Reduction - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11232 MS136 - Optimal Parameter Sampling in Model Reduction - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11296 MS148 - Structure-Preserving Model Reduction - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11297 MS199 - Structure-Preserving Model Reduction - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11298 MS256 - Structure-Preserving Model Reduction - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11452 MS340 - Dynamical Systems Approaches to Model Reduction -- Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=12051 MS388 - Dynamical Systems Approaches to Model Reduction -- Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11877 MS363 - Reduced Basis Methods and their Applications - Part I of IV]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11878 MS416 - Reduced Basis Methods and their Applications - Part II of IV]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11879 MS462 - Reduced Basis Methods and their Applications - Part III of IV]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11880 MS511 - Reduced Basis Methods and their Applications - Part IV of IV]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=13350 CP36 - Reduced Order Models]&amp;quot;&lt;br /&gt;
* [http://www.modelreduction.net/iwmrrf2011/site/ 3rd International Workshop on Model Reduction in Reacting Flows] April 27th - 29th; Corfu (Greece)&lt;br /&gt;
* Session at the [http://siam.org/meetings/cse11 SIAM Conference on Computational Science and Engineering] February 28th - March 4th; Reno (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=10982 MS18 - Model Reduction of Nonlinear and Parametrized Systems - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=10983 MS26 - Model Reduction of Nonlinear and Parametrized Systems - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=10984 MS40 - Model Reduction of Nonlinear and Parametrized Systems - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11497 MS39 - Model Order Reduction Using Graph Theory and Numerical Linear Algebra]&amp;quot;&lt;br /&gt;
* [http://www.wias-berlin.de/workshops/MOR2011/ Workshop on Model Order Reduction in Optimization and Control with PDEs] January 26th - 28th; Berlin (Germany)&lt;br /&gt;
&lt;br /&gt;
===2010===&lt;br /&gt;
* [http://www.ians.uni-stuttgart.de/MoRePaS/events/Ulm10/index.html Workshop on RB Methods] December 7th - 8th, 2010; Ulm (Germany)&lt;br /&gt;
* [http://www3.math.tu-berlin.de/modred2010/ ModRed 2010] December 2nd - 4th, 2010; Berlin (Germany)&lt;br /&gt;
* Sessions at [http://www.siam.org/meetings/an10/ SIAM Annual Meeting 2010], July 12th - 16th, 2010; Pittsburgh (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=10125 MS2 - Advances in Model Reduction for Large-Scale Problems - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=10126 MS38 - Advances in Model Reduction for Large-Scale Problems - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=10127 MS51 - Advances in Model Reduction for Large-Scale Problems - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=10202 MS33 - Reduced Order Models for Dynamical Systems]&amp;quot;&lt;br /&gt;
* Minisymposium &amp;quot;[http://www.eccomas-cfd2010.org/minisymposia.php Model Order Reduction of Complex Systems in CFD]&amp;quot; at [http://www.eccomas-cfd2010.org ECCOMAS CFD]; June 14th - 17th, 2010; Lisbon (Portugal)&lt;br /&gt;
&lt;br /&gt;
===2009===&lt;br /&gt;
* Sessions at [https://archive.siam.org/meetings/la09/index.php SIAM Conference on Applied Linear Algebra] October 26 th 29th, 2009; Monterey Bay-Seaside (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=8992 MS14 - Model Order Reduction for Dynamical Systems - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=8993 MS20 - Model Order Reduction for Dynamical Systems - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=8994 MS32 - Model Order Reduction for Dynamical Systems - Part III of III]&amp;quot;&lt;br /&gt;
* [http://www.win.tue.nl/casa/meetings/special/mor09/ Autumn School on Future Developments in Model Order Reduction] September 21st - 25th, 2009; Terschelling (Netherlands)&lt;br /&gt;
* [http://www.uni-muenster.de/CeNoS/ocs/index.php/MRP/MRP09/ MoRePaS] September 16th - 18th, 2009;  Münster (Germany)&lt;br /&gt;
* Session at [http://www.siam.org/meetings/an09/ SIAM Annual Meeting 2009] July 6th - 10th, 2009; Denver (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=8863 CP20 - Model Reduction]&amp;quot;&lt;br /&gt;
* [http://modelreduction.net/iwmrrf2009/ 2nd International Workshop on Model Reduction in Reacting Flows] March 30th - April 1st, 2009 Notre Dame (USA)&lt;br /&gt;
* [http://www.cl.eps.manchester.ac.uk/medialand/maths/archived-events/workshops/www.mims.manchester.ac.uk/events/workshops/HSMoR09/ CICADA Workshop on Hybrid Systems and Model Reduction] March 19th - 20th, 2009 Manchester (England)&lt;br /&gt;
* Sessions at the [http://siam.org/meetings/cse09 SIAM Conference on Computational Science and Engineering] March 2nd - 6th, 2009; Miami (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=8306 CP12 - Model Reduction]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=7918 MS106 - Model Reduction - Part I of V]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=7919 MS119 - Model Reduction - Part II of V]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=7920 MS127 - Model Reduction - Part III of V]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=7921 MS141 - Model Reduction - Part IV of V]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=7922 MS151 - Model Reduction - Part V of V]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===2008===&lt;br /&gt;
&lt;br /&gt;
* [https://www.math.uni-hamburg.de/spag/zms/syrene/ Model Reduction for Circuit Simulation] October 30th - 31st, 2008; Hamburg (Germany)&lt;br /&gt;
* Session at [http://acc2008.a2c2.org/ American Control Conference] June 11th - 13th, 2008; Seattle (USA)&lt;br /&gt;
** &amp;quot;[https://css.paperplaza.net/conferences/conferences/2008ACC/program/2008ACC_ContentListWeb_3.html#fra11 Model Reduction]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===2007===&lt;br /&gt;
* [http://www.win.tue.nl/casa/meetings/special/mor07/ Symposium on Recent Advances in Model Order Reduction] November 23rd, 2007; Eindhoven (Netherlands)&lt;br /&gt;
* [http://modelreduction.net/ModelReductionWorkshop/Home%20Page.html 1st International Workshop on Model Reduction in Reacting Flows] September 3rd - 5th, 2007; Rome (Italy)&lt;br /&gt;
* Sessions at [http://iciam.org/event/iciam-2007-%E2%80%93-zurich 6th International Congress for Industrial and Applied Mathematics] July 16th - 20th, 2007; Zurich (Switzerland)&lt;br /&gt;
** &amp;quot;[http://iciamold.jsiam.org/iciam2007/ICIAM07-ProgramBook.pdf#IC/MP/002/S/346 Model reduction: theory, methodology and software #1]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://iciamold.jsiam.org/iciam2007/ICIAM07-ProgramBook.pdf#IC/MP/002/S/346-2 Model reduction: theory, methodology and software #2]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://iciamold.jsiam.org/iciam2007/iciam07_programbook.pdf#IC/MP/020/S/347 Model reduction: structured and higher-order systems #1]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://iciamold.jsiam.org/iciam2007/iciam07_programbook.pdf#IC/MP/020/S/347-2 Model reduction: structured and higher-order systems #2]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://iciamold.jsiam.org/iciam2007/iciam07_programbook.pdf#IC/MP/020/P/348 Model reduction in circuit simulation #1]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://iciamold.jsiam.org/iciam2007/ICIAM07-ProgramBook.pdf#IC/MP/020/P/348-2 Model reduction in circuit simulation #2]&amp;quot;&lt;br /&gt;
* Session at [http://acc2007.a2c2.org/ American Control Conference] July 11th - 13th, 2007; New York (USA)&lt;br /&gt;
** &amp;quot;[https://css.paperplaza.net/conferences/conferences/2007ACC/program/2007ACC_ContentListWeb_1.html#web07 Reduced Order Modeling]&amp;quot;&lt;br /&gt;
* Sessions at [https://archive.siam.org/meetings/ct07/index.php SIAM Conference on Control and its Application] June 29th - July 1st, 2007; San Francisco (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=6338 MS16 - Model Reduction for Control and Dynamical Systems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=6339 MS21 - Model Reduction for Control and Dynamical Systems - Part II of II]&amp;quot;&lt;br /&gt;
* Sessions at [http://siam.org/meetings/cse07 SIAM Conference on Computational Science and Engineering] February 19th - 23rd, 2007; Costa Mesa (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=5955 MS36 - Model Order Reduction and Automated Behavioural Modeling - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=6029 MS48 - Model Order Reduction and Automated Behavioural Modeling - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=6137 CP12 - Reduced Order Modelling]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===2006===&lt;br /&gt;
* Session &amp;quot;Model Reduction&amp;quot; at [http://www.eurosime.org/b06.htm EuroSimE 2006] April 24th - 26th, 2006; Como (Italy)&lt;br /&gt;
&lt;br /&gt;
* Minisymposia at [http://www.siam.org/meetings/an06/index.php SIAM Annual Meeting 2006] July 10th - 14th, 2006; Boston (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=5357 MS13 - Model Reduction of Dynamical Systems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=5358 MS31 - Model Reduction of Dynamical Systems - Part II of II]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===2005===&lt;br /&gt;
* [http://www.lorentzcenter.nl/lc/web/2005/160/info.php3?wsid=160. Model order reduction, coupled problems and optimization] September 19th - 23rd, 2005; Leiden (Netherlands)&lt;br /&gt;
&lt;br /&gt;
* Minisymposia at [http://www.siam.org/meetings/an05/index.htm SIAM Annual Conference 2005] July 11th - 15th, 2005; New Orleans (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=4372 MS43 - Model Reduction for Large Scale Dynamical Systems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=4373 MS55 - Model Reduction for Large Scale Dynamical Systems - Part II of II]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===2004===&lt;br /&gt;
* [https://www.birs.ca/events/2004/5-day-workshops/04w5513 Model Reduction Problems and Matrix Methods] April 3rd - 8th; Banff (Canada)&lt;br /&gt;
&lt;br /&gt;
===2003===&lt;br /&gt;
* [http://web.archive.org/web/20070612131401/http://www.math.tu-berlin.de/numerik/mt/NumMat/Meetings/0310_MFO/ Dimensional Reduction of Large-Scale Systems] October 19th - 25th, 2003 Oberwolfach (Germany)&lt;br /&gt;
&lt;br /&gt;
===2001===&lt;br /&gt;
* [https://research.tue.nl/en/activities/macsi-workshop-on-model-reduction MACSI workshop on Model Reduction] October 8th - 9th, 2001; Eindhoven (Netherlands)&lt;br /&gt;
* Minisymposium at [http://user.it.uu.se/~icosahom/ International Conference On Spectral and High Order Methods] June 11th - 15th, 2001; Uppsala (Sweden)&lt;br /&gt;
** &amp;quot;Reduced-Basis Methods for Partial Differential Equations&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===2000===&lt;br /&gt;
* Session at the [https://archive.siam.org/meetings/cse00/ First SIAM Conference on Computational Science and Engineering] September 21st - 24th, 2000; Washington D.C. (USA)&lt;br /&gt;
** &amp;quot;[https://archive.siam.org/meetings/cse00/cp25.htm CP25 - Model Reduction, Validation and Data Assimilation]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===1999===&lt;br /&gt;
* Minisymposia at the [http://iciam.org/event/iciam-1999-%E2%80%93-edinburgh 4th International Council for Industrial and Applied Mathematics Congress] July 5th - 9th, 1999; Edinburgh (Scotland)&lt;br /&gt;
** &amp;quot;[http://www.macs.hw.ac.uk/archive/iciam99/PrintedProgramme/BookOfAbstracts.pdf#page=171 MSP-187 Reduced-Order Modeling of Large-Scale Systems and Applications in Industry]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.macs.hw.ac.uk/archive/iciam99/PrintedProgramme/BookOfAbstracts.pdf#page=187 MSP-205,206 Methods of Dimension Reduction]&amp;quot;&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=FEniCS_Rail&amp;diff=3949</id>
		<title>FEniCS Rail</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=FEniCS_Rail&amp;diff=3949"/>
		<updated>2025-05-09T08:16:06Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{preliminary}} &amp;lt;!-- Do not remove --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:benchmark]]&lt;br /&gt;
[[Category:time invariant]]&lt;br /&gt;
[[Category:MIMO]]&lt;br /&gt;
[[Category:Sparse]]&lt;br /&gt;
&lt;br /&gt;
{{Infobox&lt;br /&gt;
|Title           = FEniCS Rail&lt;br /&gt;
|Benchmark ID    =&lt;br /&gt;
* fenicsRail_n371m7q6&lt;br /&gt;
* fenicsRail_n1357m7q6&lt;br /&gt;
* fenicsRail_n5177m7q6&lt;br /&gt;
* fenicsRail_n20209m7q6&lt;br /&gt;
* fenicsRail_n79841m7q6&lt;br /&gt;
* fenicsRail_n317377m7q6&lt;br /&gt;
* fenicsRail_n1265537m7q6&lt;br /&gt;
|Category        = MOR Wiki&lt;br /&gt;
|System-Class    = LTI-FOS&lt;br /&gt;
|nstates         =&lt;br /&gt;
* 371 &lt;br /&gt;
* 1357&lt;br /&gt;
* 5177&lt;br /&gt;
* 20209&lt;br /&gt;
* 79841&lt;br /&gt;
* 317377&lt;br /&gt;
* 1265537&lt;br /&gt;
|ninputs         = 7&lt;br /&gt;
|noutputs        = 6&lt;br /&gt;
|nparameters     = 0&lt;br /&gt;
|components      = A, B, C, E&lt;br /&gt;
|License         = CC-BY-4.0&lt;br /&gt;
|Creator         =&lt;br /&gt;
* [[User:Saak]]&lt;br /&gt;
* Maximilian Behr&lt;br /&gt;
|Editor          = [[User:Saak]]&lt;br /&gt;
|Zenodo-link     = https://zenodo.org/record/5113560 Zenodo&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Steel Profile|Oberwolfach Rail]] Reimplementation in FEniCS.&lt;br /&gt;
&lt;br /&gt;
See the [https://gitlab.mpi-magdeburg.mpg.de/models/fenicsrail Gitlab] or [https://zenodo.org/record/5113560 Zenodo] links for the data.&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=FEniCS_Rail&amp;diff=3948</id>
		<title>FEniCS Rail</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=FEniCS_Rail&amp;diff=3948"/>
		<updated>2025-05-09T08:13:51Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{preliminary}} &amp;lt;!-- Do not remove --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:benchmark]]&lt;br /&gt;
[[Category:time invariant]]&lt;br /&gt;
[[Category:MIMO]]&lt;br /&gt;
[[Category:Sparse]]&lt;br /&gt;
&lt;br /&gt;
{{Infobox&lt;br /&gt;
|Title           = FEniCS Rail&lt;br /&gt;
|Benchmark ID    =&lt;br /&gt;
* fenicsRail_n371m7q6&lt;br /&gt;
* fenicsRail_n1357m7q6&lt;br /&gt;
* fenicsRail_n5177m7q6&lt;br /&gt;
* fenicsRail_n20209m7q6&lt;br /&gt;
* fenicsRail_n79841m7q6&lt;br /&gt;
* fenicsRail_n317377m7q6&lt;br /&gt;
* fenicsRail_n1265537m7q6&lt;br /&gt;
|Category        =&lt;br /&gt;
|System-Class    = LTI-FOS&lt;br /&gt;
|nstates         =&lt;br /&gt;
* 371 &lt;br /&gt;
* 1357&lt;br /&gt;
* 5177&lt;br /&gt;
* 20209&lt;br /&gt;
* 79841&lt;br /&gt;
* 317377&lt;br /&gt;
* 1265537&lt;br /&gt;
|ninputs         = 7&lt;br /&gt;
|noutputs        = 6&lt;br /&gt;
|nparameters     = 0&lt;br /&gt;
|components      = A, B, C, E&lt;br /&gt;
|License         = CC-BY-4.0&lt;br /&gt;
|Creator         =&lt;br /&gt;
* [[User:Saak]]&lt;br /&gt;
* Maximilian Behr&lt;br /&gt;
|Editor          = [[User:Saak]]&lt;br /&gt;
|Zenodo-link     = https://zenodo.org/record/5113560 Zenodo&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Steel Profile|Oberwolfach Rail]] Reimplementation in FEniCS.&lt;br /&gt;
&lt;br /&gt;
See the [https://gitlab.mpi-magdeburg.mpg.de/models/fenicsrail Gitlab] or [https://zenodo.org/record/5113560 Zenodo] links for the data.&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=Comparison_of_Software&amp;diff=3946</id>
		<title>Comparison of Software</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=Comparison_of_Software&amp;diff=3946"/>
		<updated>2025-01-08T16:36:48Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:software]]&lt;br /&gt;
&lt;br /&gt;
The following table provides a &#039;&#039;&#039;Comparison of Software&#039;&#039;&#039; for the model reduction software projects listed in the MORwiki.&lt;br /&gt;
For more information on MOR software (especially packages listed in the MORwiki), see &amp;lt;ref name=&amp;quot;haasdonk21&amp;quot;/&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; style=&amp;quot;text-align: center; width: auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Linear&lt;br /&gt;
! Nonlinear&lt;br /&gt;
! First Order&lt;br /&gt;
! Second Order&lt;br /&gt;
! Parametric&lt;br /&gt;
! DAE&lt;br /&gt;
! Dense&lt;br /&gt;
! Sparse&lt;br /&gt;
!&lt;br /&gt;
! Latest Version&lt;br /&gt;
! License&lt;br /&gt;
! Language&lt;br /&gt;
|-&lt;br /&gt;
! [[DPA|DPA]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[Emgr|emgr]]&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
|&lt;br /&gt;
| 5.99 (04.2022)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[EZyRB|EZyRB]]&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|&lt;br /&gt;
| 1.1 (10.2020)&lt;br /&gt;
| [https://spdx.org/licenses/MIT.html MIT]&lt;br /&gt;
| Python&lt;br /&gt;
|-&lt;br /&gt;
! [[ITHACA-FV]]&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 2.1 (02.2019)&lt;br /&gt;
| [https://spdx.org/licenses/LGPL-3.0.html LGPL-3.0]&lt;br /&gt;
| C++&lt;br /&gt;
|-&lt;br /&gt;
! [[ITHACA-SEM]]&lt;br /&gt;
| (Yes)&lt;br /&gt;
| (Yes)&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| (02.2019)&lt;br /&gt;
| [https://spdx.org/licenses/MIT.html MIT]&lt;br /&gt;
| C++&lt;br /&gt;
|-&lt;br /&gt;
! [[MESS]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 2.2 (Matlab),&amp;lt;br /&amp;gt; 1.0 (C, Python, Julia)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause] (Matlab). &amp;lt;br /&amp;gt; [https://spdx.org/licenses/GPL-2.0.html GPL-2.0] (C, Python, Julia)&lt;br /&gt;
| C, Matlab, Python, Julia&lt;br /&gt;
|-&lt;br /&gt;
! [[MOR Toolbox]]&lt;br /&gt;
| Yes&lt;br /&gt;
| (on-going)&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 1.1 (Dec. 2020)&lt;br /&gt;
| [http://mordigitalsystems.fr/en/ MOR Digital Systems]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[MOREMBS]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| C++, Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[MORLAB]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
|&lt;br /&gt;
| 5.0 (08.2019)&lt;br /&gt;
| [https://spdx.org/licenses/AGPL-3.0.html AGPL-3.0]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[MORPACK]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| v3.0.099 (07.2015)&lt;br /&gt;
| ?&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [https://www.mw.tum.de/rt/forschung/modellordnungsreduktion/software/psssmor/ psssMOR]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| (No)&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 1.00 (09.2017)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[PyDMD|PyDMD]]&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|&lt;br /&gt;
| 0.3 (07.2020)&lt;br /&gt;
| [https://spdx.org/licenses/MIT.html MIT]&lt;br /&gt;
| Python&lt;br /&gt;
|-&lt;br /&gt;
! [[PyMOR|pyMOR]]&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| (No)&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 2024.2.0 (12.2024)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause]&lt;br /&gt;
| Python&lt;br /&gt;
|-&lt;br /&gt;
! [[sssMOR]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| (No)&lt;br /&gt;
| (Yes)&lt;br /&gt;
| (No)&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 2.00 (09.2017)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[RBmatlab]]&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 1.16.09 (09.2016)&lt;br /&gt;
| [https://spdx.org/licenses/AFL-3.0.html AFL-3.0]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[RBniCS]]&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 0.1.0 (06.2019)&lt;br /&gt;
| [https://spdx.org/licenses/LGPL-3.0.html LGPL-3.0]&lt;br /&gt;
| Python&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
See also: [[Further Software]]&lt;br /&gt;
&lt;br /&gt;
References:&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;haasdonk21&amp;quot;&amp;gt;B. Haasdonk &amp;quot;&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1515/9783110499001-013 MOR Software]&amp;lt;/span&amp;gt;&amp;quot;, Model Order Reduction, Volume 3: Applications: 431--460, 2021.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=MediaWiki:Common.css&amp;diff=3945</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=MediaWiki:Common.css&amp;diff=3945"/>
		<updated>2024-10-02T11:26:51Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
/* Definition of Prime-Color-colors. To change colors, simply update&lt;br /&gt;
the color codes. */&lt;br /&gt;
:root {&lt;br /&gt;
  --prime-color: #bfd7ea;&lt;br /&gt;
  --prime-color-light: #dbe8f3;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* the following applies the prime-color to the body&#039;s background */&lt;br /&gt;
&lt;br /&gt;
body { &lt;br /&gt;
background:var(--prime-color); &lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* the following applies the monospace font to verbatime and code boxes */&lt;br /&gt;
&lt;br /&gt;
body pre {&lt;br /&gt;
    font-family: monospace, monospace;&lt;br /&gt;
    line-height: 1.2em;&lt;br /&gt;
}&lt;br /&gt;
pre {&lt;br /&gt;
    font-family: monospace;&lt;br /&gt;
    line-height: 1.2em;&lt;br /&gt;
}&lt;br /&gt;
/* All classes from here to the next comment below, style the Infoxbox */&lt;br /&gt;
&lt;br /&gt;
.Infobox {&lt;br /&gt;
    padding: 0px;&lt;br /&gt;
    clear: right;&lt;br /&gt;
    float: right;&lt;br /&gt;
    font-weight: inherit;&lt;br /&gt;
    margin: 0 0 1em 1em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.Infobox-title {&lt;br /&gt;
    background: var(--prime-color);&lt;br /&gt;
    padding: .3em;&lt;br /&gt;
    font-size: 120%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-parser-output .Infobox {&lt;br /&gt;
    width: 23em;&lt;br /&gt;
    line-height: 135%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-parser-output .Infobox td:not([colspan]) ul {&lt;br /&gt;
    list-style: none none;&lt;br /&gt;
    margin: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.Infobox &amp;gt; tr &amp;gt; th, .Infobox &amp;gt; tr &amp;gt; td, .Infobox &amp;gt; * &amp;gt; tr &amp;gt; th, .Infobox &amp;gt; * &amp;gt; tr &amp;gt; td {&lt;br /&gt;
    border: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.Infobox td:nth-child(1) {&lt;br /&gt;
    background: var(--prime-color-light);&lt;br /&gt;
    width: 7em;&lt;br /&gt;
    vertical-align: top;&lt;br /&gt;
    text-align: left;  &lt;br /&gt;
    padding-top: 0.5rem;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
 body .Infobox &amp;gt; tr &amp;gt; th, body .Infobox &amp;gt; tr &amp;gt; td, body .Infobox &amp;gt; * &amp;gt; tr &amp;gt; th {&lt;br /&gt;
    background-color: #eaecf0;&lt;br /&gt;
    text-align: center;&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.mw-content-ltr ul, .mw-content-rtl .mw-content-ltr ul {&lt;br /&gt;
    list-style: none none;&lt;br /&gt;
    margin: 0.3em;&lt;br /&gt;
    padding: 0;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
/* The following adapts the h2 headings of the skins &amp;quot;Vector&amp;quot; and &amp;quot;Cosmos&amp;quot; */&lt;br /&gt;
&lt;br /&gt;
.vector-body h2 {&lt;br /&gt;
    margin-top: 1em;&lt;br /&gt;
    font-size: 1.5em;&lt;br /&gt;
    padding: 0.1em;&lt;br /&gt;
    background: var(--prime-color);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-body-content h2 {&lt;br /&gt;
    padding: 0.1em;&lt;br /&gt;
    background: var(--prime-color);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-body h2 {&lt;br /&gt;
    padding: 0.1em;&lt;br /&gt;
    background: var(--prime-color);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
h2#mw-toc-heading {&lt;br /&gt;
    background: none;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=MediaWiki:Common.css&amp;diff=3944</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=MediaWiki:Common.css&amp;diff=3944"/>
		<updated>2024-10-02T11:25:48Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
/* Definition of Prime-Color-colors. To change colors, simply update&lt;br /&gt;
the color codes. */&lt;br /&gt;
:root {&lt;br /&gt;
  --prime-color: #bfd7ea;&lt;br /&gt;
  --prime-color-light: #dbe8f3;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* the following applies the prime-color to the body&#039;s background */&lt;br /&gt;
&lt;br /&gt;
body { &lt;br /&gt;
background:var(--prime-color); &lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* the following applies the monospace font to verbatime and code boxes */&lt;br /&gt;
&lt;br /&gt;
body pre {&lt;br /&gt;
    font-family: monospace, monospace;&lt;br /&gt;
    line-height: 1.2em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-highlight {&lt;br /&gt;
    font-family: monospace;&lt;br /&gt;
    line-height: 1.2em;&lt;br /&gt;
}&lt;br /&gt;
/* All classes from here to the next comment below, style the Infoxbox */&lt;br /&gt;
&lt;br /&gt;
.Infobox {&lt;br /&gt;
    padding: 0px;&lt;br /&gt;
    clear: right;&lt;br /&gt;
    float: right;&lt;br /&gt;
    font-weight: inherit;&lt;br /&gt;
    margin: 0 0 1em 1em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.Infobox-title {&lt;br /&gt;
    background: var(--prime-color);&lt;br /&gt;
    padding: .3em;&lt;br /&gt;
    font-size: 120%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-parser-output .Infobox {&lt;br /&gt;
    width: 23em;&lt;br /&gt;
    line-height: 135%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-parser-output .Infobox td:not([colspan]) ul {&lt;br /&gt;
    list-style: none none;&lt;br /&gt;
    margin: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.Infobox &amp;gt; tr &amp;gt; th, .Infobox &amp;gt; tr &amp;gt; td, .Infobox &amp;gt; * &amp;gt; tr &amp;gt; th, .Infobox &amp;gt; * &amp;gt; tr &amp;gt; td {&lt;br /&gt;
    border: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.Infobox td:nth-child(1) {&lt;br /&gt;
    background: var(--prime-color-light);&lt;br /&gt;
    width: 7em;&lt;br /&gt;
    vertical-align: top;&lt;br /&gt;
    text-align: left;  &lt;br /&gt;
    padding-top: 0.5rem;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
 body .Infobox &amp;gt; tr &amp;gt; th, body .Infobox &amp;gt; tr &amp;gt; td, body .Infobox &amp;gt; * &amp;gt; tr &amp;gt; th {&lt;br /&gt;
    background-color: #eaecf0;&lt;br /&gt;
    text-align: center;&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.mw-content-ltr ul, .mw-content-rtl .mw-content-ltr ul {&lt;br /&gt;
    list-style: none none;&lt;br /&gt;
    margin: 0.3em;&lt;br /&gt;
    padding: 0;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
/* The following adapts the h2 headings of the skins &amp;quot;Vector&amp;quot; and &amp;quot;Cosmos&amp;quot; */&lt;br /&gt;
&lt;br /&gt;
.vector-body h2 {&lt;br /&gt;
    margin-top: 1em;&lt;br /&gt;
    font-size: 1.5em;&lt;br /&gt;
    padding: 0.1em;&lt;br /&gt;
    background: var(--prime-color);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-body-content h2 {&lt;br /&gt;
    padding: 0.1em;&lt;br /&gt;
    background: var(--prime-color);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-body h2 {&lt;br /&gt;
    padding: 0.1em;&lt;br /&gt;
    background: var(--prime-color);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
h2#mw-toc-heading {&lt;br /&gt;
    background: none;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=MediaWiki:Common.css&amp;diff=3943</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=MediaWiki:Common.css&amp;diff=3943"/>
		<updated>2024-10-02T11:24:17Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
/* Definition of Prime-Color-colors. To change colors, simply update&lt;br /&gt;
the color codes. */&lt;br /&gt;
:root {&lt;br /&gt;
  --prime-color: #bfd7ea;&lt;br /&gt;
  --prime-color-light: #dbe8f3;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* the following applies the prime-color to the body&#039;s background */&lt;br /&gt;
&lt;br /&gt;
body { &lt;br /&gt;
background:var(--prime-color); &lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* the following applies the monospace font to verbatime and code boxes */&lt;br /&gt;
&lt;br /&gt;
body pre {&lt;br /&gt;
    font-family: monospace, monospace;&lt;br /&gt;
    line-height: 1.2em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
div.mw-highlight {&lt;br /&gt;
    background-color: inherit;&lt;br /&gt;
    font-family: monospace;&lt;br /&gt;
    line-height: 1.2em;&lt;br /&gt;
}&lt;br /&gt;
/* All classes from here to the next comment below, style the Infoxbox */&lt;br /&gt;
&lt;br /&gt;
.Infobox {&lt;br /&gt;
    padding: 0px;&lt;br /&gt;
    clear: right;&lt;br /&gt;
    float: right;&lt;br /&gt;
    font-weight: inherit;&lt;br /&gt;
    margin: 0 0 1em 1em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.Infobox-title {&lt;br /&gt;
    background: var(--prime-color);&lt;br /&gt;
    padding: .3em;&lt;br /&gt;
    font-size: 120%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-parser-output .Infobox {&lt;br /&gt;
    width: 23em;&lt;br /&gt;
    line-height: 135%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-parser-output .Infobox td:not([colspan]) ul {&lt;br /&gt;
    list-style: none none;&lt;br /&gt;
    margin: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.Infobox &amp;gt; tr &amp;gt; th, .Infobox &amp;gt; tr &amp;gt; td, .Infobox &amp;gt; * &amp;gt; tr &amp;gt; th, .Infobox &amp;gt; * &amp;gt; tr &amp;gt; td {&lt;br /&gt;
    border: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.Infobox td:nth-child(1) {&lt;br /&gt;
    background: var(--prime-color-light);&lt;br /&gt;
    width: 7em;&lt;br /&gt;
    vertical-align: top;&lt;br /&gt;
    text-align: left;  &lt;br /&gt;
    padding-top: 0.5rem;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
 body .Infobox &amp;gt; tr &amp;gt; th, body .Infobox &amp;gt; tr &amp;gt; td, body .Infobox &amp;gt; * &amp;gt; tr &amp;gt; th {&lt;br /&gt;
    background-color: #eaecf0;&lt;br /&gt;
    text-align: center;&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.mw-content-ltr ul, .mw-content-rtl .mw-content-ltr ul {&lt;br /&gt;
    list-style: none none;&lt;br /&gt;
    margin: 0.3em;&lt;br /&gt;
    padding: 0;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
/* The following adapts the h2 headings of the skins &amp;quot;Vector&amp;quot; and &amp;quot;Cosmos&amp;quot; */&lt;br /&gt;
&lt;br /&gt;
.vector-body h2 {&lt;br /&gt;
    margin-top: 1em;&lt;br /&gt;
    font-size: 1.5em;&lt;br /&gt;
    padding: 0.1em;&lt;br /&gt;
    background: var(--prime-color);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-body-content h2 {&lt;br /&gt;
    padding: 0.1em;&lt;br /&gt;
    background: var(--prime-color);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-body h2 {&lt;br /&gt;
    padding: 0.1em;&lt;br /&gt;
    background: var(--prime-color);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
h2#mw-toc-heading {&lt;br /&gt;
    background: none;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=MediaWiki:Common.css&amp;diff=3942</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=MediaWiki:Common.css&amp;diff=3942"/>
		<updated>2024-10-02T10:54:48Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
/* Definition of Prime-Color-colors. To change colors, simply update&lt;br /&gt;
the color codes. */&lt;br /&gt;
:root {&lt;br /&gt;
  --prime-color: #bfd7ea;&lt;br /&gt;
  --prime-color-light: #dbe8f3;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* the following applies the prime-color to the body&#039;s background */&lt;br /&gt;
&lt;br /&gt;
body { &lt;br /&gt;
background:var(--prime-color); &lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* the following applies the monospace font to verbatime and code boxes */&lt;br /&gt;
&lt;br /&gt;
body pre {&lt;br /&gt;
    font-family: monospace, monospace;&lt;br /&gt;
    line-height: 1.2em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-highlight pre {&lt;br /&gt;
    font-family: monospace;&lt;br /&gt;
    line-height: 1.2em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* All classes from here to the next comment below, style the Infoxbox */&lt;br /&gt;
&lt;br /&gt;
.Infobox {&lt;br /&gt;
    padding: 0px;&lt;br /&gt;
    clear: right;&lt;br /&gt;
    float: right;&lt;br /&gt;
    font-weight: inherit;&lt;br /&gt;
    margin: 0 0 1em 1em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.Infobox-title {&lt;br /&gt;
    background: var(--prime-color);&lt;br /&gt;
    padding: .3em;&lt;br /&gt;
    font-size: 120%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-parser-output .Infobox {&lt;br /&gt;
    width: 23em;&lt;br /&gt;
    line-height: 135%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-parser-output .Infobox td:not([colspan]) ul {&lt;br /&gt;
    list-style: none none;&lt;br /&gt;
    margin: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.Infobox &amp;gt; tr &amp;gt; th, .Infobox &amp;gt; tr &amp;gt; td, .Infobox &amp;gt; * &amp;gt; tr &amp;gt; th, .Infobox &amp;gt; * &amp;gt; tr &amp;gt; td {&lt;br /&gt;
    border: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.Infobox td:nth-child(1) {&lt;br /&gt;
    background: var(--prime-color-light);&lt;br /&gt;
    width: 7em;&lt;br /&gt;
    vertical-align: top;&lt;br /&gt;
    text-align: left;  &lt;br /&gt;
    padding-top: 0.5rem;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
 body .Infobox &amp;gt; tr &amp;gt; th, body .Infobox &amp;gt; tr &amp;gt; td, body .Infobox &amp;gt; * &amp;gt; tr &amp;gt; th {&lt;br /&gt;
    background-color: #eaecf0;&lt;br /&gt;
    text-align: center;&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.mw-content-ltr ul, .mw-content-rtl .mw-content-ltr ul {&lt;br /&gt;
    list-style: none none;&lt;br /&gt;
    margin: 0.3em;&lt;br /&gt;
    padding: 0;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
/* The following adapts the h2 headings of the skins &amp;quot;Vector&amp;quot; and &amp;quot;Cosmos&amp;quot; */&lt;br /&gt;
&lt;br /&gt;
.vector-body h2 {&lt;br /&gt;
    margin-top: 1em;&lt;br /&gt;
    font-size: 1.5em;&lt;br /&gt;
    padding: 0.1em;&lt;br /&gt;
    background: var(--prime-color);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-body-content h2 {&lt;br /&gt;
    padding: 0.1em;&lt;br /&gt;
    background: var(--prime-color);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-body h2 {&lt;br /&gt;
    padding: 0.1em;&lt;br /&gt;
    background: var(--prime-color);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
h2#mw-toc-heading {&lt;br /&gt;
    background: none;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=MediaWiki:Common.css&amp;diff=3941</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=MediaWiki:Common.css&amp;diff=3941"/>
		<updated>2024-10-02T09:48:07Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
/* Definition of Prime-Color-colors. To change colors, simply update&lt;br /&gt;
the color codes. */&lt;br /&gt;
:root {&lt;br /&gt;
  --prime-color: #bfd7ea;&lt;br /&gt;
  --prime-color-light: #dbe8f3;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* the following applies the prime-color to the body&#039;s background */&lt;br /&gt;
&lt;br /&gt;
body { &lt;br /&gt;
background:var(--prime-color); &lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
body pre {&lt;br /&gt;
font-family: monospace, monospace;&lt;br /&gt;
line-height: 1.2em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* All classes from here to the next comment below, style the Infoxbox */&lt;br /&gt;
&lt;br /&gt;
.Infobox {&lt;br /&gt;
	padding: 0px;&lt;br /&gt;
    clear: right;&lt;br /&gt;
    float: right;&lt;br /&gt;
    font-weight: inherit;&lt;br /&gt;
    margin: 0 0 1em 1em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.Infobox-title {&lt;br /&gt;
    background: var(--prime-color);&lt;br /&gt;
    padding: .3em;&lt;br /&gt;
    font-size: 120%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-parser-output .Infobox {&lt;br /&gt;
    width: 23em;&lt;br /&gt;
    line-height: 135%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-parser-output .Infobox td:not([colspan]) ul {&lt;br /&gt;
    list-style: none none;&lt;br /&gt;
    margin: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.Infobox &amp;gt; tr &amp;gt; th, .Infobox &amp;gt; tr &amp;gt; td, .Infobox &amp;gt; * &amp;gt; tr &amp;gt; th, .Infobox &amp;gt; * &amp;gt; tr &amp;gt; td {&lt;br /&gt;
    border: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.Infobox td:nth-child(1) {&lt;br /&gt;
    background: var(--prime-color-light);&lt;br /&gt;
    width: 7em;&lt;br /&gt;
    vertical-align: top;&lt;br /&gt;
    text-align: left;  &lt;br /&gt;
    padding-top: 0.5rem;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
 body .Infobox &amp;gt; tr &amp;gt; th, body .Infobox &amp;gt; tr &amp;gt; td, body .Infobox &amp;gt; * &amp;gt; tr &amp;gt; th {&lt;br /&gt;
    background-color: #eaecf0;&lt;br /&gt;
    text-align: center;&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.mw-content-ltr ul, .mw-content-rtl .mw-content-ltr ul {&lt;br /&gt;
    list-style: none none;&lt;br /&gt;
    margin: 0.3em;&lt;br /&gt;
    padding: 0;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
/* The following adapts the h2 headings of the skins &amp;quot;Vector&amp;quot; and &amp;quot;Cosmos&amp;quot; */&lt;br /&gt;
&lt;br /&gt;
.vector-body h2 {&lt;br /&gt;
    margin-top: 1em;&lt;br /&gt;
    font-size: 1.5em;&lt;br /&gt;
    padding: 0.1em;&lt;br /&gt;
    background: var(--prime-color);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-body-content h2 {&lt;br /&gt;
    padding: 0.1em;&lt;br /&gt;
    background: var(--prime-color);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-body h2 {&lt;br /&gt;
    padding: 0.1em;&lt;br /&gt;
    background: var(--prime-color);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
h2#mw-toc-heading {&lt;br /&gt;
    background: none;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=MediaWiki:Common.css&amp;diff=3940</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=MediaWiki:Common.css&amp;diff=3940"/>
		<updated>2024-10-01T16:45:20Z</updated>

		<summary type="html">&lt;p&gt;Saak: Undo revision 3939 by Saak (talk)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
/* Definition of Prime-Color-colors. To change colors, simply update&lt;br /&gt;
the color codes. */&lt;br /&gt;
:root {&lt;br /&gt;
  --prime-color: #bfd7ea;&lt;br /&gt;
  --prime-color-light: #dbe8f3;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* the following applies the prime-color to the body&#039;s background */&lt;br /&gt;
&lt;br /&gt;
body { &lt;br /&gt;
background:var(--prime-color); &lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
body pre {&lt;br /&gt;
font-family: monospace;&lt;br /&gt;
line-height: 1.2em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* All classes from here to the next comment below, style the Infoxbox */&lt;br /&gt;
&lt;br /&gt;
.Infobox {&lt;br /&gt;
	padding: 0px;&lt;br /&gt;
    clear: right;&lt;br /&gt;
    float: right;&lt;br /&gt;
    font-weight: inherit;&lt;br /&gt;
    margin: 0 0 1em 1em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.Infobox-title {&lt;br /&gt;
    background: var(--prime-color);&lt;br /&gt;
    padding: .3em;&lt;br /&gt;
    font-size: 120%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-parser-output .Infobox {&lt;br /&gt;
    width: 23em;&lt;br /&gt;
    line-height: 135%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-parser-output .Infobox td:not([colspan]) ul {&lt;br /&gt;
    list-style: none none;&lt;br /&gt;
    margin: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.Infobox &amp;gt; tr &amp;gt; th, .Infobox &amp;gt; tr &amp;gt; td, .Infobox &amp;gt; * &amp;gt; tr &amp;gt; th, .Infobox &amp;gt; * &amp;gt; tr &amp;gt; td {&lt;br /&gt;
    border: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.Infobox td:nth-child(1) {&lt;br /&gt;
    background: var(--prime-color-light);&lt;br /&gt;
    width: 7em;&lt;br /&gt;
    vertical-align: top;&lt;br /&gt;
    text-align: left;  &lt;br /&gt;
    padding-top: 0.5rem;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
 body .Infobox &amp;gt; tr &amp;gt; th, body .Infobox &amp;gt; tr &amp;gt; td, body .Infobox &amp;gt; * &amp;gt; tr &amp;gt; th {&lt;br /&gt;
    background-color: #eaecf0;&lt;br /&gt;
    text-align: center;&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.mw-content-ltr ul, .mw-content-rtl .mw-content-ltr ul {&lt;br /&gt;
    list-style: none none;&lt;br /&gt;
    margin: 0.3em;&lt;br /&gt;
    padding: 0;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
/* The following adapts the h2 headings of the skins &amp;quot;Vector&amp;quot; and &amp;quot;Cosmos&amp;quot; */&lt;br /&gt;
&lt;br /&gt;
.vector-body h2 {&lt;br /&gt;
    margin-top: 1em;&lt;br /&gt;
    font-size: 1.5em;&lt;br /&gt;
    padding: 0.1em;&lt;br /&gt;
    background: var(--prime-color);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-body-content h2 {&lt;br /&gt;
    padding: 0.1em;&lt;br /&gt;
    background: var(--prime-color);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-body h2 {&lt;br /&gt;
    padding: 0.1em;&lt;br /&gt;
    background: var(--prime-color);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
h2#mw-toc-heading {&lt;br /&gt;
    background: none;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=MediaWiki:Common.css&amp;diff=3939</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=MediaWiki:Common.css&amp;diff=3939"/>
		<updated>2024-10-01T16:44:04Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
/* Definition of Prime-Color-colors. To change colors, simply update&lt;br /&gt;
the color codes. */&lt;br /&gt;
:root {&lt;br /&gt;
  --prime-color: #bfd7ea;&lt;br /&gt;
  --prime-color-light: #dbe8f3;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* the following applies the prime-color to the body&#039;s background */&lt;br /&gt;
&lt;br /&gt;
body { &lt;br /&gt;
background:var(--prime-color); &lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.pre {&lt;br /&gt;
font-family: monospace;&lt;br /&gt;
line-height: 1.2em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* All classes from here to the next comment below, style the Infoxbox */&lt;br /&gt;
&lt;br /&gt;
.Infobox {&lt;br /&gt;
	padding: 0px;&lt;br /&gt;
    clear: right;&lt;br /&gt;
    float: right;&lt;br /&gt;
    font-weight: inherit;&lt;br /&gt;
    margin: 0 0 1em 1em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.Infobox-title {&lt;br /&gt;
    background: var(--prime-color);&lt;br /&gt;
    padding: .3em;&lt;br /&gt;
    font-size: 120%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-parser-output .Infobox {&lt;br /&gt;
    width: 23em;&lt;br /&gt;
    line-height: 135%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-parser-output .Infobox td:not([colspan]) ul {&lt;br /&gt;
    list-style: none none;&lt;br /&gt;
    margin: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.Infobox &amp;gt; tr &amp;gt; th, .Infobox &amp;gt; tr &amp;gt; td, .Infobox &amp;gt; * &amp;gt; tr &amp;gt; th, .Infobox &amp;gt; * &amp;gt; tr &amp;gt; td {&lt;br /&gt;
    border: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.Infobox td:nth-child(1) {&lt;br /&gt;
    background: var(--prime-color-light);&lt;br /&gt;
    width: 7em;&lt;br /&gt;
    vertical-align: top;&lt;br /&gt;
    text-align: left;  &lt;br /&gt;
    padding-top: 0.5rem;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
 body .Infobox &amp;gt; tr &amp;gt; th, body .Infobox &amp;gt; tr &amp;gt; td, body .Infobox &amp;gt; * &amp;gt; tr &amp;gt; th {&lt;br /&gt;
    background-color: #eaecf0;&lt;br /&gt;
    text-align: center;&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.mw-content-ltr ul, .mw-content-rtl .mw-content-ltr ul {&lt;br /&gt;
    list-style: none none;&lt;br /&gt;
    margin: 0.3em;&lt;br /&gt;
    padding: 0;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
/* The following adapts the h2 headings of the skins &amp;quot;Vector&amp;quot; and &amp;quot;Cosmos&amp;quot; */&lt;br /&gt;
&lt;br /&gt;
.vector-body h2 {&lt;br /&gt;
    margin-top: 1em;&lt;br /&gt;
    font-size: 1.5em;&lt;br /&gt;
    padding: 0.1em;&lt;br /&gt;
    background: var(--prime-color);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-body-content h2 {&lt;br /&gt;
    padding: 0.1em;&lt;br /&gt;
    background: var(--prime-color);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-body h2 {&lt;br /&gt;
    padding: 0.1em;&lt;br /&gt;
    background: var(--prime-color);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
h2#mw-toc-heading {&lt;br /&gt;
    background: none;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=Further_Software&amp;diff=3938</id>
		<title>Further Software</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=Further_Software&amp;diff=3938"/>
		<updated>2024-09-14T09:33:07Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Software]]&lt;br /&gt;
&lt;br /&gt;
Besides the projects in [[:Category:Software|Software]] category, the following model reduction software packages exist:&lt;br /&gt;
&lt;br /&gt;
==Other Model Reduction Software==&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/urban-fasel/FlexWingROM/ FlexWing-ROM] (MATLAB)&lt;br /&gt;
* [http://git.io/hapod hapod] - Hierarchical Approximate Proper Orthogonal Decomposition (MATLAB/OCTAVE)&lt;br /&gt;
* [http://www.morepas.org/software/kermor/ KerMor] - Kernel Methods for Model Order Reduction (MATLAB)&lt;br /&gt;
* [https://www.librom.net libROM] - Library for Reduced Order Models (C++)&lt;br /&gt;
* [https://mordigitalsystems.fr MOR toolbox] - Model reduction toolbox for MATLAB&lt;br /&gt;
* [https://modred.readthedocs.io modred] - A Parallelized Model Reduction Library (Python)&lt;br /&gt;
* [https://gitlab.com/mor_dicus/mordicus Mordicus] - Reduced Order Modeling library (Python)&lt;br /&gt;
* [https://github.com/mpimd-csc/morgen morgen] - Model Order Reduction for Gas and Energy Networks (MATLAB)&lt;br /&gt;
* [https://github.com/MORLab/MORpH MORpH] - Model reduction of linear port-Hamiltonian systems (MATLAB)&lt;br /&gt;
* [http://homepages.rpi.edu/~hahnj/Model_Reduction/ Nonlinear Model Reduction Routines] (MATLAB)&lt;br /&gt;
* [https://github.com/cwentland0/perform PERFORM] - Prototyping Environment for Reacting Flow Order Reduction Methods (Python)&lt;br /&gt;
* [https://github.com/Pressio/pressio pressio] - Projection-based model reduction for nonlinear dynamical systems (C++)&lt;br /&gt;
* [https://www.mw.tum.de/rt/forschung/modellordnungsreduktion/software/psssmor/ psssMOR] - Parametric Sparse State-Space and Model Order Reduction Toolbox (MATLAB)&lt;br /&gt;
* [https://github.com/erdc/pynirom pyNIROM] - Non-Intrusive Reduced Order Modeling using Python&lt;br /&gt;
* [https://github.com/CurtinIC/pyROM pyROM] - Reduced Order Modelling Framework for Python&lt;br /&gt;
* [https://redbkit.github.io/redbKIT/ redbKIT] - a MATLAB(R) library for reduced-order modeling of parametrized PDEs&lt;br /&gt;
* [http://simplifytoolbox.tumblr.com/ SiMpLIfy] - Structured ModeL reductIon Toolbox for MATLAB&lt;br /&gt;
* [http://slicot.org/matlab-toolboxes/model-reduction SLICOT] - Model and Controller Reduction Toolbox (MATLAB)&lt;br /&gt;
* [https://github.com/Algopaul/SOBMOR SOBMIR] - Demo code for Structured optimization based model order reduction&lt;br /&gt;
* [https://doi.org/10.5281/zenodo.4600763 SOLBT] - Limited Balanced Truncation for Large-Scale Sparse Second-Order Systems (MATLAB)&lt;br /&gt;
* [https://doi.org/10.5281/zenodo.2553901 SOMDDPA] - Second-Order Modally-Damped Dominant Pole Algorithm (MATLAB)&lt;br /&gt;
* [http://sumo.intec.ugent.be/SUMO SUMO] - SUrrogate MOdeling (SUMO) Toolbox (MATLAB)&lt;br /&gt;
* [https://github.com/jeffrey-hokanson/sysmor SYSMOR] - System-Theoretic Model Order Reduction (Python)&lt;br /&gt;
* [https://github.com/tauruslibmor/taurus Taurus] - taurus library for model order reduction (C++)&lt;br /&gt;
* [http://berndnoack.com/xROM.php xROM] - a free Tool for Reduced-Order Modeling&lt;br /&gt;
&lt;br /&gt;
==Discontinued Model Reduction Software==&lt;br /&gt;
&lt;br /&gt;
*[http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.580.2500&amp;amp;rep=rep1&amp;amp;type=pdf A MATLAB Toolbox for Teaching Model Order Reduction Techniques]&lt;br /&gt;
* [https://doi.org/10.1109/37.24832 EXPRED] - Expert system for optimization of model reduction techniques (M1)&lt;br /&gt;
* [https://web.archive.org/web/20080920171815/http://www.imtek.uni-freiburg.de/simulation/mor4ansys/ mor4ansys] - Model Order Reduction for ANSYS (now [https://www.cadfem.de/produkte/cadfem-ansys-extensions/model-reduction-inside-ansys.html ANSYS extension])&lt;br /&gt;
* [https://web.archive.org/web/20080727002739/http://scowl.ge.uiuc.edu/~ssivakum/research.html MRedTool] - Model Reduction of Multi-dimensional and Uncertain systems (MATLAB)&lt;br /&gt;
* [http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.453.5492&amp;amp;rep=rep1&amp;amp;type=pdf NLMR] -  MATLAB toolbox for exploring projection-based nonlinear model reduction&lt;br /&gt;
* [https://doi.org/10.1109/ICICIC.2007.436 OPTIMRED] - A Software Application for Computation of Optimal Reduced Model (MATLAB)&lt;br /&gt;
* [https://web.archive.org/web/20130620070226/http://www3.uji.es/~quintana/plic/plicmr/ PLiCMR] - Parallel Library in Control: Model Reduction (integrated into PSLICOT)&lt;br /&gt;
* [https://web.archive.org/web/20151124062504/http://augustine.mit.edu:80/methodology/methodology_rbMIT_System.htm rbMIT] - reduced basis MIT (MATLAB)&lt;br /&gt;
* [https://www.robotic.de/94 RASP-MODRED] - Regelungstechnische Analyse und Synthese Programme Model Reduction (integrated into SLICOT)&lt;br /&gt;
* [https://web.archive.org/web/20151115030532/http://bnbond.com/software/smores/ SMORES] - A Matlab tool for Simulation and Model Order Reduction of Electrical Systems &lt;br /&gt;
* [https://web.archive.org/web/20130618203457/http://www3.uji.es/~quintana/plic/spared/index.html SpaRed] - A Parallel Library for Model Reduction (C)&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=Comparison_of_Software&amp;diff=3937</id>
		<title>Comparison of Software</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=Comparison_of_Software&amp;diff=3937"/>
		<updated>2024-09-14T09:27:34Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:software]]&lt;br /&gt;
&lt;br /&gt;
The following table provides a &#039;&#039;&#039;Comparison of Software&#039;&#039;&#039; for the model reduction software projects listed in the MORwiki.&lt;br /&gt;
For more information on MOR software (especially packages listed in the MORwiki), see &amp;lt;ref name=&amp;quot;haasdonk21&amp;quot;/&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; style=&amp;quot;text-align: center; width: auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Linear&lt;br /&gt;
! Nonlinear&lt;br /&gt;
! First Order&lt;br /&gt;
! Second Order&lt;br /&gt;
! Parametric&lt;br /&gt;
! DAE&lt;br /&gt;
! Dense&lt;br /&gt;
! Sparse&lt;br /&gt;
!&lt;br /&gt;
! Latest Version&lt;br /&gt;
! License&lt;br /&gt;
! Language&lt;br /&gt;
|-&lt;br /&gt;
! [[DPA|DPA]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[Emgr|emgr]]&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
|&lt;br /&gt;
| 5.99 (04.2022)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[EZyRB|EZyRB]]&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|&lt;br /&gt;
| 1.1 (10.2020)&lt;br /&gt;
| [https://spdx.org/licenses/MIT.html MIT]&lt;br /&gt;
| Python&lt;br /&gt;
|-&lt;br /&gt;
! [[ITHACA-FV]]&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 2.1 (02.2019)&lt;br /&gt;
| [https://spdx.org/licenses/LGPL-3.0.html LGPL-3.0]&lt;br /&gt;
| C++&lt;br /&gt;
|-&lt;br /&gt;
! [[ITHACA-SEM]]&lt;br /&gt;
| (Yes)&lt;br /&gt;
| (Yes)&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| (02.2019)&lt;br /&gt;
| [https://spdx.org/licenses/MIT.html MIT]&lt;br /&gt;
| C++&lt;br /&gt;
|-&lt;br /&gt;
! [[MESS]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 2.2 (Matlab),&amp;lt;br /&amp;gt; 1.0 (C, Python, Julia)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause] (Matlab). &amp;lt;br /&amp;gt; [https://spdx.org/licenses/GPL-2.0.html GPL-2.0] (C, Python, Julia)&lt;br /&gt;
| C, Matlab, Python, Julia&lt;br /&gt;
|-&lt;br /&gt;
! [[MOR Toolbox]]&lt;br /&gt;
| Yes&lt;br /&gt;
| (on-going)&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 1.1 (Dec. 2020)&lt;br /&gt;
| [http://mordigitalsystems.fr/en/ MOR Digital Systems]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[MOREMBS]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| C++, Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[MORLAB]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| (Yes)&lt;br /&gt;
|&lt;br /&gt;
| 5.0 (08.2019)&lt;br /&gt;
| [https://spdx.org/licenses/AGPL-3.0.html AGPL-3.0]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[MORPACK]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| v3.0.099 (07.2015)&lt;br /&gt;
| ?&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [https://www.mw.tum.de/rt/forschung/modellordnungsreduktion/software/psssmor/ psssMOR]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| (No)&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 1.00 (09.2017)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[PyDMD|PyDMD]]&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|&lt;br /&gt;
| 0.3 (07.2020)&lt;br /&gt;
| [https://spdx.org/licenses/MIT.html MIT]&lt;br /&gt;
| Python&lt;br /&gt;
|-&lt;br /&gt;
! [[PyMOR|pyMOR]]&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| (No)&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 2024.1.2 (08.2024)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause]&lt;br /&gt;
| Python&lt;br /&gt;
|-&lt;br /&gt;
! [[sssMOR]]&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| (No)&lt;br /&gt;
| (Yes)&lt;br /&gt;
| (No)&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 2.00 (09.2017)&lt;br /&gt;
| [https://spdx.org/licenses/BSD-2-Clause.html BSD-2-Clause]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[RBmatlab]]&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 1.16.09 (09.2016)&lt;br /&gt;
| [https://spdx.org/licenses/AFL-3.0.html AFL-3.0]&lt;br /&gt;
| Matlab&lt;br /&gt;
|-&lt;br /&gt;
! [[RBniCS]]&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| No&lt;br /&gt;
| Yes&lt;br /&gt;
| Yes&lt;br /&gt;
|&lt;br /&gt;
| 0.1.0 (06.2019)&lt;br /&gt;
| [https://spdx.org/licenses/LGPL-3.0.html LGPL-3.0]&lt;br /&gt;
| Python&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
See also: [[Further Software]]&lt;br /&gt;
&lt;br /&gt;
References:&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;haasdonk21&amp;quot;&amp;gt;B. Haasdonk &amp;quot;&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1515/9783110499001-013 MOR Software]&amp;lt;/span&amp;gt;&amp;quot;, Model Order Reduction, Volume 3: Applications: 431--460, 2021.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=PyMOR&amp;diff=3936</id>
		<title>PyMOR</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=PyMOR&amp;diff=3936"/>
		<updated>2024-09-14T09:26:08Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Software]]&lt;br /&gt;
[[Category:Python]]&lt;br /&gt;
&lt;br /&gt;
== Synopsis ==&lt;br /&gt;
&lt;br /&gt;
[https://pymor.org pyMOR] is a [https://opensource.org/licenses/BSD-2-Clause BSD-licensed] software library for building model order reduction applications in the [[:Wikipedia:Python_(programming_language)|Python programming language]].&lt;br /&gt;
All algorithms in &#039;&#039;&#039;pyMOR&#039;&#039;&#039; are formulated in terms of abstract interfaces, allowing generic implementations to work with different backends, from NumPy/SciPy to external partial differential equation solver packages.&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
&lt;br /&gt;
Currently, the following model reduction algorithms are provided by &#039;&#039;&#039;pyMOR&#039;&#039;&#039;:&lt;br /&gt;
* A generic reduction routine for projection of arbitrary high-dimensional discretizations onto reduced spaces, preserving (possibly nested) affine decompositions of operators and functionals for efficient offline/online decomposition.&lt;br /&gt;
* Efficient error estimation for linear affinely decomposed problems.&lt;br /&gt;
* Empirical interpolation of arbitrary operators (with efficient evaluation of projected interpolated operators if the operator supports restriction to selected degrees of freedom).&lt;br /&gt;
* Parallel adaptive greedy and POD algorithms for reduced space construction.&lt;br /&gt;
* Empirical-Interpolation-Greedy and DEIM algorithms for generation of interpolation data for empirical operator interpolation.&lt;br /&gt;
* Balanced-based and interpolation-based reduction methods for first-order, second-order, and port-Hamiltonian linear time-invariant systems.&lt;br /&gt;
* Model order reduction using artificial neural networks.&lt;br /&gt;
* Data-driven model order reduction with Dynamic Mode Decomposition, Loewner matrices, Eigensystem Realization, and parametric AAA.&lt;br /&gt;
* [[:Wikipedia:Gram_schmidt|Gram-Schmidt algorithm]] supporting re-orthogonalization for improved numerical accuracy.&lt;br /&gt;
* Time-stepping and Newton algorithms, as well as generic iterative linear solvers.&lt;br /&gt;
* Low-rank alternating direction implicit (LR ADI) method for large-scale Lyapunov equations and bindings for matric equations solvers in [https://www.slicot.org SLICOT] (via [https://github.com/python-control/Slycot slycot]) and [https://www.mpi-magdeburg.mpg.de/projects/mess Py-M.E.S.S].&lt;br /&gt;
* Eigenvalue/pole computation using the implicitly restarted Arnoldi method and the subspace accelerated dominant pole (SAMDP) algorithm.&lt;br /&gt;
* Modal truncation for linear time-invariant systems.&lt;br /&gt;
* Time-dependent parameters.&lt;br /&gt;
&lt;br /&gt;
All these algorithms are formulated in terms of abstract interfaces for seamless integration with external high-dimensional PDE solvers.&lt;br /&gt;
Bindings for the following PDE solver libraries are available:&lt;br /&gt;
* [https://www.dealii.org/ deal.II]&lt;br /&gt;
* [https://dune-project.org/ DUNE]&lt;br /&gt;
* [https://fenicsproject.org/ FEniCS]&lt;br /&gt;
* [https://fenicsproject.org/ FEniCSx] (in preparation, see feature branch)&lt;br /&gt;
* [https://sourceforge.net/projects/ngsolve/ NGSolve]&lt;br /&gt;
* [https://scikit-fem.readthedocs.io/ scikit-fem] (experimental)&lt;br /&gt;
&lt;br /&gt;
Pure Python implementations of discretizations using the [https://numpy.org NumPy]/[https://scipy.org SciPy] scientific computing stack are implemented to provide an easy-to-use sandbox for experimentation with new model reduction approaches. &#039;&#039;&#039;pyMOR&#039;&#039;&#039; offers:&lt;br /&gt;
* Structured 1D and 2D grids, as well as an experimental Gmsh-based grid, implementing the same abstract grid interface.&lt;br /&gt;
* [[:Wikipedia:Finite_element|Finite element]] and [[:Wikipedia:Finite_volume|finite volume]] operators based on this interface.&lt;br /&gt;
* SciPy/[http://crd-legacy.lbl.gov/~xiaoye/SuperLU SuperLU] based iterative and direct solvers for sparse systems.&lt;br /&gt;
* [[:Wikipedia:Opengl|OpenGL]], [https://matplotlib.org matplotlib], and [https://github.com/K3D-tools/K3D-jupyter k3d] based visualizations of solutions.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* M. Ohlberger, S. Rave, S. Schmidt, S. Zhang. &amp;quot;[https://doi.org/10.1007/978-3-319-05591-6_69 A Model Reduction Framework for Efficient Simulation of Li-Ion Batteries]&amp;quot;. Springer Proceedings in Mathematics &amp;amp; Statistics Vol. 78: Finite Volumes for Complex Applications VII-Elliptic, Parabolic and Hyperbolic Problems, Berlin, June 2014.&lt;br /&gt;
* R. Milk, S. Rave, F. Schindler. &amp;quot;[https://doi.org/10.1137/15M1026614 pyMOR - Generic Algorithms and Interfaces for Model Order Reduction]&amp;quot;. SIAM Journal on Scientific Computing 38(5): S194--S216, 2016.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* Official [https://pymor.org website],&lt;br /&gt;
* Development of &#039;&#039;&#039;pyMOR&#039;&#039;&#039; can be tracked on [https://github.com/pymor/pymor GitHub],&lt;br /&gt;
* Online [https://docs.pymor.org documentation].&lt;br /&gt;
&lt;br /&gt;
== Contact ==&lt;br /&gt;
For assistance with, and contributions to &#039;&#039;&#039;pyMOR&#039;&#039;&#039;, the developers can be contacted via [https://github.com/pymor/pymor/discussions GitHub discussions].&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=Convective_Thermal_Flow&amp;diff=3935</id>
		<title>Convective Thermal Flow</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=Convective_Thermal_Flow&amp;diff=3935"/>
		<updated>2024-09-10T15:31:14Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:benchmark]]&lt;br /&gt;
[[Category:Oberwolfach]]&lt;br /&gt;
[[Category:linear]]&lt;br /&gt;
[[Category:time invariant]]&lt;br /&gt;
[[Category:first differential order]]&lt;br /&gt;
[[Category:MIMO]]&lt;br /&gt;
[[Category:sparse]]&lt;br /&gt;
&lt;br /&gt;
{{Infobox&lt;br /&gt;
|Title           = Convective Thermal Flow&lt;br /&gt;
|Benchmark ID    = &lt;br /&gt;
* ctfChipCoolingv0_n20082m1q5&lt;br /&gt;
* ctfChipCoolingv01_n20082m1q5&lt;br /&gt;
* ctfFlowMeterv0_n9669m1q5&lt;br /&gt;
* ctfFlowMeterv05_n9669m1q5&lt;br /&gt;
|Category        = oberwolfach&lt;br /&gt;
|System-Class    = LTI-FOS&lt;br /&gt;
|nstates         = &lt;br /&gt;
* 20082&lt;br /&gt;
* 20082&lt;br /&gt;
* 9669&lt;br /&gt;
* 9669&lt;br /&gt;
|ninputs         = 1&lt;br /&gt;
|noutputs        = 5&lt;br /&gt;
|nparameters     = 0&lt;br /&gt;
|components      = A, B, C&lt;br /&gt;
|License         = NA&lt;br /&gt;
|Creator         = [[User:Himpe]]&lt;br /&gt;
|Editor          = &lt;br /&gt;
* [[User:Himpe]]&lt;br /&gt;
|Zenodo-link     = NA&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Description: Convective Thermal Flow Problems==&lt;br /&gt;
&amp;lt;figure id=&amp;quot;fig1&amp;quot;&amp;gt;[[File:Convection1.jpg|490px|thumb|right|Figure 1: Convective heat flow example: 2D anemometer model]]&amp;lt;/figure&amp;gt;&lt;br /&gt;
&amp;lt;figure id=&amp;quot;fig2&amp;quot;&amp;gt;[[File:Convection2.jpg|490px|thumb|right|Figure 2: Convective heat flow example: 3D cooling structure]]&amp;lt;/figure&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Many thermal problems require simulation of heat exchange between a solid body and a fluid flow.&lt;br /&gt;
The most elaborate approach to this problem is [[wikipedia:Computational_fluid_dynamics|computational fluid dynamics]] (CFD).&lt;br /&gt;
However, CFD is computationally expensive.&lt;br /&gt;
A popular solution is to exclude the flow completely from the computational domain and to use convection boundary conditions for the solid model.&lt;br /&gt;
However, caution has to be taken to select the [[wikipedia:Heat_transfer_coefficient|film coefficient]].&lt;br /&gt;
&lt;br /&gt;
An intermediate level is to include a flow region with a given velocity profile that adds convective transport to the model.&lt;br /&gt;
Compared to convection boundary conditions this approach has the advantage that the film coefficient does not need to be specified and that information about the heat profile in the flow can be obtained.&lt;br /&gt;
A drawback of the method is the greatly increased number of elements needed to perform a physically valid simulation because the solution accuracy when employing upwind finite element schemes depends on the element size.&lt;br /&gt;
While this problem still is linear, due to the forced convection, the conductivity matrix changes from a symmetric matrix to an un-symmetric one.&lt;br /&gt;
So this problem type can be used as a benchmark for problems containing un-symmetric matrices.&lt;br /&gt;
&lt;br /&gt;
Two different designs are tested: a 2D model of an [[Anemometer|anemometer]]-like structure mainly consisting of a tube and a small heat source (Fig.&amp;amp;nbsp;1) &amp;lt;ref name=&amp;quot;ernst2001&amp;quot;/&amp;gt;.&lt;br /&gt;
The solid model has been generated and meshed in [http://www.ansys.com ANSYS].&lt;br /&gt;
Triangular &amp;lt;tt&amp;gt;PLANE55&amp;lt;/tt&amp;gt; elements have been used for meshing and discretizing by the finite element method, resulting in 19282 elements and 9710 nodes.&lt;br /&gt;
The second design is a 3D model of a chip cooled by forced convection (Fig.&amp;amp;nbsp;2) &amp;lt;ref name=&amp;quot;harper1997&amp;quot;/&amp;gt;.&lt;br /&gt;
In this case, the tetrahedral element type &amp;lt;tt&amp;gt;SOLID70&amp;lt;/tt&amp;gt; was used, resulting in 107989 elements and 20542 nodes.&lt;br /&gt;
Since the implementation of the convective term in ANSYS does not allow defining the fluid speed on a per-element basis but on a per-region one, the flow profile has to be approximated by piece-wise step functions.&lt;br /&gt;
The approximation used for these benchmarks is shown in Fig.&amp;amp;nbsp;1.&lt;br /&gt;
&lt;br /&gt;
The Dirichlet boundary conditions are applied to the original system.&lt;br /&gt;
In both models, the reference temperature is set to &amp;lt;math&amp;gt;300 \, \text{K}&amp;lt;/math&amp;gt;, and Dirichlet boundary conditions as well as initial conditions are set to &amp;lt;math&amp;gt;0&amp;lt;/math&amp;gt; with respect to the reference.&lt;br /&gt;
The specified Dirichlet boundary conditions are in both cases the inlet of the fluid and the outer faces of the solids. Matrices are supplied for the symmetric case (fluid speed is zero; no convection), and the non-symmetric case (with forced convection).&lt;br /&gt;
Table&amp;amp;#160;1 shows the output nodes specified for the two benchmarks, Table&amp;amp;#160;2 links the filenames according to the different cases.&lt;br /&gt;
&lt;br /&gt;
Practically, only a few nodes are considered quantities of interest.&lt;br /&gt;
Hence, a small subset of five nodes is selected as output nodes,&lt;br /&gt;
which are filtered from the discretized state by a linear transformation.&lt;br /&gt;
&lt;br /&gt;
==Origin==&lt;br /&gt;
&lt;br /&gt;
This benchmark is part of the &#039;&#039;&#039;Oberwolfach Benchmark Collection&#039;&#039;&#039;&amp;lt;ref name=&amp;quot;korvink2005&amp;quot;/&amp;gt;; No. 38867, see &amp;lt;ref name=&amp;quot;moosmann2005&amp;quot;/&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Data==&lt;br /&gt;
&lt;br /&gt;
Matrices are in the [http://math.nist.gov/MatrixMarket/ Matrix Market] format.&lt;br /&gt;
The matrix name is used as an extension of the matrix file.&lt;br /&gt;
&amp;lt;tt&amp;gt;*.C.names&amp;lt;/tt&amp;gt; contains a list of output names written consecutively.&lt;br /&gt;
The system matrices have been extracted from ANSYS models by means of [http://portal.uni-freiburg.de/imteksimulation/downloads/mor4fem mor4fem].&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin: auto;&amp;quot;&lt;br /&gt;
|+ style=&amp;quot;caption-side:bottom;&amp;quot;|&#039;&#039;Table 1: Output nodes for the two models.&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
!Model&lt;br /&gt;
!Number&lt;br /&gt;
!Code&lt;br /&gt;
!Comment&lt;br /&gt;
|-&lt;br /&gt;
|Flow Meter&lt;br /&gt;
|1&lt;br /&gt;
|out1&lt;br /&gt;
|outlet position&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|2&lt;br /&gt;
|out2&lt;br /&gt;
|outlet position&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|3&lt;br /&gt;
|SenL&lt;br /&gt;
|left sensor position&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|4&lt;br /&gt;
|Heater&lt;br /&gt;
|within the heater&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|5&lt;br /&gt;
|SenR&lt;br /&gt;
|right sensor position&lt;br /&gt;
|-&lt;br /&gt;
|Cooling Structure&lt;br /&gt;
|1&lt;br /&gt;
|out1&lt;br /&gt;
|outlet position&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|2&lt;br /&gt;
|out2&lt;br /&gt;
|outlet position&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|3&lt;br /&gt;
|out3&lt;br /&gt;
|outlet position&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|4&lt;br /&gt;
|out4&lt;br /&gt;
|outlet position&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|5&lt;br /&gt;
|Heater&lt;br /&gt;
|within the heater&lt;br /&gt;
|}&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin: auto;&amp;quot;&lt;br /&gt;
|+ style=&amp;quot;caption-side:bottom;&amp;quot;|&#039;&#039;Table 2: Provided files.&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
!Model&lt;br /&gt;
!Fluid Speed (m/s)&lt;br /&gt;
!Link&lt;br /&gt;
!Size&lt;br /&gt;
|-&lt;br /&gt;
|Flow Meter&lt;br /&gt;
|&amp;lt;math&amp;gt;0&amp;lt;/math&amp;gt;&lt;br /&gt;
|[https://csc.mpi-magdeburg.mpg.de/mpcsc/MORWIKI/Oberwolfach/Convection-dim1e4-flow_meter_model_v0.tgz Convection-dim1e4-flow_meter_model_v0.tgz]&lt;br /&gt;
|649.4 kB&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&amp;lt;math&amp;gt;0.5&amp;lt;/math&amp;gt;&lt;br /&gt;
|[https://csc.mpi-magdeburg.mpg.de/mpcsc/MORWIKI/Oberwolfach/Convection-dim1e4-flow_meter_model_v0.5.tgz Convection-dim1e4-flow_meter_model_v0.5.tgz]&lt;br /&gt;
|757.8 kB&lt;br /&gt;
|-&lt;br /&gt;
|Cooling Structure&lt;br /&gt;
|&amp;lt;math&amp;gt;0&amp;lt;/math&amp;gt;&lt;br /&gt;
|[https://csc.mpi-magdeburg.mpg.de/mpcsc/MORWIKI/Oberwolfach/Convection-dim1e4-chip_cooling_model_v0.tgz Convection-dim1e4-chip_cooling_model_v0.tgz]&lt;br /&gt;
|3.9 MB&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&amp;lt;math&amp;gt;0.1&amp;lt;/math&amp;gt;&lt;br /&gt;
|[https://csc.mpi-magdeburg.mpg.de/mpcsc/MORWIKI/Oberwolfach/Convection-dim1e4-chip_cooling_model_v0.1.tgz Convection-dim1e4-chip_cooling_model_v0.1.tgz]&lt;br /&gt;
|4.0 MB&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Further information on the models can be found in &amp;lt;ref name=&amp;quot;moosmann2004&amp;quot;/&amp;gt;,&lt;br /&gt;
where model reduction by means of the [[wikipedia:Arnoldi_iteration|Arnoldi algorithm]] is also presented.&lt;br /&gt;
&lt;br /&gt;
==Dimensions==&lt;br /&gt;
&lt;br /&gt;
System structure:&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;&lt;br /&gt;
\begin{align}&lt;br /&gt;
  E \dot{x}(t) &amp;amp;= A x(t) + B u(t) \\&lt;br /&gt;
  y(t) &amp;amp;= C x(t)&lt;br /&gt;
\end{align}&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
System dimensions:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;E \in \mathbb{R}^{n \times n}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;A \in \mathbb{R}^{n \times n}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;B \in \mathbb{R}^{n \times 1}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;C \in \mathbb{R}^{5 \times n}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
System variants:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;flow_v0&amp;lt;/tt&amp;gt;: &amp;lt;math&amp;gt;n = 9669&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;tt&amp;gt;flow_v0.5&amp;lt;/tt&amp;gt;: &amp;lt;math&amp;gt;n = 9669&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;tt&amp;gt;chip_v0&amp;lt;/tt&amp;gt;: &amp;lt;math&amp;gt;n = 20082&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;tt&amp;gt;chip_v0.1&amp;lt;/tt&amp;gt;: &amp;lt;math&amp;gt;n = 20082&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Citation==&lt;br /&gt;
&lt;br /&gt;
To cite this benchmark, use the following references:&lt;br /&gt;
&lt;br /&gt;
* For the benchmark itself and its data:&lt;br /&gt;
::The MORwiki Community, &#039;&#039;&#039;Convective Thermal Flow&#039;&#039;&#039;. MORwiki - Model Order Reduction Wiki, 2018. http://modelreduction.org/index.php/Convective_Thermal_Flow&lt;br /&gt;
&lt;br /&gt;
 @MISC{morwiki_convection,&lt;br /&gt;
   author =       &amp;lt;nowiki&amp;gt;{{The MORwiki Community}}&amp;lt;/nowiki&amp;gt;,&lt;br /&gt;
   title =        {Convective Thermal Flow},&lt;br /&gt;
   howpublished = {{MORwiki} -- Model Order Reduction Wiki},&lt;br /&gt;
   url =          &amp;lt;nowiki&amp;gt;{http://modelreduction.org/index.php/Convection}&amp;lt;/nowiki&amp;gt;,&lt;br /&gt;
   year =         {2018}&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
* For the background on the benchmark:&lt;br /&gt;
&lt;br /&gt;
 @INPROCEEDINGS{morMooRGetal04,&lt;br /&gt;
   author =       &amp;lt;nowiki&amp;gt;{C. Moosmann, E.B. Rudnyi, A. Greiner, J.G. Korvink}&amp;lt;/nowiki&amp;gt;,&lt;br /&gt;
   title =        {Model Order Reduction for Linear Convective Thermal Flow},&lt;br /&gt;
   booktitle =    {Proceedings of 10th International Workshops on THERMal INvestigations of ICs and Systems},&lt;br /&gt;
   year =         {2004},&lt;br /&gt;
   url =          &amp;lt;nowiki&amp;gt;{http://modelreduction.com/doc/papers/moosmann04THERMINIC.pdf}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;korvink2005&amp;quot;&amp;gt; J.G. Korvink, E.B. Rudnyi, &amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1007/3-540-27909-1_11 Oberwolfach Benchmark Collection]&amp;lt;/span&amp;gt;, Dimension Reduction of Large-Scale Systems, Lecture Notes in Computational Science and Engineering, vol 45: 311--315, 2005.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;ernst2001&amp;quot;&amp;gt;H. Ernst, &amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://freidok.uni-freiburg.de/data/201 High-Resolution Thermal Measurements in Fluids]&amp;lt;/span&amp;gt;, PhD thesis, University of Freiburg, Germany, 2001.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;harper1997&amp;quot;&amp;gt;C.A. Harper, &amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1036/0071430482 Electronic packaging and interconnection handbook]&amp;lt;/span&amp;gt;, New York McGraw- Hill, USA, 1997&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;moosmann2004&amp;quot;&amp;gt;C. Moosmann, E.B. Rudnyi, A. Greiner, J.G. Korvink, &amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[http://modelreduction.com/doc/papers/moosmann04THERMINIC.pdf Model Order Reduction for Linear Convective Thermal Flow]&amp;lt;/span&amp;gt;, Proceedings of 10th International Workshops on THERMal INvestigations of ICs and Systems, THERMINIC2004, Sophia Antipolis, France, 2004.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;moosmann2005&amp;quot;&amp;gt;C. Moosmann, A. Greiner, &amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1007/3-540-27909-1_16 Convective Thermal Flow Problems]&amp;lt;/span&amp;gt;, In: Dimension Reduction of Large-Scale Systems. Springer, Berlin, Heidelberg. Lecture Notes in Computational Science and Engineering, vol 45: 341--343, 2005.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=Template:Editors&amp;diff=3934</id>
		<title>Template:Editors</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=Template:Editors&amp;diff=3934"/>
		<updated>2024-09-03T08:39:22Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* [[User:Saak]]&lt;br /&gt;
* [[User:Grundel]]&lt;br /&gt;
* [[User:Werner]]&lt;br /&gt;
* [[User:Himpe]]&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=MOR_Wiki:Current_events&amp;diff=3933</id>
		<title>MOR Wiki:Current events</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=MOR_Wiki:Current_events&amp;diff=3933"/>
		<updated>2024-09-02T16:54:42Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Miscellaneous]]&lt;br /&gt;
&lt;br /&gt;
== MOR Wiki Users Meetings ==&lt;br /&gt;
&lt;br /&gt;
* The first general assembly of MOR Wiki users took place on December 10th - 2013, at the [http://mpim.iwww.mpg.de/research/groups/csc MPI in Magdeburg] (Germany).&lt;br /&gt;
&lt;br /&gt;
* The second MOR Wiki meeting took place on April 23rd - 2015, at the [http://mpim.iwww.mpg.de/research/groups/csc MPI in Magdeburg] (Germany).&lt;br /&gt;
&lt;br /&gt;
* The third MOR Wiki meeting took place on January 11th - 2017, during the [http://www.mpi-magdeburg.mpg.de/csc/events/modred2017 ModRed in Odense] (Denmark).&lt;br /&gt;
&lt;br /&gt;
== Upcoming Workhops and Conferences ==&lt;br /&gt;
* [https://mathmod.at Minisymposium on Recent Advances in Model Order Reduction and Data-driven Modelling at MathMod 2025], February 19 - 21 2025, Vienna (Austria)&lt;br /&gt;
 &lt;br /&gt;
* [https://more2024.sciencesconf.org/ MORe2024 - Model Reduction and Surrogate Modeling], September 9 - 13, 2024; La Jolla, California (United States)&lt;br /&gt;
&lt;br /&gt;
== Past Events ==&lt;br /&gt;
&lt;br /&gt;
=== 2024 ===&lt;br /&gt;
* [https://www.ymmor2024.uni-stuttgart.de/ Young Mathematicians in Model Order Reduction Conference 2024], March 4 - 8, 2024; Stuttgart (Germany)&lt;br /&gt;
&lt;br /&gt;
=== 2023 ===&lt;br /&gt;
&lt;br /&gt;
* [https://mortech2023.sciencesconf.org/ MORTech 2023 – 6th International Workshop on Model Reduction Techniques], November 22 - 24, 2023; Paris-Saclay (France)&lt;br /&gt;
&lt;br /&gt;
* [https://ims.nus.edu.sg/events/international-workshop-on-reduced-order-methods/ International Workshop on Reduced Order Methods], May 22nd - 26th, 2023; Singapore (Singapore)&lt;br /&gt;
&lt;br /&gt;
* [https://personal.math.vt.edu/borggajt/nlromc/index.html Nonlinear Model Reduction for Control], May 22nd - 26th, 2023; Blacksburg (USA).&lt;br /&gt;
&lt;br /&gt;
=== 2022 ===&lt;br /&gt;
&lt;br /&gt;
* [https://alop.uni-trier.de/event/autumn-school-on-model-reduction-and-model-predictive-control-with-differential-equations/ Model Reduction and Model Predictive Control with Differential Equations], October 4th - 7th, 2022; Trier (Germany)&lt;br /&gt;
&lt;br /&gt;
* [https://more.sciencesconf.org/ Model Reduction and Surrogate Modeling (MORE)], September 19th - 23rd, 2022; Berlin (Germany)&lt;br /&gt;
&lt;br /&gt;
* [https://www.mathmod.at/ 10th Vienna International Conference on Mathematical Modelling], July 27th – 29th, 2022;Vienna (Austria)&lt;br /&gt;
** [https://ifac.papercept.net/conferences/conferences/MAMO21/program/MAMO21_ContentListWeb_2.html#wed3 Model Reduction]&lt;br /&gt;
** [https://ifac.papercept.net/conferences/conferences/MAMO21/program/MAMO21_ContentListWeb_2.html#wed1 Recent Advances in Model Reduction and Surrogate Modeling I of IV]&lt;br /&gt;
** [https://ifac.papercept.net/conferences/conferences/MAMO21/program/MAMO21_ContentListWeb_2.html#wee1 Recent Advances in Model Reduction and Surrogate Modeling II of IV]&lt;br /&gt;
** [https://ifac.papercept.net/conferences/conferences/MAMO21/program/MAMO21_ContentListWeb_2.html#thb1 Recent Advances in Model Reduction and Surrogate Modeling III of IV]&lt;br /&gt;
** [https://ifac.papercept.net/conferences/conferences/MAMO21/program/MAMO21_ContentListWeb_2.html#thd1 Recent Advances in Model Reduction and Surrogate Modeling IV of IV]&lt;br /&gt;
&lt;br /&gt;
* [https://www.uni-muenster.de/MathematicsMuenster/events/2022/YMCN-model-order-reduction.shtml#Schedule Young Mathematicians in Model Order Reduction (YMMOR)], July 18th - 22th, 2022; Münster (Germany)&lt;br /&gt;
&lt;br /&gt;
* [https://dcn.nat.fau.eu/events/mini-workshop-model-reduction-and-control/ Mini-Workshop &amp;quot;Model Reduction and Control&amp;quot;] May 24th, 2022; (ONLINE)&lt;br /&gt;
&lt;br /&gt;
* [https://www.siam.org/conferences/cm/conference/uq22 SIAM Conference on Uncertainty Quantification], April 12th -15th, 2022; Atlanta (USA)&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=73287 MS4: Nonlinear Model Reduction Methods for Random or Parametric Time Dependent Problems - Part I of III]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=73288 MS32: Nonlinear Model Reduction Methods for Random or Parametric Time Dependent Problems - Part II of III]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=73289 MS76: Nonlinear Model Reduction Methods for Random or Parametric Time Dependent Problems - Part III of III]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=73521 MS154: Reduced Order Modelling for Forward and Inverse UQ - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=73537 MS168: Reduced Order Modelling for Forward and Inverse UQ - Part II of II]&lt;br /&gt;
&lt;br /&gt;
=== 2021 ===&lt;br /&gt;
&lt;br /&gt;
* [https://indico.sissa.it/event/43/ RAMSES: Reduced order models; Approximation theory; Machine learning; Surrogates, Emulators and Simulators], December 14th - 17th, 2021; Trieste (Italy)&lt;br /&gt;
&lt;br /&gt;
* [https://www.romsoc.eu/wim-2021/ Workshop in Industrial Mathematics (WIM2021) with the Reduced-Order Modeling, Simulation and Optimization of Coupled Systems], October 20th - 22nd; Catania (Italy)&lt;br /&gt;
&lt;br /&gt;
* [https://www.icms.org.uk/events/event/?id=1178 New Developments in Reduced Order Modelling], October 15th; &#039;&#039;&#039;ONLINE&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* [https://mmldt.eng.ucsd.edu/home MMLDT-CSET - Mechanistic Machine Learning and Digital Twins for Computational Science, Engineering &amp;amp; Technology 2021],  September 26th - 29th, 2021; San Diego (USA)&lt;br /&gt;
** [https://docs.google.com/spreadsheets/d/1GosdHfvpskcnnR56u29ZRNfBWC4kg0hR/edit#gid=83060610&amp;amp;range=A1 MS 4-7: Physics-Informed Data-based Model Reduction]&lt;br /&gt;
** [https://docs.google.com/spreadsheets/d/1GosdHfvpskcnnR56u29ZRNfBWC4kg0hR/edit#gid=1626075110&amp;amp;range=A1 MS 4-8: Model Reduction and Machine Learning for Fluids and Fluid-Structure Interactions]&lt;br /&gt;
** [https://docs.google.com/spreadsheets/d/1GosdHfvpskcnnR56u29ZRNfBWC4kg0hR/edit#gid=618092903&amp;amp;range=A1 MS 4-9: Advances in Reduced Order Modeling of Solids and Fluids and Porous Media]&lt;br /&gt;
** [https://docs.google.com/spreadsheets/d/1GosdHfvpskcnnR56u29ZRNfBWC4kg0hR/edit#gid=378364206&amp;amp;range=A1 MS 4-10: Model Reduction of Dynamical Systems with Deep Learning]&lt;br /&gt;
** [https://docs.google.com/spreadsheets/d/1GosdHfvpskcnnR56u29ZRNfBWC4kg0hR/edit#gid=667740&amp;amp;range=A1 MS 5-1: Advances in Machine Learning and Model Reduction for Inversion in Geophysical and Geological Applications]&lt;br /&gt;
&lt;br /&gt;
* [http://smai.emath.fr/cemracs/cemracs21/ CEMRACS 2021 - Data Assimilation and Reduced Modeling for High Dimensional Problems], July 19th - August 27th, 2021; Luminy (France)&lt;br /&gt;
&lt;br /&gt;
* [http://16.usnccm.org US National Congress on Computational Mechanics (USNCCM)], July 25th - 29th, 2021; Chicago (USA)&lt;br /&gt;
** &amp;quot;[http://16.usnccm.org/MS_311 MS311: Model Order Reduction for Physical Simulations]&amp;quot; &lt;br /&gt;
&lt;br /&gt;
* [https://www.siam.org/conferences/cm/conference/an21 SIAM Annual Meeting], July 19th - 23rd, 2021; &#039;&#039;&#039;ONLINE&#039;&#039;&#039;&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=71670 MS62: Advances in Uncertainty Quantification with Model Order Reduction Methods I]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=71671 MS88: Advances in Uncertainty Quantification with Model Order Reduction Methods II]&lt;br /&gt;
&lt;br /&gt;
* [https://www.siam.org/conferences/cm/conference/ct21 SIAM Conference on Control and Its Applications], July 19th - 21st, 2021; &#039;&#039;&#039;ONLINE&#039;&#039;&#039;&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=71167 MS1: Model Reduction for Control of High-Dimensional Nonlinear Systems I]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=71168 MS9: Model Reduction for Control of High-Dimensional Nonlinear Systems II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=71169 MS17: Model Reduction for Control of High-Dimensional Nonlinear Systems III]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=72048 MS26: Data-Driven Methods in Model Reduction and Control I]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=72049 MS34: Data-Driven Methods in Model Reduction and Control II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=72050 MS42: Data-Driven Methods in Model Reduction and Control III]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=71716 MS25: Model Reduction of Complex Dynamical Systems and its Applications I]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=71717 MS33: Model Reduction of Complex Dynamical Systems and its Applications II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=71718 MS41: Model Reduction of Complex Dynamical Systems and its Applications III]&lt;br /&gt;
&lt;br /&gt;
* [https://www.siam.org/conferences/cm/conference/cse21 SIAM Conference on Computational Science and Engineering (CSE21)], March 1st - 5th, 2021; Fort Worth (USA)&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=70067 MS8:   Data Driven Reduced Order Models: Structure, Networks and Imaging - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69881 MS26:  Reduced Order Methods for Parametric CFD Problems - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69861 MS27:  Reduced Order Model Stabilizations and Closures - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69824 MS31:  Structure-Preserving Model Order Reduction for Large-Scale Systems - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69862 MS60:  Reduced Order Model Stabilizations and Closures - Part II of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69943 MS74:  Dimensionality Reduction and Reduced-Order Models for the Boltzmann Transport Equation]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=70068 MS98:  Data Driven Reduced Order Models: Structure, Networks and Imaging - Part II of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69882 MS111: Reduced Order Methods for Parametric CFD Problems - Part II of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69928 MS113: Reduced-Order Modeling and Analysis of Turbulence - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69825 MS119: Structure-Preserving Model Order Reduction for Large-Scale Systems - Part II of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69929 MS147: Reduced-Order Modeling and Analysis of Turbulence - Part II of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=70145 MS172: Model Order Reduction for Large-Scale Problems - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=70146 MS234: Model Order Reduction for Large-Scale Problems - Part II of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=70123 MS309: Data-Driven Modeling and Model Reduction: Honoring 70th Birthday of Thanos Antoulas - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69938 MS319: Model Order Reduction for Complex Systems - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69816 MS324: Recent Advances in Model Order Reduction for Advection-Dominated Simulations - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69764 MS326: Recent Developments in Nonlinear Model Reduction Methods - Part I of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=70124 MS340: Data-Driven Modeling and Model Reduction: Honoring 70th Birthday of Thanos Antoulas - Part II of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69939 MS350: Model Order Reduction for Complex Systems - Part II of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69819 MS355: Recent Advances in Model Order Reduction for Advection-Dominated Simulations - Part II of II]&lt;br /&gt;
** [https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=69765 MS357: Recent Developments in Nonlinear Model Reduction Methods - Part II of II]&lt;br /&gt;
&lt;br /&gt;
* [https://www.wccm-eccomas2020.org 14th WWCM and ECCOMAS Congress 2020], January 11th - 15th, 2021; Paris (France)&lt;br /&gt;
** &amp;quot;[https://www.wccm-eccomas2020.org/admin/Files/FileAbstract/a93.pdf  MS93: Reduced Order and Surrogate Modeling for Uncertainty Analysis in Structural Mechanics]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.wccm-eccomas2020.org/admin/Files/FileAbstract/a139.pdf MS139: Advances in Intrusive and Non-Intrusive Order Reduction Techniques for Flow Analysis, Control and Optimization]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.wccm-eccomas2020.org/admin/Files/FileAbstract/a152.pdf MS152: Model Order Reduction Methods for Parametrized Mechanical Systems]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.wccm-eccomas2020.org/admin/Files/FileAbstract/a170.pdf MS170: Numerical Model Reduction and Data-Driven Surrogates for Multi-Physics Applications]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.wccm-eccomas2020.org/admin/Files/FileAbstract/a179.pdf MS179: Numerical Techniques for the Simulations and Model Reduction of Complex Physical Systems]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.wccm-eccomas2020.org/admin/Files/FileAbstract/a204.pdf MS204: Analysing Parameterised Reduced Order Models]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.wccm-eccomas2020.org/admin/Files/FileAbstract/a371.pdf MS371: Model Order Reduction for Vibroacoustic Problems]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.wccm-eccomas2020.org/admin/Files/FileAbstract/a415.pdf MS415: Model Order Reduction for Nonlinear (Time, Space, Parameter) Multiscale Problems and Applications]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.wccm-eccomas2020.org/admin/Files/FileAbstract/a458.pdf MS458: Coupled Multiphysics Problems and Reduced Order Methods Applied to Compute Digital Twin Models in Industrial Applications]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== 2020 ===&lt;br /&gt;
&lt;br /&gt;
* [https://www.mfo.de/occasion/2045a/www_view Banach Center – Oberwolfach Graduate Seminar: Model Reduction and Approximation: Projection-, Tensor- and Data-based Methods], November 1st - 7th, 2020; Bedlewo (Poland) (&#039;&#039;&#039;CANCELLED&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
* [https://www.tu-chemnitz.de/mathematik/dmv2020/index.php DMV Annual Meeting], September 14th - 18th, 2020; (&#039;&#039;&#039;VIRTUAL&#039;&#039;&#039;)&lt;br /&gt;
** &amp;quot;[https://www.tu-chemnitz.de/mathematik/dmv2020/minisymp.php Model Order Reduction]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* [https://morss2020.epfl.ch Model Order Reduction Summer School]; September 7th - 10th, 2020; (&#039;&#039;&#039;VIRTUAL&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
* [https://www.mpi-magdeburg.mpg.de/csc/events/samm20 SAMM20 - Learning Models from Data: Model Reduction, System Identification and Machine Learning], July  27th - 31st, 2020; (&#039;&#039;&#039;VIRTUAL&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
* [https://www.siam.org/conferences/cm/conference/an20 2nd Joint SIAM/CAIMS Annual Meeting], July 6th - 17th, 2020; (&#039;&#039;&#039;VIRTUAL&#039;&#039;&#039;)&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=68897 MS4: Projection-Based Model Order Reduction for Partial Differential Equations - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=68898 MS7: Projection-Based Model Order Reduction for Partial Differential Equations - Part II of II]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* [https://icerm.brown.edu/programs/sp-s20/ Model and dimension reduction in uncertain and dynamic systems], January 27th - May 1st, 2020; Providence (USA)&lt;br /&gt;
** [https://icerm.brown.edu/programs/sp-s20/w1/ Mathematics of Reduced Order Models], February 17th - 21st&lt;br /&gt;
** [https://icerm.brown.edu/programs/sp-s20/w2/ Algorithms for Dimension and Complexity Reduction], March 23rd - 27th (&#039;&#039;&#039;VIRTUAL&#039;&#039;&#039;)&lt;br /&gt;
** [https://icerm.brown.edu/programs/sp-s20/w3/ Computational Statistics and Data-Driven Models], April 20th - 24th (&#039;&#039;&#039;VIRTUAL&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
* [https://siam-uq20.ma.tum.de SIAM Conference on Uncertainty Quantification (UQ20)], March 24th - 27th, 2020; Munich (Germany) (&#039;&#039;&#039;CANCELLED&#039;&#039;&#039;)&lt;br /&gt;
** &amp;quot;[https://www.events.tum.de/frontend/index.php?page_id=3712&amp;amp;v=List&amp;amp;do=15&amp;amp;day=490&amp;amp;ses=1625# CT20: ROM and Surrogate Models]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.events.tum.de/frontend/index.php?page_id=3712&amp;amp;v=List&amp;amp;do=15&amp;amp;day=489&amp;amp;ses=1723# MS311: Dynamical low rank and reduced basis methods for random or parametric time dependent problems (Part I of II) ]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.events.tum.de/frontend/index.php?page_id=3712&amp;amp;v=List&amp;amp;do=15&amp;amp;day=489&amp;amp;ses=1724# MS312: Dynamical low rank and reduced basis methods for random or parametric time dependent problems (Part II of II)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.events.tum.de/frontend/index.php?page_id=3712&amp;amp;v=List&amp;amp;do=15&amp;amp;day=490&amp;amp;ses=1717# MS331: Recent Advances in Reduced-Order Models for Many Query and Time-Critical Problems]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.events.tum.de/frontend/index.php?page_id=3712&amp;amp;v=List&amp;amp;do=15&amp;amp;day=491&amp;amp;ses=1774# MS351: Reduced order methods for uncertainty quantification in CFD parametric problems]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== 2019 ===&lt;br /&gt;
&lt;br /&gt;
* [https://mortech2019.sciencesconf.org/ MORTech - 5th International Workshop on Reduced Basis, POD or PGD-Based Model Reduction Technique], November 20th - 22nd, 2019; Paris (France)&lt;br /&gt;
&lt;br /&gt;
* [https://www.tudelft.nl/en/events/2019/dcse/dcse-fall-school-november-4-8-2019-on-reduced-order-modeling-and-uncertainty-quantification/ DCSE Fall School November 4-8, 2019, on &amp;quot;Reduced-Order Modeling and Uncertainty Quantification&amp;quot;] November 4th - 8th, 2019; Delft (Netherlands)&lt;br /&gt;
&lt;br /&gt;
* [https://school.pymor.org/ pyMOR School 2019], October 7th - 11th, 2019; Magdeburg (Germany)&lt;br /&gt;
&lt;br /&gt;
* [https://www.enumath2019.eu ENUMATH 2019], September 30th - October 4th, 2019; Egmond aan Zee (Netherlands)&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/30 MS2: Recent Advances in Model Order Reduction]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/76 MS14: Reduced Order Models for parametric PDEs: special focus on time-dependent phenomena and time-harmonic wave problems (Part 1)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/87 MS14: Reduced Order Models for parametric PDEs: special focus on time-dependent phenomena and time-harmonic wave problems (Part 2)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/113 MS18: Model order reduction in optimisation, control, and data assimilation (Part 1)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/124 MS18: Model order reduction in optimisation, control, and data assimilation (Part 2)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/6 MS26: New challenges and opportunities for model order reduction (Part 1)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/17 MS26: New challenges and opportunities for model order reduction (Part 2)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/7 MS29: Low-rank modelling in uncertainty quantification (Part 1)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/18 MS29: Low-rank modelling in uncertainty quantification (Part 2)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/8 MS31: Numerical methods for identification and model reduction of nonlinear systems (Part 1)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/19 MS31: Numerical methods for identification and model reduction of nonlinear systems (Part 2)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/151 MS38: Modeling of reduced order submanifolds in non-linear spaces (Part 1)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/162 MS38: Modeling of reduced order submanifolds in non-linear spaces (Part 2)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/121 Computing and Model Order Reduction (Part 1)]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://www.enumath2019.eu/program/show_slot/132 Computing and Model Order Reduction (Part 2)]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* [https://www.win.tue.nl/~hbansal/morss.html Model Order Reduction Summer School - MORSS], September 23rd - 27th, 2019; Eindhoven (Netherlands)&lt;br /&gt;
&lt;br /&gt;
* [https://congress.cimne.com/complas2019/frontal/default.asp International Conference on Computational Plasticity. Fundamentals and Applications.], September 3rd - 5th, 2019; Barcelona (Spain)&lt;br /&gt;
** &amp;quot;[https://congress.cimne.com/complas2019/frontal/ProgramPrint.asp?id=WeM1 Model Order Reduction with Emphasis on Non-linear and Multi-scale Problems I]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://congress.cimne.com/complas2019/frontal/ProgramPrint.asp?id=WeE1 Model Order Reduction with Emphasis on Non-linear and Multi-scale Problems II]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* [https://imsc.uni-graz.at/modred2019 4th Workshop on Model Reduction of Complex Dynamical Systems - MODRED], August 28th - 30th, 2019; Graz (Austria)&lt;br /&gt;
&lt;br /&gt;
* [http://15.usnccm.org US National Congress on Computational Mechanics (USNCCM)], July 28th - 1st August, 2019; Austin (USA)&lt;br /&gt;
** &amp;quot;[http://15.usnccm.org/208 Data Assimilation in Model Order Reduction Techniques for Computational Mechanics]&amp;quot; &lt;br /&gt;
** &amp;quot;[http://15.usnccm.org/1001 Model Order Reduction for Computational Continuum Mechanics]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* [https://iciam2019.org International Congress on Industrial and Applied Mathematics], July 15th - 19th, 2019; Valencia (Spain)&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FT-2-4%201 MS FT-2-4 1: New trends in dimensionality reduction of parametrized and stochastic PDEs - Part 1 of 2]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FT-2-4%202 MS FT-2-4 2: New trends in dimensionality reduction of parametrized and stochastic PDEs - Part 2 of 2]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20GH-3-3%202 MS GH-3-3 2: Model order reduction methods and their broad applications in engineering - Part 1 of 3]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20GH-3-3%203 MS GH-3-3 3: Model order reduction methods and their broad applications in engineering - Part 2 of 3]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20GH-3-3%204 MS GH-3-3 4: Model order reduction methods and their broad applications in engineering - Part 3 of 3]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20A1-1-1%205 MS A1-1-1 5: Advances in reduced order methods for parameter-dependent problems - Part 1 of 1]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FE-1-3%205 MS FE-1-3 5: Network based model reduction in large-scale simulations, imaging and data-science - Part 1 of 3]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FE-1-3%206 MS FE-1-3 6: Network based model reduction in large-scale simulations, imaging and data-science - Part 2 of 3]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FE-1-3%207 MS FE-1-3 7: Network based model reduction in large-scale simulations, imaging and data-science - Part 3 of 3]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20GH-3-3%205 MS GH-3-3 5: Model Reduction and Coupled Problems in Industry Applications - Part 1 of 2]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20GH-3-3%206 MS GH-3-3 6: Model Reduction and Coupled Problems in Industry Applications - Part 2 of 2]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FE-1-G%207 MS FE-1-G 7: Model-reduction, randomization, and other techniques for large-scale inversion and UQ   - Part 1 of 1]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FT-2-4%207 MS FT-2-4 7: Reduced Order Modeling for Parametric CFD Problems - Part 1 of 4]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FT-2-4%208 MS FT-2-4 8: Reduced Order Modeling for Parametric CFD Problems - Part 2 of 4]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FT-2-4%209 MS FT-2-4 9: Reduced Order Modeling for Parametric CFD Problems - Part 3 of 4]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FT-2-4%2010 MS FT-2-4 10: Reduced Order Modeling for Parametric CFD Problems - Part 4 of 4]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20GH-0-1%207 MS GH-0-1 7: Reduced-order modeling and data-driven estimation in waves and fluids - Part 1 of 2]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20GH-0-1%208 MS GH-0-1 8: Reduced-order modeling and data-driven estimation in waves and fluids - Part 2 of 2]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FE-1-G%209 MS FE-1-G 9: Recent Advancements in Model Reduction for Stochastic and Nonlinear Systems - Part 1 of 2]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://iciam2019.com/programa/sesiones.html?codSes=MS%20FE-1-G%2010 MS FE-1-G 10: Recent Advancements in Model Reduction for Stochastic and Nonlinear Systems - Part 2 of 2]&amp;quot;&lt;br /&gt;
* [https://indico.sissa.it/event/34/ Summer School on Reduced Order Methods in Computational Fluid Dynamics], July 8th - 12th, 2019; Trieste (Italy)&lt;br /&gt;
* [https://2019.compdyn.org 7th International Conference on Computational Methods in Structural Dynamics and Earthquake Engineering - COMPDYN], June 24th - 26th, 2019; Crete (Greece)&lt;br /&gt;
** &amp;quot;MS 5: Surrogate and Reduced-Order Modeling for Stochastic Simulation of Physical Systems&amp;quot;&lt;br /&gt;
** &amp;quot;MS 6: Uncertainty Computations with Reduced Order Models and Low-Rank Representations&amp;quot;&lt;br /&gt;
** &amp;quot;MS 27: Advances in model reduction techniques in computational structural dynamics&amp;quot;&lt;br /&gt;
* [http://modelreduction.net/workshops/7th-international-workshop/ 7th International Workshop on Model Reduction in Reactive Flow (IWMRRF)], June 18th - 21st, 2019; Trondheim (Norway)&lt;br /&gt;
* [https://isc.tamu.edu/events/Spring2019/ Spring 2019 Model Reduction Workshop] April 29th, 2019; Houston (USA)&lt;br /&gt;
* [https://www.dropbox.com/s/yqqnyxufa36tfdf/EECI-IGSC-2019-Model%20Reduction.pdf?dl=0 Model Reduction for Linear and Nonlinear Systems], April 29th - May 3rd, 2019; London (England)&lt;br /&gt;
* [http://www.math.sissa.it/course/phd-course/reduced-order-methods-computational-mechanics Reduced Order Methods for Computational Mechanics], April 15th - 18th, 2019; Trieste (Italy)&lt;br /&gt;
* [https://cmsa.fas.harvard.edu/machine-learning/ Machine Learning for Multiscale Model Reduction Workshop], March 27th - 29th, 2019; Cambridge (USA)&lt;br /&gt;
* [https://www.siam.org/Conferences/CM/Main/cse19 2019 SIAM Conference on Computational Science and Engineering], February 25th - March 1st, 2019; Spokane (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65932 MS10: Model Reduction, Adaptivity, and High Dimensionality in Uncertainty Quantification - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65933 MS44: Model Reduction, Adaptivity, and High Dimensionality in Uncertainty Quantification - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65806 MS14: Emerging Trends for Structure Preserving Model Order Reduction - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65807 MS49: Emerging Trends for Structure Preserving Model Order Reduction - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65793 MS25: Discovering and Exploiting Low-dimensional Structures in Computational Models - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65794 MS60: Discovering and Exploiting Low-dimensional Structures in Computational Models - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=66052 MS93: Nonlinear Reduced Order Modeling of Realistic Engineering Fluid Flows]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65894 MS112: Recent Advances in Model Reduction and Uncertainty Quantification - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65895 MS145: Recent Advances in Model Reduction and Uncertainty Quantification - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65632 MS119: Model Reduction for Problems with Strong Convection, Sharp Gradients, and Discontinuities - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65633 MS153: Model Reduction for Problems with Strong Convection, Sharp Gradients, and Discontinuities - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65903 MS131: Homogenization and Reduced Order Modelling for Wave Equations - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65904 MS165: Homogenization and Reduced Order Modelling for Wave Equations - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=66036 MS188: Reduced Order Modeling for Parametric CFD Problems- Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=66037 MS221: Reduced Order Modeling for Parametric CFD Problems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65744 MS191: New Challenges and Opportunities for Model Order Reduction - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65745 MS225: New Challenges and Opportunities for Model Order Reduction - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65757 MS243: Reduced Order Models for Fluids: Achievements and Open Problems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65758 MS276: Reduced Order Models for Fluids: Achievements and Open Problems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65898 MS267: Model Reduction and Reduced-order Modeling of Dynamical Systems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65899 MS301: Model Reduction and Reduced-order Modeling of Dynamical Systems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=66160 MS308: Data-driven and Mathematical Model Reductions for Combustion System Simulation and Design]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=66143 MS316: Rational Approximation and its Applications]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65578 MS343: Data-augmented Reduced-order Modeling: Operator Learning and Closure/error Modeling - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65579 MS376: Data-augmented Reduced-order Modeling: Operator Learning and Closure/error Modeling - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65662 MS352: Recent Developments in Model Order Reduction Methods - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=65663 MS384: Recent Developments in Model Order Reduction Methods - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=66087 MS361: Structure-exploiting Techniques for Approximation, Inference and Control of Complex Systems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=66088 MS393: Structure-exploiting Techniques for Approximation, Inference and Control of Complex Systems - Part II of II]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== 2018 ===&lt;br /&gt;
&lt;br /&gt;
* [http://meetings.aps.org/Meeting/DFD18/Content/3571 71st Annual Meeting of the APS Division of Fluid Dynamics], November 18th - 20th, 2018; Atlanta (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.aps.org/Meeting/DFD18/Session/A01 Session A01: Nonlinear Dynamics: Model Reduction I]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.aps.org/Meeting/DFD18/Session/F15 Session F15: Flow Control: Coherent Structures and Reduced Order Modeling]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.aps.org/Meeting/DFD18/Session/Q01 Session Q01: Nonlinear Dynamics: Model Reduction II]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* [https://www.math.uni-hamburg.de/morss2018/ Model Order Reduction Summer School], September 24th - 28th, 2018; Hamburg (Germany)&lt;br /&gt;
&lt;br /&gt;
* [https://alop.uni-trier.de/eucco2018 5th European Conference on Computational Optimization - EUCCO 2018], September 10th - 12th; Trier (Germany)&lt;br /&gt;
** &amp;quot;Focus Session: Model order reduction and low-rank approximation for nonlinear problems&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* Minisymposium at [https://sim.mathematik.uni-halle.de/numdiff/Numdiff15/home NumDiff 15], September 3rd - 7th, 2018; Halle (Germany)&lt;br /&gt;
** &amp;quot;Model order reduction for dynamical systems&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* [http://597.euromech.org/ Colloquium 597 Reduced Order Modeling in Mechanics of Materials], August 28th - 31st, 2018; Bad Herrenalb (Germany)&lt;br /&gt;
&lt;br /&gt;
* Minisymposia at &amp;quot;[http://www.wccm2018.org/ 13th World Congress in Computational Mechanics]&amp;quot;, July 22nd - 27th, 2018; New York (USA)&lt;br /&gt;
** &amp;quot;[http://www.wccm2018.org/MS_715 MS715: Reduced Order Methods for Parametric CFD Problems]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.wccm2018.org/MS_1802 MS1802: Model Reduction, Big Data and Dynamic Data-Driven Systems]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.wccm2018.org/MS_1804 MS1804: Machine Learning and Reduced-order Models for Complex Systems]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* Minisymposia at &amp;quot;[http://ecmi.bolyai.hu/ The 20th European Conference on Mathematics for Industry]&amp;quot;, June 18th - 22nd, 2018; Budapest (Hungary)&lt;br /&gt;
** &amp;quot;MS35: Reduced Order Modelling for Industrial and Scientific Applications&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* Sessions at the [http://www.ecc18.eu/ European Control Conference 2018] June 12th - 15th, 2018; Limassol (Cyprus)&lt;br /&gt;
** [https://controls.papercept.net/conferences/conferences/ECC18/program/ECC18_ContentListWeb_4.html#fra3 Model Reduction and Control in Large-Scale Networks]&lt;br /&gt;
** [https://controls.papercept.net/conferences/conferences/ECC18/program/ECC18_ContentListWeb_4.html#frb3 Model and Order Reduction I]&lt;br /&gt;
** [https://controls.papercept.net/conferences/conferences/ECC18/program/ECC18_ContentListWeb_4.html#frc3 Model and Order Reduction II]&lt;br /&gt;
&lt;br /&gt;
* Minisymposia at &amp;quot;[http://www.eccm-ecfd2018.org ECCM-ECFD 2018]&amp;quot;, June 11th - 15th, 2018; Glasgow (Scotland)&lt;br /&gt;
** &amp;quot;[http://www.eccm-ecfd2018.org/admin/Files/FileAbstract/a48.pdf MS48: Model reduction, big data and dynamic data-driven systems]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.eccm-ecfd2018.org/admin/Files/FileAbstract/a126.pdf MS126: Reduced order modeling with error control and adaptivity]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.eccm-ecfd2018.org/admin/Files/FileAbstract/a130.pdf MS130: Advances in reduced basis techniques for flow problems in analysis, control and optimization]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.eccm-ecfd2018.org/admin/Files/FileAbstract/a149.pdf MS149: Model order reduction for multiscale problems in geo-engineering]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.eccm-ecfd2018.org/admin/Files/FileAbstract/a170.pdf MS170: Reduced order modeling for uncertainty quantification in subsurface flow problems]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.eccm-ecfd2018.org/admin/Files/FileAbstract/a192.pdf MS192: Developments in reduced-order modelling of the cardiovascular system -- methods and applications.]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* &amp;quot;[http://www.itm.uni-stuttgart.de/iutam2018/ IUTAM Symposium on Model Order Reduction for Coupled Systems (MORCOS18)]&amp;quot; May 22nd - 25th, 2018; Stuttgart (Germany)&lt;br /&gt;
&lt;br /&gt;
* &amp;quot;[https://sites.google.com/view/rom4cvs Workshop on Reduced Models for the Cardiovascular Systems]&amp;quot; April 26th - 27th, 2018; Atlanta (USA)&lt;br /&gt;
&lt;br /&gt;
* Sessions at &amp;quot;[http://www.siam.org/meetings/uq18/ SIAM Conference on Uncertainty Quantification 2018]&amp;quot; April 16th - 20th, 2018; Garden Grove (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63738 MS5 - Model reduction and fast sampling methods for Bayesian inference - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63739 MS18 - Model reduction and fast sampling methods for Bayesian inference - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63731 MS54 - Dimension reduction in Bayesian inference - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63732 MS67 - Dimension reduction in Bayesian inference - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63733 MS80 - Dimension reduction in Bayesian inference - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63754 MS39 - recent advances in model reduction and data-enabled modeling - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63755 MS53 - recent advances in model reduction and data-enabled modeling - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63756 MS66 - recent advances in model reduction and data-enabled modeling - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63821 MS75 - Reduced Order Modeling for Uncertainty Quantification Targeting Exascale Computing Applications]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63791 MS79 - Reduced-order modeling techniques for large-scale UQ problems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63792 MS93 - Reduced-order modeling techniques for large-scale UQ problems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63817 MS106 - Advances in Reduced Order Modeling for Uncertainty Quantification - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63818 MS119 - Advances in Reduced Order Modeling for Uncertainty Quantification - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=64390 CP2 - Reduced-order Modeling and Dynamical Systems I]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=64404 CP13 - Reduced-order Modeling and Dynamical Systems II]&amp;quot;&lt;br /&gt;
* &amp;quot;[http://morepas2018.sciencesconf.org MoRePaS 2018 - Model Reduction of Parametrized Systems IV]&amp;quot; April 9th - 13th, 2018; Nantes (France)&lt;br /&gt;
* &amp;quot;[http://www.newton.ac.uk/event/unqw03 Reducing dimensions and cost for UQ in complex systems]&amp;quot; March 5th - 9th, 2018; Cambridge (UK)&lt;br /&gt;
* Minisymposium at [http://www.mathmod.at/ 9th MathMod] February 21st - 23rd, 2018; Vienna (Austria)&lt;br /&gt;
** &amp;quot;Model Reduction&amp;quot;&lt;br /&gt;
* &amp;quot;[https://sisu.ut.ee/eu_mornet/node/17747 EU-MORNET Workshop]&amp;quot; February 8th - 9th, 2018; Tartu (Estonia)&lt;br /&gt;
* &amp;quot;[http://www.jade-hs.de/unsere-hochschule/fachbereiche/ingenieurwissenschaften/forschung-und-praxis/modellierung-und-simulation-mechatronischer-systeme/february-2nd-2018-eu-mornet-workshop-mor-4-mechatronics/ MOR 4 MECHATRONICS]&amp;quot; February 2nd, 2018; Wilhemshaven (Germany&lt;br /&gt;
&lt;br /&gt;
=== 2017 ===&lt;br /&gt;
&lt;br /&gt;
* [http://math.lbl.gov/~mjzahr/wcrw2017/ West Coast ROM Workshop], November 17th, 2017; Berkeley (USA)&lt;br /&gt;
* &amp;quot;[http://www.imus.us.es/IWROM4/ MORTech 2017]&amp;quot; November 8th - 10th; Seville (Spain)&lt;br /&gt;
* &amp;quot;[http://www.math.rug.nl/gcsc/morschool.html Groningen Autumn School on Model Order Reduction]&amp;quot; October 30th - November 1st, 2017; Groningen (Netherlands)&lt;br /&gt;
* Minisymposia at [http://www.uib.no/en/enumath2017 ENUMATH 2017] September 25th - 29th, 2017; Voss (Norway)&lt;br /&gt;
** &amp;quot;[http://www.uib.no/en/enumath2017/98144/minisymposia MS10 - Reduced order models for time-dependent problems]&amp;quot; &lt;br /&gt;
** &amp;quot;[http://www.uib.no/en/enumath2017/98144/minisymposia MS28 - Model reduction methods for simulation and (optimal) control]&amp;quot;&lt;br /&gt;
* &amp;quot;[http://scale-freeback.eu/grenoble-workshop-2017/ Modelling Reduction Tools for Large Scale Complex Networks]&amp;quot; September 21st - 22nd, 2017; Grenoble (France)&lt;br /&gt;
* &amp;quot;[http://www.rbss2017.de Reduced Basis (and Friends) Summer School 2017]&amp;quot; September 19th - 22nd, 2017; Goslar (Germany)&lt;br /&gt;
* &amp;quot;[http://www.gipsa-lab.fr/summerschool/auto2017/ Approximation of Large-Scale Dynamical Models]&amp;quot; September 11th - 15th, 2017; Grenoble (France)&lt;br /&gt;
* &amp;quot;[http://www.rt.mw.tum.de/workshops-seminare/2-mor-doktoranden-workshop/ 2. MOR Doktoranden-Workshop]&amp;quot; September 6th - 8th, 2017; Munich (Germany)&lt;br /&gt;
* &amp;quot;[http://www.maths.dur.ac.uk/lms/107/index.html EPSRC Durham Symposium Model Order Reduction]&amp;quot; August 7th - 17th, 2017; Durham (UK)&lt;br /&gt;
* &amp;quot;[http://modelreduction.net/workshops/6th-international-workshop 6th International Workshop on Model Reduction in Reacting Flows]&amp;quot; July 11th - 14th, 2017; Princeton (USA)&lt;br /&gt;
* &amp;quot;[http://www.siam.org/meetings/dr17/ SIAM Workshop on Parameter Space Dimension Reduction (DR17)]&amp;quot; July 9th - 10th, 2017; Pittsburgh (USA)&lt;br /&gt;
* &amp;quot;[https://www.math.vt.edu/GFD_conference2017/ Conference on Classical and Geophysical Fluid Dynamics: Modeling, Reduction and Simulation]&amp;quot; June 26th - 28th, 2017; Blacksburg (USA) &lt;br /&gt;
* Session at [http://acc2017.a2c2.org/ American Control Conference] May 24th - 26th, 2017; Seattle (USA)&lt;br /&gt;
** &amp;quot;[https://css.paperplaza.net/conferences/scripts/rtf/2017ACC_ContentListWeb_3.html#thc05 Reduced Order Modeling]&amp;quot;&lt;br /&gt;
* &amp;quot;[http://eumornetlux.weebly.com/ 2nd Exploratory Workshop on Applications of Model Order Reduction Methods in Industrial Research and Development]&amp;quot; March 10th, 2017; Luxembourg (Luxembourg)&lt;br /&gt;
* &amp;quot;[http://www.eu-mor.net/model-reduction-course-hydra/ Model Reduction Course HYDRA]&amp;quot; March 6th - 9th, 2017; Eindhoven (Netherlands)&lt;br /&gt;
* Minisymposia at [http://www.siam.org/meetings/cse17/ SIAM CSE&#039;17] February 27th, 2017; Atlanta (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=60778 MS8 - Smooth, Reduced, Sparse -- Exploiting Structures for Surrogate Modeling in CSE - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=60779 MS37 - Smooth, Reduced, Sparse -- Exploiting Structures for Surrogate Modeling in CSE- Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=60819 MS66 - Smooth, Reduced, Sparse -- Exploiting Structures for Surrogate Modeling in CSE - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=60968 MS75 - Model Reduction Software: Nonlinear Problems and Data-Driven Solutions]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=61076 MS106 - Reduced Order Models for Fluids: Achievements and Open Problems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=61077 MS133 - Reduced Order Models for Fluids: Achievements and Open Problems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=61078 MS161 - Reduced Order Models for Fluids: Achievements and Open Problems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=61079 MS188 - Reduced Order Models for Fluids: Achievements and Open Problems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=60854 MS107 - Model Order Reduction: Perspectives from Junior Researchers - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=61077 MS134 - Model Order Reduction: Perspectives from Junior Researchers - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=61070 MS145 - Reduced Order Modeling Techniques in Large Scale &amp;amp; Data-Driven PDE Problems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=61071 MS172 - Reduced Order Modeling Techniques in Large Scale &amp;amp; Data-Driven PDE Problems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=60909 MS162 - Model Reduction for Optimal Control Problems: Perspectives from Junior Researchers - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=60910 MS189 - Model Reduction for Optimal Control Problems: Perspectives from Junior Researchers - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=61275 MS313 - Model and Solution Reduction Methods in Computational Mechanics: Challenges and Perspectives]&amp;quot;&lt;br /&gt;
* &amp;quot;[http://www.hda2017.unsw.edu.au 7th Workshop on High-Dimensional Approximation]&amp;quot; February 13th - 17th, 2017; Sydney (Australia)&lt;br /&gt;
* &amp;quot;[http://matperso.mines-paristech.fr/Personnel/david.ryckelynck Doctoral Workshop on Model Reduction in Nonlinear Mechanics]&amp;quot; February 13th - 17th, 2017; Paris (France)&lt;br /&gt;
* &amp;quot;[http://www.mpi-magdeburg.mpg.de/csc/events/modred2017 3rd Workshop on Model Reduction of Complex Dynamical Systems]&amp;quot; January 11th - 13th, 2017; Odense (Denmark)&lt;br /&gt;
&lt;br /&gt;
=== 2016 ===&lt;br /&gt;
&lt;br /&gt;
* &amp;quot;[http://www.komso.org/events/challenge-workshops/reduced-order-modeling-simulation-and-optimization-powerful-algorithms Reduced-Order Modeling for Simulation and Optimization: Powerful Algorithms as Key Enablers for Scientific Computing]&amp;quot; November 17th - 18th; Renningen (Germany)&lt;br /&gt;
* Workshop &amp;quot;[http://www.ihp.fr/en/CEB/T3-2016/workshop2 Recent developments in numerical methods for model reduction]&amp;quot; November 7th - 10th, 2016; Paris (France)&lt;br /&gt;
* &amp;quot;[http://www.mpi-magdeburg.mpg.de/3104866/RBSS2016 Reduced Basis Summer School 2016]&amp;quot; October 4th - 7th, 2016; Hedersleben (Germany)&lt;br /&gt;
* Workshop on &amp;quot;[http://www.eventbrite.it/e/reduced-order-modelling-and-multi-physics-coupling-for-reactor-applications-registration-24511634960 Reduced Order Modelling and Multiphysics Coupling for Rector Application]&amp;quot; September 30th, 2016; Milano (Italy)&lt;br /&gt;
* &amp;quot;[http://alop.uni-trier.de/event/alop-workshop-reduced-order-models-in-optimization/ ALOP Workshop: Reduced Order Models in Optimization] September 26th - 28th, 2016; Trier (Germany)&lt;br /&gt;
* &amp;quot;[http://www.mathos.unios.hr/index.php/443 Workshop on Model Reduction Methods and Optimization]&amp;quot; September 20th - 21st, 2016; Opatija (Croatia)&lt;br /&gt;
* &amp;quot;[http://www.mechbau.uni-stuttgart.de/EMMA/worm2016 3rd International Workshop on Order-Reduction Methods for Mechanics of Materials]&amp;quot; August 29th - 31st, 2016; Bad Herrenalb (Germany)&lt;br /&gt;
* Sessions at [http://www.siam.org/meetings/an16/ SIAM Annual Meeting 2016] 11th - 15, 2016; Boston (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23289 MS32 - Reduced Order Modeling Techniques in Uncertainty Quantification - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23290 MS46 - Reduced Order Modeling Techniques in Uncertainty Quantification - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23600 MS70 - Model Reduction and Krylov-Subspace Methods]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23394 MS71 - Model Reduction for Inverse Problems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23395 MS87 - Model Reduction for Inverse Problems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23453 MS103 - Model Reduction for Wavefield Simulations - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23454 MS118 - Model Reduction for Wavefield Simulations - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23099 MS104 - Model Reduction of Parametrized PDEs in Continuum Mechanics - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23100 MS119 - Model Reduction of Parametrized PDEs in Continuum Mechanics - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23146 MS137 - Model Reduction of Parametrized PDEs: Application to Optimization and Uncertainty Quantification]&amp;quot;&lt;br /&gt;
* Minisymposium &amp;quot;[http://ilas2016.cs.kuleuven.be/minisymposium.php?sid=41 Data-Driven Model Reduction]&amp;quot; at ILAS July 11th - 15th, 2016; Leuven (Belgium)&lt;br /&gt;
* Sessions at [http://sites.google.com/a/umn.edu/mtns-2016/ 22nd International Symposium on Mathematical Theory of Networks and Systems], July 11th - 15th, 2016; Minnesota (USA)&lt;br /&gt;
** &amp;quot;[http://controls.papercept.net/conferences/conferences/MTNS16/program/MTNS16_ContentListWeb_1.html#tua06 Model Reduction I]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://controls.papercept.net/conferences/conferences/MTNS16/program/MTNS16_ContentListWeb_1.html#tub06 Model Reduction II]&amp;quot; &lt;br /&gt;
* Session at [http://ecc16.eu European Control conference 2016], June 29th - July 1st, 2016; Aalborg (Denmark)&lt;br /&gt;
**  &amp;quot;[http://controls.papercept.net/conferences/conferences/ECC16/program/ECC16_ContentListWeb_4.html#fra6 Model Reduction]&amp;quot; &lt;br /&gt;
* Seminar &amp;quot;[http://www.aices.rwth-aachen.de/news-events/eu-regional-school/eu-regional-school-2016/courses/heinkenschloss-seminar Model Reduction in PDE Constrained Optimization]&amp;quot; at EU Regional School, June 14th - 15th, 2016; Aachen (Germany)&lt;br /&gt;
* Minisymposium &amp;quot;Reduced Basis, POD and PGD Model Order Reduction Techniques&amp;quot; at [http://www.eccomas2016.org ECCOMAS Congress 2016] June 5th - 10th, 2016; Crete Island (Greece)&lt;br /&gt;
* Workshop on &amp;quot;[http://www.eu-mor.net/workshop-model-order-reduction-control-inverse-problems-morcip-2016/ Model Order Reduction for Control and Inverse Problems (MORCIP)]&amp;quot; May 19th - 20th, 2016; Lausanne (Switzerland)&lt;br /&gt;
* Spring School &amp;quot;[http://www.ercoftac.org/events/ercoftac_montestigliano_spring_school_2016/ Reduced-order models for non-linear dynamics in fluid flows]&amp;quot; May 17th - 23rd, 2016; Siena (Italy)&lt;br /&gt;
* Sessions at [http://www.siam.org/meetings/uq16/ SIAM Conference on Uncertainty Quantification] April 5th - 8th, 2016; Lausanne (Switzerland)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=21926 MS13 - Reduced Order Modelling for UQ PDEs Problems: Optimization, Control, Data Assimilation - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=21927 MS28 - Reduced Order Modelling for UQ PDEs Problems: Optimization, Control, Data Assimilation - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=22194 MS89 - Reduced-order Modeling in Uncertainty Quantification - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=22195 MS104 - Reduced-order Modeling in Uncertainty Quantification - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=22196 MS119 - Reduced-order Modeling in Uncertainty Quantification - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=22362 MS149 - Model Reduction in Stochastic Dynamical Systems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=22363 MS164 - Model Reduction in Stochastic Dynamical Systems - Part II of II]&amp;quot;&lt;br /&gt;
* Workshop &amp;quot;[http://www.ians.uni-stuttgart.de/agh/misc/events/morml2016/index.html Data-Driven Model Order Reduction and Machine Learning (MORML 2016)]&amp;quot; March 30th - April 1st, 2016; University of Stuttgart (Germany)&lt;br /&gt;
* Symposium &amp;quot;[http://www.humboldt-foundation.de/web/gafos-2016-sessions.html Model Reduction for Complex Systems]&amp;quot; at [http://www.humboldt-foundation.de/web/gafos-2016.html 20th German-American Symposium] March 10th - 13th, 2016; Potsdam (Germany)&lt;br /&gt;
* &amp;quot;Doctoral Workshop on Model Reduction in nonlinear dynamics of fluids and structures&amp;quot; January 25th - 29th, 2016; Paris (France)&lt;br /&gt;
&lt;br /&gt;
=== 2015 ===&lt;br /&gt;
&lt;br /&gt;
* West Coast ROM Workshop, November 19th, 2015; Livermore (USA)&lt;br /&gt;
* [http://sites.google.com/site/mor4mems2015/ MOR 4 MEMS] November 17th - 18th, 2015; Karlsruhe (Germany). [http://www2.mpi-magdeburg.mpg.de/mpcsc/events/MOR4MEMS2015/ Here] you find the presentation slides.&lt;br /&gt;
* [http://rom2015.sciencesconf.org Reduced Basis, POD and PGD Model Reduction Techniques] November 4th - 6th, 2015; Cachan (France)&lt;br /&gt;
* [http://eumornetlux.weebly.com/ Exploratory Workshop on Applications of Model Order Reduction Methods in Industrial Research and Development] November 6th, 2015; Luxembourg (Luxembourg)&lt;br /&gt;
* [http://indico.sissa.it/event/4/ MoRePaS III] October 13th - 16th, 2015; Trieste (Italy)&lt;br /&gt;
* [http://www.mathos.unios.hr/index.php/351 3rd International School on Model Reduction for Dynamical Control Systems] October 5th - 10th, 2015; Dubrovnik (Croatia)&lt;br /&gt;
* Minisymposium &amp;quot;[http://enumath2015.iam.metu.edu.tr/minisymposia20.html Local and adaptive model reduction for partial differential equations]&amp;quot; at [http://enumath2015.iam.metu.edu.tr ENuMath] September 14th - 18th, 2015; Ankara (Turkey)&lt;br /&gt;
* Minisymposium &amp;quot;[http://scicade2015.math.uni-potsdam.de/scicade2015/minisymposiadetails.html#MS34 Parametric Model Order Reduction: Challenges and Solutions]&amp;quot; at [http://scicade2015.math.uni-potsdam.de SciCADE] September 14th - 18th, 2015; Potsdam (Germany)&lt;br /&gt;
* [http://www.math.uni-konstanz.de/numerik/pod/rbss_2015/ Reduced Basis Summer School 2015] September 14th - 18th, 2015; Konstanz (Germany)&lt;br /&gt;
* [http://www.cs.cas.cz/more2015/index.php Workshop on MOdel REduction] September 6th - 10th, 2015; Pilsen (Czech Republic)&lt;br /&gt;
* Session at [http://www.iciam2015.cn 8th International Congresson Industrial and Applied Mathematics] August 10th - 14th, 2015; Beijing (China)&lt;br /&gt;
** &amp;quot;[http://www.iciam2015.cn/ICIAM%202015-program.pdf#MS-Mo-D-32.88 MS-Mo-D-32 - Reduced-order modeling in uncertainty quantification and computational fluiddynamics - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.iciam2015.cn/ICIAM%202015-program.pdf#MS-Mo-E-32.aD MS-Mo-E-32 - Reduced-order modeling in uncertainty quantification and computational fluiddynamics - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.iciam2015.cn/ICIAM%202015-program.pdf#MS-We-E-03.cC MS-We-E-03 - Reduced-order modeling in uncertainty quantification and computational fluiddynamics - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.iciam2015.cn/ICIAM%202015-program.pdf#MS-We-E-55.XZ MS-We-E-55 - New advances in model order reduction:  methods, algorithms, and applications - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.iciam2015.cn/ICIAM%202015-program.pdf#MS-Th-BC-55.A6 MS-Th-BC-55 - New advances in model order reduction:  methods, algorithms, and applications - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.iciam2015.cn/ICIAM%202015-program.pdf#MS-Tu-E-14.1F MS-Tu-E-14 - Optimality in reduced order modeling and inversion - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.iciam2015.cn/ICIAM%202015-program.pdf#MS-We-D-14.l1 MS-We-D-14 - Optimality in reduced order modeling and inversion - Part II of II]&amp;quot;&lt;br /&gt;
* Reduced Order Methods Session at [http://www.yic.rwth-aachen.de/ YIC GACM ACCCES] July 20th - 23rd; Aachen (Germany)&lt;br /&gt;
* Session at [https://desreg.jku.at/ecc15/ European Control Conference 2015] July 15th -17th, 2015; Linz (Austria)&lt;br /&gt;
** &amp;quot;[http://controls.papercept.net/conferences/conferences/ECC15/program/ECC15_ContentListWeb_2.html#wea11 Model Reduction I]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://controls.papercept.net/conferences/conferences/ECC15/program/ECC15_ContentListWeb_2.html#wec11 Model Reduction II]&amp;quot;&lt;br /&gt;
* [http://modelreduction.net/workshops/5th-annual 5th International Workshop on Model Reduction in Reacting Flows] June 28th - July 1st; Spreewald (Germany)&lt;br /&gt;
* [http://www3.math.tu-berlin.de/numerik/MoRTransPhen/ Model Reduction for Transport Dominated Phenomena] May 19th - 20th; Berlin (Germany)&lt;br /&gt;
* International Symposium: [http://www.tum-ias.de/bigdata2015/program.html Big Data and Predictive Computational Modelling] May 18th - 21st, 2015; München (Germany) &lt;br /&gt;
* Minisymposia at [http://www.siam.org/meetings/cse15 SIAM Conference on Computational Science and Engineering] March 14th - 18th, 2015; Salt Lake City (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=20081 MS4 - Adaptive Model Order Reduction - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=20082 MS30 - Adaptive Model Order Reduction - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=20083 MS55 - Adaptive Model Order Reduction - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=20296 MS91 - Parametric Model Reduction and Inverse Problems - Part I of IV]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=20297 MS116 - Parametric Model Reduction and Inverse Problems - Part II of IV]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=20300 MS143 - Parametric Model Reduction and Inverse Problems - Part III of IV]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=20301 MS169 - Parametric Model Reduction and Inverse Problems - Part IV of IV]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=19988 MS148 - Reduced-order Models for PDE-constrained Optimization Problems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=19989 MS174 - Reduced-order Models for PDE-constrained Optimization Problems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=19907 MS187 - Recent Advances in Model Reduction - Part I of V]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=19908 MS211 - Recent Advances in Model Reduction - Part II of V]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=19960 MS236 - Recent Advances in Model Reduction - Part III of V]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=19961 MS260 - Recent Advances in Model Reduction - Part IV of V]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=19962 MS285 - Recent Advances in Model Reduction - Part V of V]&amp;quot;&lt;br /&gt;
* Session at [http://www.mathmod.at Vienna Conference on Mathematical Modelling (MathMod)] February 18th - 20th, 2015; Vienna (Austria)&lt;br /&gt;
** &amp;quot;Model Reduction&amp;quot;&lt;br /&gt;
* [http://congress.cimne.com/mor/frontal/objectives.asp Short Course on Model Order Reduction] January 26th - 29th, 2015; Barcelona (Spain)&lt;br /&gt;
&lt;br /&gt;
=== 2014 ===&lt;br /&gt;
* [http://www.mfo.de/occasion/1448b/www_view Oberwolfach Seminar on Projection Based Model Reduction] November 23rd - 29th, 2014; Oberwolfach (Germany)&lt;br /&gt;
* [http://eu-mor.net EU-MORNET] Kick-Off Meeting September 18th - 19th; Eindhoven (Netherlands)&lt;br /&gt;
* [http://www2.le.ac.uk/departments/mathematics/extranet/conferences/model-reduction-across-disciplines Model reduction across disciplines] August 19th - 22nd, 2014; Leicester (United Kingdom) &lt;br /&gt;
* [http://wwwmath.uni-muenster.de/rbss2014 Reduced Basis Summer School 2014] August 18th - 22nd, 2014; Muenster (Germany)&lt;br /&gt;
* Bay Area ROM Workshop, August 7th, 2014; Livermore (USA)&lt;br /&gt;
&lt;br /&gt;
* Minisymposia at [http://www.wccm-eccm-ecfd2014.org IACM-ECCOMAS 2014] July 20th - 25th, 2014; Barcelona (Spain)&lt;br /&gt;
** &amp;quot;[http://congress.cimne.com/iacm-eccomas2014/admin/Files/FileAbstract/a239.pdf MS239: Multibody System Dynamics and Modal Reduction]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://congress.cimne.com/iacm-eccomas2014/admin/Files/FileAbstract/a15.pdf MS015: Reduced Basis, POD and PGD Model Reduction Techniques]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://congress.cimne.com/iacm-eccomas2014/admin/Files/FileAbstract/a141.pdf MS141: Reduced Order Models in Vibroacoustics]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://congress.cimne.com/iacm-eccomas2014/admin/Files/FileAbstract/a69.pdf MS069: Advanced Reduced-order Modeling Strategies for Parametrized PDEs and Applications]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* Session at [http://www.siam.org/meetings/an14/ SIAM Annual Meeting 2014], July 7th - 11th; Chicago (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=19618 CP1 - Reduced Order Models]&amp;quot;&lt;br /&gt;
* Sessions at the [http://ecc14.eu European Control Conference 2014] June 24th- 27th, 2014; Strasbourg (France)&lt;br /&gt;
** &amp;quot;[https://controls.papercept.net/conferences/conferences/ECC14/program/ECC14_ContentListWeb_3.html#tha2 Model and Controller Reduction I]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://controls.papercept.net/conferences/conferences/ECC14/program/ECC14_ContentListWeb_4.html#frc2 Model and Controller Reduction II]&amp;quot;&lt;br /&gt;
* Session at [http://acc2014.a2c2.org/ American Control Conference] June 4th - 6th, 2014; Portland (USA)&lt;br /&gt;
** &amp;quot;[https://css.paperplaza.net/conferences/conferences/2014ACC/program/2014ACC_ContentListWeb_1.html#wea04 Reduced Order Modeling]&amp;quot;&lt;br /&gt;
* Sessions at [http://siam.org/meetings/uq14/ SIAM Conference on Uncertainty Quantification] March 31st - April 3rd; Savannah (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=18137 MS10 - Model-Reduction Techniques for Quantifying and Controlling Uncertainty]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=18298 MT3 - Reduced Order Methods for Modelling and Computational Reduction in UQ Problems]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=18664 CP11 - Reduced-order Modeling]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=18192 MS67 - Surrogate and Reduced Order Modeling for Statistical Inversion and Prediction - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=18193 MS77 - Surrogate and Reduced Order Modeling for Statistical Inversion and Prediction - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=17858 MS87 - Uncertainty Quantification via Dimension Reduction: Deterministic and Stochastic Approaches]&amp;quot;&lt;br /&gt;
* [http://jahrestagung.gamm-ev.de/index.php/scientific-program/minisymposia Parametric Model Reduction of Dynamical Systems] Minisymposium at the [http://jahrestagung.gamm-ev.de/ GAMM annual meeting 2014] March 10th - 14th, 2014; Erlangen (Germany)&lt;br /&gt;
&lt;br /&gt;
===2013===&lt;br /&gt;
* [http://www2.mpi-magdeburg.mpg.de/mpcsc/events/ModRed/2013/ ModRed 2013] December 11th - 13th, 2013; Magdeburg (Germany)&lt;br /&gt;
* [http://www.mathos.unios.hr/locschool2013/ DAAD International School on Linear Optimal Control of Dynamic Systems] September 23rd - 28th; Osijek (Croatia)&lt;br /&gt;
* [http://www.ma.tum.de/IGDK1754/SummerSchool2013 Summerschool &amp;quot;Reduced Basis Methods - Fundamentals and Applications&amp;quot;] September 16th - 19th; Munich (Germany)&lt;br /&gt;
* Reduced Basis Summer School 2013 August, 2013; Aachen (Germany)&lt;br /&gt;
* [http://enumath2013.epfl.ch Enumath] Minisymposium &amp;quot;Reduced order modelling for the simulation of complex systems&amp;quot; August 26th - 30th, 2013, Lausanne (Switzerland)&lt;br /&gt;
* Sessions at the [http://www.ecc13.ethz.ch European control Conference 2013] July 17th - 19th, 2013; Zurich (Switzerland)&lt;br /&gt;
** &amp;quot;[https://controls.papercept.net/conferences/conferences/ECC13/program/ECC13_ContentListWeb_4.html#fra12 Reduced Order Systems]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://controls.papercept.net/conferences/conferences/ECC13/program/ECC13_ContentListWeb_4.html#frc12 Model Reduction]&amp;quot;&lt;br /&gt;
* [http://modelreduction.net/workshops/4th-annual 4th International Workshop on Model Reduction in Reacting Flows] June 19th - 21st, 2013, San Francisco (USA)&lt;br /&gt;
* Sessions at [http://acc2013.a2c2.org American Control Conference] June 17th - 19th, 2013; Washington D.C. (USA)&lt;br /&gt;
** &amp;quot;[https://css.paperplaza.net/conferences/conferences/2013ACC/program/2013ACC_ContentListWeb_3.html#web05 Reduced-Order Modeling]&amp;quot;&lt;br /&gt;
* [http://modredcirm2013.uni-muenster.de/ CIRM workshop Model Reduction and Approximation for Complex Systems] June 10th - 14th, 2013; Marseille (France)&lt;br /&gt;
* [http://www.tapir.caltech.edu/~rom-gr/ Reduced Order Modelling in General Relativity] June 6th - 7th, 2013; Pasadena (USA)&lt;br /&gt;
* Sessions at the [http://www.siam.org/meetings/cse13 SIAM Conference on Computational Science and Engineering] February 25th - March 1st; Boston (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15551 MS20 - Structure-preserving Model Order Reduction of Large-scale Dynamical Systems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15552 MS40 - Structure-preserving Model Order Reduction of Large-scale Dynamical Systems - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15728 MS14 - Model Reduction and Surrogate Modeling Advances in Porous Media Flow Simulation and Optimization - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15729 MS34 - Model Reduction and Surrogate Modeling Advances in Porous Media Flow Simulation and Optimization - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15547 MS104 - Data-Driven Model Reduction - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15548 MS138 - Data-Driven Model Reduction - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15549 MS194 - Data-Driven Model Reduction - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15676 MS144 - Nonlinear Model Reduction of Complex Flows: Modeling, Analysis, and Computations - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15677 MS182 - Nonlinear Model Reduction of Complex Flows: Modeling, Analysis, and Computations - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15639 MS45 - Data Driven and Nonliner Model Reduction - Parts I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15640 MS68 - Data Driven and Nonliner Model Reduction - Parts II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15641 MS116 - Data Driven and Nonliner Model Reduction - Parts III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15422 MS95 - Reduced Order Modelling for Complex Systems in CFD - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15423 MS164 - Reduced Order Modelling for Complex Systems in CFD - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15424 MS244 - Reduced Order Modelling for Complex Systems in CFD - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15758 MS219 - Model Order Reduction: Recent Advances and Challenges - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15759 MS257 - Model Order Reduction: Recent Advances and Challenges - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15760 MS272 - Model Order Reduction: Recent Advances and Challenges - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=15952 CP12 - Model Reduction and Data-Driven Approaches]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===2012===&lt;br /&gt;
* [http://www.morepas.org/workshop2012/index.html MoRePaS 2] October 2nd - 5th, 2012; Günzburg (Germany)&lt;br /&gt;
* [http://www.mathematik.uni-stuttgart.de/fak8/ians/lehrstuhl/agh/misc/events/rbm_workshop_2012.html Reduced Basis Summer School 2012] August 28th - 31st; Stuttgart (Germany)&lt;br /&gt;
* [http://www.math.uni-hamburg.de/moa/ Workshop on Adaptivity and Model Order Reduction in PDE Constrained Optimization] July 23rd - 27th; Hamburg (Germany)&lt;br /&gt;
* Sessions at [http://acc2012.a2c2.org/ American Control Conference] June 27th - 29th, 2012; Montreal (Canada)&lt;br /&gt;
** &amp;quot;[https://css.paperplaza.net/conferences/conferences/2012ACC/program/2012ACC_ContentListWeb_1.html#wec20 Reduced Order Modeling]&amp;quot;&lt;br /&gt;
* [https://www.cecam.org/workshop-2-681.html Reduced Basis, POD and Reduced Order Methods for model and computational reduction: towards real-time computing and visualization?] May 14 - 16th; Lausanne (Switzerland)&lt;br /&gt;
* [https://www2.mpi-magdeburg.mpg.de/mpcsc/news/program_tegernsee.pdf Workshop on Nonlinear MOR] May 6th - 9th; Tegernsee (Germany)&lt;br /&gt;
* Minisymposia at [http://siam.org/meetings/uq12/ SIAM Conference on Uncertaity Quantification] April 2nd - 6th; Raleigh (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=14305 MS58 - Model Reduction for Nonlinear Dynamical Systems]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=14520 MS80 - Reduced Order Modeling for High Dimensional Nonlinear Models]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===2011===&lt;br /&gt;
* [http://www.math.uni-konstanz.de/numerik/pod/workshop Advances in POD and RB Model-Order Reduction] November 21st, 2011; Konstanz (Germany)&lt;br /&gt;
* [http://www.uni-ulm.de/mawi/mawi-numerik/aktuelles/summer-school-rbm.html Reduced Basis Summer School 2011] October 25th - 28th; Ulm (Germany)&lt;br /&gt;
* [http://www2.mpi-magdeburg.mpg.de/mpcsc/events/trogir/ Summer School on Numerical Linear Algebra for Dynamical and High-Dimensional Problems] October 10th - 15th; Trogir (Croatia)&lt;br /&gt;
* [http://www.math.uni-bremen.de/zetem/cms/detail.php?template=gamm_parse_title&amp;amp;person=gamm11/program GAMM Workshop Applied and Numerical Linear Algebra with Special Emphasis on Model Reduction] September 21st - 22nd; Bremen (Germany)&lt;br /&gt;
* Sessions at [http://iciam.org/event/iciam-2011-%E2%80%93-vancouver 7th International Congress on Industrial and Applied Mathematics] July 18th - 22nd; Vancouver (Canada)&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11230 MS38 - Optimal Parameter Sampling in Model Reduction - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11231 MS87 - Optimal Parameter Sampling in Model Reduction - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11232 MS136 - Optimal Parameter Sampling in Model Reduction - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11296 MS148 - Structure-Preserving Model Reduction - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11297 MS199 - Structure-Preserving Model Reduction - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11298 MS256 - Structure-Preserving Model Reduction - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11452 MS340 - Dynamical Systems Approaches to Model Reduction -- Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=12051 MS388 - Dynamical Systems Approaches to Model Reduction -- Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11877 MS363 - Reduced Basis Methods and their Applications - Part I of IV]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11878 MS416 - Reduced Basis Methods and their Applications - Part II of IV]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11879 MS462 - Reduced Basis Methods and their Applications - Part III of IV]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11880 MS511 - Reduced Basis Methods and their Applications - Part IV of IV]&amp;quot;&lt;br /&gt;
** &amp;quot;[https://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=13350 CP36 - Reduced Order Models]&amp;quot;&lt;br /&gt;
* [http://www.modelreduction.net/iwmrrf2011/site/ 3rd International Workshop on Model Reduction in Reacting Flows] April 27th - 29th; Corfu (Greece)&lt;br /&gt;
* Session at the [http://siam.org/meetings/cse11 SIAM Conference on Computational Science and Engineering] February 28th - March 4th; Reno (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=10982 MS18 - Model Reduction of Nonlinear and Parametrized Systems - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=10983 MS26 - Model Reduction of Nonlinear and Parametrized Systems - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=10984 MS40 - Model Reduction of Nonlinear and Parametrized Systems - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=11497 MS39 - Model Order Reduction Using Graph Theory and Numerical Linear Algebra]&amp;quot;&lt;br /&gt;
* [http://www.wias-berlin.de/workshops/MOR2011/ Workshop on Model Order Reduction in Optimization and Control with PDEs] January 26th - 28th; Berlin (Germany)&lt;br /&gt;
&lt;br /&gt;
===2010===&lt;br /&gt;
* [http://www.ians.uni-stuttgart.de/MoRePaS/events/Ulm10/index.html Workshop on RB Methods] December 7th - 8th, 2010; Ulm (Germany)&lt;br /&gt;
* [http://www3.math.tu-berlin.de/modred2010/ ModRed 2010] December 2nd - 4th, 2010; Berlin (Germany)&lt;br /&gt;
* Sessions at [http://www.siam.org/meetings/an10/ SIAM Annual Meeting 2010], July 12th - 16th, 2010; Pittsburgh (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=10125 MS2 - Advances in Model Reduction for Large-Scale Problems - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=10126 MS38 - Advances in Model Reduction for Large-Scale Problems - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=10127 MS51 - Advances in Model Reduction for Large-Scale Problems - Part III of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=10202 MS33 - Reduced Order Models for Dynamical Systems]&amp;quot;&lt;br /&gt;
* Minisymposium &amp;quot;[http://www.eccomas-cfd2010.org/minisymposia.php Model Order Reduction of Complex Systems in CFD]&amp;quot; at [http://www.eccomas-cfd2010.org ECCOMAS CFD]; June 14th - 17th, 2010; Lisbon (Portugal)&lt;br /&gt;
&lt;br /&gt;
===2009===&lt;br /&gt;
* Sessions at [https://archive.siam.org/meetings/la09/index.php SIAM Conference on Applied Linear Algebra] October 26 th 29th, 2009; Monterey Bay-Seaside (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=8992 MS14 - Model Order Reduction for Dynamical Systems - Part I of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=8993 MS20 - Model Order Reduction for Dynamical Systems - Part II of III]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=8994 MS32 - Model Order Reduction for Dynamical Systems - Part III of III]&amp;quot;&lt;br /&gt;
* [http://www.win.tue.nl/casa/meetings/special/mor09/ Autumn School on Future Developments in Model Order Reduction] September 21st - 25th, 2009; Terschelling (Netherlands)&lt;br /&gt;
* [http://www.uni-muenster.de/CeNoS/ocs/index.php/MRP/MRP09/ MoRePaS] September 16th - 18th, 2009;  Münster (Germany)&lt;br /&gt;
* Session at [http://www.siam.org/meetings/an09/ SIAM Annual Meeting 2009] July 6th - 10th, 2009; Denver (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=8863 CP20 - Model Reduction]&amp;quot;&lt;br /&gt;
* [http://modelreduction.net/iwmrrf2009/ 2nd International Workshop on Model Reduction in Reacting Flows] March 30th - April 1st, 2009 Notre Dame (USA)&lt;br /&gt;
* [http://www.cl.eps.manchester.ac.uk/medialand/maths/archived-events/workshops/www.mims.manchester.ac.uk/events/workshops/HSMoR09/ CICADA Workshop on Hybrid Systems and Model Reduction] March 19th - 20th, 2009 Manchester (England)&lt;br /&gt;
* Sessions at the [http://siam.org/meetings/cse09 SIAM Conference on Computational Science and Engineering] March 2nd - 6th, 2009; Miami (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=8306 CP12 - Model Reduction]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=7918 MS106 - Model Reduction - Part I of V]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=7919 MS119 - Model Reduction - Part II of V]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=7920 MS127 - Model Reduction - Part III of V]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=7921 MS141 - Model Reduction - Part IV of V]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=7922 MS151 - Model Reduction - Part V of V]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===2008===&lt;br /&gt;
&lt;br /&gt;
* [https://www.math.uni-hamburg.de/spag/zms/syrene/ Model Reduction for Circuit Simulation] October 30th - 31st, 2008; Hamburg (Germany)&lt;br /&gt;
* Session at [http://acc2008.a2c2.org/ American Control Conference] June 11th - 13th, 2008; Seattle (USA)&lt;br /&gt;
** &amp;quot;[https://css.paperplaza.net/conferences/conferences/2008ACC/program/2008ACC_ContentListWeb_3.html#fra11 Model Reduction]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===2007===&lt;br /&gt;
* [http://www.win.tue.nl/casa/meetings/special/mor07/ Symposium on Recent Advances in Model Order Reduction] November 23rd, 2007; Eindhoven (Netherlands)&lt;br /&gt;
* [http://modelreduction.net/ModelReductionWorkshop/Home%20Page.html 1st International Workshop on Model Reduction in Reacting Flows] September 3rd - 5th, 2007; Rome (Italy)&lt;br /&gt;
* Sessions at [http://iciam.org/event/iciam-2007-%E2%80%93-zurich 6th International Congress for Industrial and Applied Mathematics] July 16th - 20th, 2007; Zurich (Switzerland)&lt;br /&gt;
** &amp;quot;[http://iciamold.jsiam.org/iciam2007/ICIAM07-ProgramBook.pdf#IC/MP/002/S/346 Model reduction: theory, methodology and software #1]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://iciamold.jsiam.org/iciam2007/ICIAM07-ProgramBook.pdf#IC/MP/002/S/346-2 Model reduction: theory, methodology and software #2]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://iciamold.jsiam.org/iciam2007/iciam07_programbook.pdf#IC/MP/020/S/347 Model reduction: structured and higher-order systems #1]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://iciamold.jsiam.org/iciam2007/iciam07_programbook.pdf#IC/MP/020/S/347-2 Model reduction: structured and higher-order systems #2]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://iciamold.jsiam.org/iciam2007/iciam07_programbook.pdf#IC/MP/020/P/348 Model reduction in circuit simulation #1]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://iciamold.jsiam.org/iciam2007/ICIAM07-ProgramBook.pdf#IC/MP/020/P/348-2 Model reduction in circuit simulation #2]&amp;quot;&lt;br /&gt;
* Session at [http://acc2007.a2c2.org/ American Control Conference] July 11th - 13th, 2007; New York (USA)&lt;br /&gt;
** &amp;quot;[https://css.paperplaza.net/conferences/conferences/2007ACC/program/2007ACC_ContentListWeb_1.html#web07 Reduced Order Modeling]&amp;quot;&lt;br /&gt;
* Sessions at [https://archive.siam.org/meetings/ct07/index.php SIAM Conference on Control and its Application] June 29th - July 1st, 2007; San Francisco (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=6338 MS16 - Model Reduction for Control and Dynamical Systems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=6339 MS21 - Model Reduction for Control and Dynamical Systems - Part II of II]&amp;quot;&lt;br /&gt;
* Sessions at [http://siam.org/meetings/cse07 SIAM Conference on Computational Science and Engineering] February 19th - 23rd, 2007; Costa Mesa (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=5955 MS36 - Model Order Reduction and Automated Behavioural Modeling - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=6029 MS48 - Model Order Reduction and Automated Behavioural Modeling - Part II of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=6137 CP12 - Reduced Order Modelling]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===2006===&lt;br /&gt;
* Session &amp;quot;Model Reduction&amp;quot; at [http://www.eurosime.org/b06.htm EuroSimE 2006] April 24th - 26th, 2006; Como (Italy)&lt;br /&gt;
&lt;br /&gt;
* Minisymposia at [http://www.siam.org/meetings/an06/index.php SIAM Annual Meeting 2006] July 10th - 14th, 2006; Boston (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=5357 MS13 - Model Reduction of Dynamical Systems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=5358 MS31 - Model Reduction of Dynamical Systems - Part II of II]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===2005===&lt;br /&gt;
* [http://www.lorentzcenter.nl/lc/web/2005/160/info.php3?wsid=160. Model order reduction, coupled problems and optimization] September 19th - 23rd, 2005; Leiden (Netherlands)&lt;br /&gt;
&lt;br /&gt;
* Minisymposia at [http://www.siam.org/meetings/an05/index.htm SIAM Annual Conference 2005] July 11th - 15th, 2005; New Orleans (USA)&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=4372 MS43 - Model Reduction for Large Scale Dynamical Systems - Part I of II]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=4373 MS55 - Model Reduction for Large Scale Dynamical Systems - Part II of II]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===2004===&lt;br /&gt;
* [https://www.birs.ca/events/2004/5-day-workshops/04w5513 Model Reduction Problems and Matrix Methods] April 3rd - 8th; Banff (Canada)&lt;br /&gt;
&lt;br /&gt;
===2003===&lt;br /&gt;
* [http://web.archive.org/web/20070612131401/http://www.math.tu-berlin.de/numerik/mt/NumMat/Meetings/0310_MFO/ Dimensional Reduction of Large-Scale Systems] October 19th - 25th, 2003 Oberwolfach (Germany)&lt;br /&gt;
&lt;br /&gt;
===2001===&lt;br /&gt;
* [https://research.tue.nl/en/activities/macsi-workshop-on-model-reduction MACSI workshop on Model Reduction] October 8th - 9th, 2001; Eindhoven (Netherlands)&lt;br /&gt;
* Minisymposium at [http://user.it.uu.se/~icosahom/ International Conference On Spectral and High Order Methods] June 11th - 15th, 2001; Uppsala (Sweden)&lt;br /&gt;
** &amp;quot;Reduced-Basis Methods for Partial Differential Equations&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===2000===&lt;br /&gt;
* Session at the [https://archive.siam.org/meetings/cse00/ First SIAM Conference on Computational Science and Engineering] September 21st - 24th, 2000; Washington D.C. (USA)&lt;br /&gt;
** &amp;quot;[https://archive.siam.org/meetings/cse00/cp25.htm CP25 - Model Reduction, Validation and Data Assimilation]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===1999===&lt;br /&gt;
* Minisymposia at the [http://iciam.org/event/iciam-1999-%E2%80%93-edinburgh 4th International Council for Industrial and Applied Mathematics Congress] July 5th - 9th, 1999; Edinburgh (Scotland)&lt;br /&gt;
** &amp;quot;[http://www.macs.hw.ac.uk/archive/iciam99/PrintedProgramme/BookOfAbstracts.pdf#page=171 MSP-187 Reduced-Order Modeling of Large-Scale Systems and Applications in Industry]&amp;quot;&lt;br /&gt;
** &amp;quot;[http://www.macs.hw.ac.uk/archive/iciam99/PrintedProgramme/BookOfAbstracts.pdf#page=187 MSP-205,206 Methods of Dimension Reduction]&amp;quot;&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=User:Kuerschner&amp;diff=3932</id>
		<title>User:Kuerschner</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=User:Kuerschner&amp;diff=3932"/>
		<updated>2024-09-02T16:46:31Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Patrick Kürschner&amp;lt;br/&amp;gt;&lt;br /&gt;
HTWK Leipzig&amp;lt;br/&amp;gt;&lt;br /&gt;
Mathematisch-Naturwissenschaftliches Zentrum&amp;lt;br/&amp;gt;&lt;br /&gt;
Zuse-Bau | Raum Z 415&amp;lt;br/&amp;gt;&lt;br /&gt;
Gustav-Freytag-Straße 42a&amp;lt;br/&amp;gt;&lt;br /&gt;
04277 Leipzig&amp;lt;br/&amp;gt;&lt;br /&gt;
Germany&lt;br /&gt;
&lt;br /&gt;
phone: ++49 341 3076 6497&amp;lt;br/&amp;gt;&lt;br /&gt;
www: https://mnz.htwk-leipzig.de/mnz/personen/professuren/prof-dr-rer-nat-patrick-kuerschner&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=Thanks&amp;diff=3931</id>
		<title>Thanks</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=Thanks&amp;diff=3931"/>
		<updated>2024-09-02T16:41:53Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Miscellaneous]]&lt;br /&gt;
&lt;br /&gt;
The MOR Wiki community thanks:&lt;br /&gt;
&lt;br /&gt;
* [[User:Baur]] for her editorial work on the Wiki and maintaining the mor.bib in the period from October 2013 to August 2016&lt;br /&gt;
* [[User:Feng]] for her editorial work on the Wiki in the period from October 2013 to May 2021&lt;br /&gt;
* [[User:Lund]] for her editorial work on the Wiki and the important initial steps on [[MORB]] during 2023/2024&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=Template:Editors&amp;diff=3930</id>
		<title>Template:Editors</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=Template:Editors&amp;diff=3930"/>
		<updated>2024-09-02T05:56:07Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* [[User:Saak]]&lt;br /&gt;
* [[User:Himpe]]&lt;br /&gt;
* [[User:Grundel]]&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=MORB&amp;diff=3929</id>
		<title>MORB</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=MORB&amp;diff=3929"/>
		<updated>2024-06-03T13:20:52Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A model order reduction benchmark (MORB) tool is currently under development. It is a demonstrator of the generic benchmark framework (MaRDIMark) developed for Task Area 2 of the Mathematical Research Data Initiative ([https://www.mardi4nfdi.de/about/task-areas MaRDI]) and will serve as an example of how to fairly compare different implementations of algorithms across a standardized benchmark set for scientific computing.&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
An overview of MaRDI and MORB are provided in the poster, which was presented at [https://more.sciencesconf.org/ Model Reduction and Surrogate Modeling (MORE)], 19-23 September 2022, Berlin, Germany.&lt;br /&gt;
&lt;br /&gt;
[[File:Morb2022.pdf|180px]]&lt;br /&gt;
&lt;br /&gt;
== mini-MORB (snapshot of MATLAB prototype) ==&lt;br /&gt;
A MATLAB prototype for linear-time-invariant, first-order systems (LTI-FOS) is largely operational.  An example [https://morwiki.mpi-magdeburg.mpg.de/morwiki/index.php/File:CdPlayer_n120m2q2.pdf report] for the [[CD Player]] benchmark is provided.&lt;br /&gt;
&lt;br /&gt;
Please also see the [https://onlinelibrary.wiley.com/doi/10.1002/pamm.202300147 report] published in [https://onlinelibrary.wiley.com/journal/16177061 PAMM], as well as the accompanying [https://zenodo.org/record/8093833 code] hosted at [https://zenodo.org Zenodo].&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
 @article{BenLS23,&lt;br /&gt;
     title = {Towards a benchmark framework for model order reduction in the {{Mathematical Research Data Initiative}} ({{MaRDI}})},&lt;br /&gt;
     author = {Benner, Peter and Lund, Kathryn and Saak, Jens},&lt;br /&gt;
     year = {2023},&lt;br /&gt;
     journal = {Proceeding Appl. Math. Mech.},&lt;br /&gt;
     doi = {10.1002/pamm.202300147},&lt;br /&gt;
     pages = {e202300147},&lt;br /&gt;
     volume = 23,&lt;br /&gt;
     number = 3&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
 @misc{mini-MORB,&lt;br /&gt;
     title = {mini-{{MORB}} ({{Model Order Reduction Benchmarker}})},&lt;br /&gt;
     author = {Lund, Kathryn and Saak, Jens and Benner, Peter},&lt;br /&gt;
     year = {2023},&lt;br /&gt;
     doi = {10.5281/zenodo.8093832}&lt;br /&gt;
 }&lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=ALBERTA_Rail_371&amp;diff=3923</id>
		<title>ALBERTA Rail 371</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=ALBERTA_Rail_371&amp;diff=3923"/>
		<updated>2024-04-11T16:01:12Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:benchmark]]&lt;br /&gt;
[[Category:ODE]]&lt;br /&gt;
[[Category:linear]]&lt;br /&gt;
[[Category:time invariant]]&lt;br /&gt;
[[Category:first differential order]]&lt;br /&gt;
[[Category:MIMO]]&lt;br /&gt;
[[Category:Sparse]]&lt;br /&gt;
&lt;br /&gt;
{{Infobox&lt;br /&gt;
|Title           = Steel Profile &amp;lt;!-- Deliberately the same as the original --&amp;gt;&lt;br /&gt;
|Benchmark ID    = &lt;br /&gt;
* steelProfile_n371m7q6 &amp;lt;!-- Deliberately similar to the original --&amp;gt;&lt;br /&gt;
|Category        = &lt;br /&gt;
|System-Class    = LTI-FOS&lt;br /&gt;
|nstates         = &lt;br /&gt;
* 371&lt;br /&gt;
|ninputs         = 7&lt;br /&gt;
|noutputs        = 6&lt;br /&gt;
|nparameters     = 0&lt;br /&gt;
|components      = A, B, C, E&lt;br /&gt;
|License         = CC-by 4.0&lt;br /&gt;
|Creator         =&lt;br /&gt;
* [[User:Saak]]&lt;br /&gt;
* Peter Benner&lt;br /&gt;
|Editor          = [[User:Saak]]&lt;br /&gt;
|Zenodo-link     = NA&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
This is a small configuration of the original [[Steel Profile]],&lt;br /&gt;
that was not published in the [[:Category:Oberwolfach|Oberwolfach Collection]].&lt;br /&gt;
There are several publications that used this benchmark despite citing [[Steel Profile]]:&lt;br /&gt;
&lt;br /&gt;
* Köhler, Martin, Norman Lang, and Jens Saak. “Solving Differential Matrix Equations Using Parareal.” PAMM 16, no. 1 (October 2016): 847–48. https://doi.org/10.1002/pamm.201610412. (@[[User:Saak]]: please confirm)&lt;br /&gt;
* Schulze, Jonas. “A Low-Rank Parareal Solver for Differential Riccati Equations Written in Julia.” Otto-von-Guericke-Universität Magdeburg, 2022. https://doi.org/10.5281/zenodo.7843197.&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== Data ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin: auto; text-align:right;&amp;quot;&lt;br /&gt;
|+ style=&amp;quot;caption-side:bottom;&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|# nonzeros in A&lt;br /&gt;
|# nonzeros in E&lt;br /&gt;
|max. mesh width&lt;br /&gt;
|-&lt;br /&gt;
|[https://csc.mpi-magdeburg.mpg.de/mpcsc/MORWIKI/Oberwolfach/SteelProfile-dim1e3-rail_371.zip SteelProfile-dim1e3-rail_371.zip] (32kB)&lt;br /&gt;
|2341&lt;br /&gt;
|2343&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Related Variants ==&lt;br /&gt;
&lt;br /&gt;
* [[Steel Profile]]: dimensions 1357, 5177, 20209, 79841&lt;br /&gt;
* [[FEniCS Rail]]: dimensions 371, 1357, 5177, 20209, 79841, 317377, 1265537&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=Submission_rules&amp;diff=3913</id>
		<title>Submission rules</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=Submission_rules&amp;diff=3913"/>
		<updated>2024-03-25T14:28:39Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&amp;lt;!-- __NUMBEREDHEADINGS__ --&amp;gt;&lt;br /&gt;
The MORWiki [[:Category:Benchmark|benchmark collection]] contains benchmarks related to model order reduction. Its goal is to supply dynamical systems in a computer-readable format  to researchers from different areas, who can then test new algorithms, software, etc.&lt;br /&gt;
&lt;br /&gt;
The collection contains documents and wikipages that are human-readable and data files that can be read automatically by software. As a result, with minor exceptions, the rules concerning page preparation are recommended, while those concerning data files are considered obligatory (with exceptions, for example, for new types of nonlinear models).&lt;br /&gt;
&lt;br /&gt;
==Benchmark Creation==&lt;br /&gt;
Anyone who has an example that could be relevant for the benchmark collection can add it after the editors have approved it.  Simply write an email to the editors describing the benchmark to be created.  Ideally, one should be able to point to an existing data set and publication.  If the editors accept the benchmark, they then grant access to the submitter and create an empty page for the benchmark, which the submitter must then edit with a description of the benchmark, uploaded data files, and any supplementary documents, all of which should be linked within the page itself.  See 2.1 for the content requirement.&lt;br /&gt;
&lt;br /&gt;
==Content Rules==&lt;br /&gt;
&lt;br /&gt;
The supplementary documents as well as the wikipage may be written by different authors, however each individual document should be written according to conventional scientific practice; that is, it should describe the subject in such a way that, at least in principle, anyone could reproduce the results presented. The authors should understand that the document may be read by people from quite different disciplines. Hence, abbreviations should be avoided or at least explained and references to the background ideas should be provided.&lt;br /&gt;
&lt;br /&gt;
===Page Name===&lt;br /&gt;
Be careful to choose a unique, concise name, around 2-3 words.  This name will become a permanent attribute of the benchmark and will be used internally for downstream purposes.&lt;br /&gt;
&lt;br /&gt;
===Content Requirement===&lt;br /&gt;
Most of this content can be included in the wiki page directly.  However, this is not necessary. &lt;br /&gt;
One should describe the origin of the dynamical system and its relevance to the application area. It is important to present the mathematical model, the meaning of the inputs and outputs, and the desired behavior from the application viewpoint.&lt;br /&gt;
&lt;br /&gt;
The following points should be considered and if possible included in the benchmark description:&lt;br /&gt;
&lt;br /&gt;
* The purpose of the model should be explained clearly. (For instance, simulation, iterative system design, feedback control design, ...)&lt;br /&gt;
* Why should the model be reduced at all? (For instance, reducing simulation time, reducing implementation effort in observers, controllers...)&lt;br /&gt;
* What are the QUALITATIVE requirements to the reduced model? What variables are to be approximated well? Is the step response to be approximated or is it the Bode plot? What are typical input signals? (Some systems are driven by a step function and nothing else, others are driven by a wide variety of input signals, others are used in closed loops and can cause instabilities, although being stable themselves.)&lt;br /&gt;
* What are the QUANTITATIVE requirements to the reduced model? Best would be if the authors of any individual model can suggest some cost functions (performance indices) to be used for the comparison. These can be in time domain, or in frequency domain (including bandwidth), or both.&lt;br /&gt;
* Are there limits of input and state variables known? (application related or generally)? What are the physical limits where the model becomes useless/false? If known a-priori: Out of the technically typical input signals, which one will cause &amp;quot;the most nonlinear&amp;quot; behavior?&lt;br /&gt;
* How many parameters are included in the model, are they physical parameters or geometrical parameters.&lt;br /&gt;
* Is the system linear or nonlinear? Is it a first or a second order system? &lt;br /&gt;
* When the model is used to test, e.g. an algorithm, can some of the parameters in the model be fixed, such that the model includes fewer parameters, which makes the testing easier?&lt;br /&gt;
* If possible, the source code generating the model should be provided.&lt;br /&gt;
* We stress the importance of describing the software employed, as well as its related options. For example, if the model is generated from ANSYS, the software ANSYS better be mentioned. If necessary, please also describe some related options like boundary conditions, initial conditions, and other parameters which need to be assigned when generating the model. Please go to the benchmark webpage [[Silicon nitride membrane]] for a reference. &lt;br /&gt;
* If the dynamical system is obtained from partial differential equations, then the information about material properties, geometrical data, and initial and boundary conditions should be given. The exception to this rule is the case when the original model comes from industry. In this case, if trade secrets are tied with the information mentioned, it may be kept hidden.&lt;br /&gt;
* The authors are encouraged to produce several dynamical models of different dimensions in order to provide an opportunity to apply different software and to research scalability issues. If an author has an interactive page on their server to generate benchmarks, a link to this page is welcome.&lt;br /&gt;
* The dynamical system may be obtained by means of compound matrices, for example, when the second-order system is converted to first-order. In this case, the document should describe such a transformation but in the data file the original and not the compound matrices should be given. This allows for researching other ways of model reduction of the original system.&lt;br /&gt;
&lt;br /&gt;
The above information is in a general sense. Therefore, some items may not be applicable to certain benchmarks. However, it is recommended that the items that apply to the benchmark provided be fully considered.&lt;br /&gt;
&lt;br /&gt;
===Additional Content===&lt;br /&gt;
&lt;br /&gt;
This will typically be given in form of a document which we restrict to  the following types: *.pdf, *.gif, *.jpeg, *.jpg, *.png,. This documents should include author names.&lt;br /&gt;
&lt;br /&gt;
# The solution of the original benchmark that contains sample outputs for the usual input signals. Plots and numerical values of time and frequency response. Eigenvalues and eigenvectors, singular values, poles, zeros, etc.&lt;br /&gt;
# Model reduction and its results as compared to the original system.&lt;br /&gt;
# Description of any other related results.&lt;br /&gt;
# We stress the importance of describing the software employed as well as its related options.&lt;br /&gt;
&lt;br /&gt;
===Metadata===&lt;br /&gt;
To aid in the categorization of benchmarks, we request that submitters provide the following information explicitly:&lt;br /&gt;
* List of author names in Last, F. format&lt;br /&gt;
* Citation in standard format&lt;br /&gt;
* License (see, e.g., https://tldrlegal.com/)&lt;br /&gt;
* Model components (which should match what is submitted in the data file(s))&lt;br /&gt;
* Differentiation index of DAE: 0, 1, 2, etc. (0 indicates ODE)&lt;br /&gt;
* Is the system... (boolean responses only)&lt;br /&gt;
** a DAE? (must be 1 if differentiation index is nonzero)&lt;br /&gt;
** affine parametric?&lt;br /&gt;
** block structured?&lt;br /&gt;
** bilinear?&lt;br /&gt;
** control affine?&lt;br /&gt;
** dissipative?&lt;br /&gt;
** nonlinear?&lt;br /&gt;
** passive?&lt;br /&gt;
** Port-Hamiltonian?&lt;br /&gt;
** square?&lt;br /&gt;
** stable?&lt;br /&gt;
** state-space symmetric?&lt;br /&gt;
** symmetric?&lt;br /&gt;
** quadratic bilinear?&lt;br /&gt;
&lt;br /&gt;
Additional metadata will be automatically generated internally for the purposes of searchability and categorization.&lt;br /&gt;
&lt;br /&gt;
==Data Files==&lt;br /&gt;
&lt;br /&gt;
All the numerical data for the collection is regarded as a list of matrices, a vector being a m x 1 matrix.  Consequently, we have implemented a strict naming scheme for matrices corresponding to different models.  See [[Models]].&lt;br /&gt;
&lt;br /&gt;
An author can suggest another naming standard in the case when the templates outlined in [[Models]] are insufficient.  Otherwise exceptions will not be permitted.&lt;br /&gt;
&lt;br /&gt;
===File standard===&lt;br /&gt;
A single benchmark instance should be saved in the .mat (https://de.mathworks.com/help/matlab/import_export/mat-file-versions.html) file format.  To accommodate multiple languages, features, and the benchmark comparison tool (currently under development), we recommend v7.2 (https://docs.scipy.org/doc/scipy-0.14.0/reference/generated/scipy.io.loadmat.html).  For example, the file associated to [[CD Player]] contains three matrices &amp;lt;math&amp;gt;A&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;B&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;C&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Other file formats are accepted, as long as the naming scheme outlined in [[Models]] is adhered to.  The editors reserve the right to adapt any data to fit our standards, and we may additionally add metadata to .mat file.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
* Y. Chahlaoui, P. Van Dooren, &amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[http://eprints.maths.manchester.ac.uk/1040/1/ChahlaouiV02a.pdf A collection of Benchmark examples for model reduction of linear time invariant dynamical systems]&amp;lt;/span&amp;gt;, Working Note 2002-2: 2002.&lt;br /&gt;
* Y. Chahlaoui, P. Van Dooren, &amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1007/3-540-27909-1_24 Benchmark Examples for Model Reduction of Linear Time-Invariant Dynamical Systems]&amp;lt;/span&amp;gt;, Dimension Reduction of Large-Scale Systems, Lecture Notes in Computational Science and Engineering, vol 45: 379--392, 2005.&lt;br /&gt;
* J.G. Korvink, E.B. Rudnyi, &amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1007/3-540-27909-1_11 Oberwolfach Benchmark Collection]&amp;lt;/span&amp;gt;, Dimension Reduction of Large-Scale Systems, Lecture Notes in Computational Science and Engineering, vol 45: 311--315, 2005.&lt;br /&gt;
&lt;br /&gt;
Editors: &lt;br /&gt;
{{editors}}&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=Models&amp;diff=3912</id>
		<title>Models</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=Models&amp;diff=3912"/>
		<updated>2024-03-25T14:28:03Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Benchmark]]&lt;br /&gt;
&lt;br /&gt;
==Benchmark Model Templates==&lt;br /&gt;
This page specifies templates for the types of models used as benchmark systems.  In particular, the naming schemes established here are used in the corresponding data sets for all benchmarks.  For example, &amp;lt;math&amp;gt;A&amp;lt;/math&amp;gt; always serves as the name of the component matrix applied to the state &amp;lt;math&amp;gt;x(t)&amp;lt;/math&amp;gt; in a linear time-invariant, first-order system.&lt;br /&gt;
For all models we assume an input &amp;lt;math&amp;gt;u : \mathbb{R} \to \mathbb{R}^m&amp;lt;/math&amp;gt;, with components &amp;lt;math&amp;gt;u_j, j = 1, \ldots, m&amp;lt;/math&amp;gt;,&lt;br /&gt;
a state &amp;lt;math&amp;gt;x : \mathbb{R} \to \mathbb{R}^n&amp;lt;/math&amp;gt;,&lt;br /&gt;
and an output &amp;lt;math&amp;gt;y : \mathbb{R} \to \mathbb{R}^q&amp;lt;/math&amp;gt;.&lt;br /&gt;
For all parametric models, we assume each component has &amp;lt;math&amp;gt;\ell&amp;lt;/math&amp;gt; parameters; in cases where a component has fewer than &amp;lt;math&amp;gt;\ell&amp;lt;/math&amp;gt; parameters, the extras are treated as &amp;lt;math&amp;gt;0&amp;lt;/math&amp;gt;.&lt;br /&gt;
Some benchmarks (e.g., [[Bone Model]]) have a constant forcing term, in which case, it is assumed that &amp;lt;math&amp;gt;u(t)&amp;lt;/math&amp;gt; is identically &amp;lt;math&amp;gt;1&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Linear Time-Invariant First-Order System (LTI-FOS)===&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;&lt;br /&gt;
\begin{align}&lt;br /&gt;
E\dot{x}(t) &amp;amp;= Ax(t) + Bu(t),\\&lt;br /&gt;
y(t) &amp;amp;= Cx(t) + Du(t),&lt;br /&gt;
\end{align}&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;E \in \mathbb{R}^{n \times n}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;A \in \mathbb{R}^{n \times n}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;B \in \mathbb{R}^{n \times m}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;C \in \mathbb{R}^{q \times n}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;D \in \mathbb{R}^{q \times m}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
By default &amp;lt;math&amp;gt;E = I&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;D = 0&amp;lt;/math&amp;gt;, unless explicitly provided.&lt;br /&gt;
&lt;br /&gt;
===Linear Time-Varying First-Order System (LTV-FOS)===&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;&lt;br /&gt;
\begin{align}&lt;br /&gt;
E(t)\dot{x}(t) &amp;amp;= A(t)x(t) + B(t)u(t),\\&lt;br /&gt;
y(t) &amp;amp;= C(t)x(t) + D(t)u(t),&lt;br /&gt;
\end{align}&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;E : \mathbb{R} \to \mathbb{R}^{n \times n}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;A : \mathbb{R} \to \mathbb{R}^{n \times n}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;B : \mathbb{R} \to \mathbb{R}^{n \times m}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;C : \mathbb{R} \to \mathbb{R}^{q \times n}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;D : \mathbb{R} \to \mathbb{R}^{q \times m}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
By default &amp;lt;math&amp;gt;E = I&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;D = 0&amp;lt;/math&amp;gt;, unless explicitly provided.&lt;br /&gt;
&lt;br /&gt;
===Affine-Parametric LTI-FOS (AP-LTI-FOS)===&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;&lt;br /&gt;
\begin{align}&lt;br /&gt;
(E + \sum_{i=1}^{\ell} p^E_i E_i)\dot{x}(t) &amp;amp;= (A + \sum_{i=1}^{\ell} p^A_i A_i) x(t) + (B + \sum_{i=1}^{\ell} p^B_i B_i)u(t),\\&lt;br /&gt;
y(t) &amp;amp;= (C + \sum_{i=1}^{\ell} p^C_i C_i)x(t),&lt;br /&gt;
\end{align}&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;E, E_i \in \mathbb{R}^{n \times n}&amp;lt;/math&amp;gt;;&lt;br /&gt;
&amp;lt;math&amp;gt;A, A_i \in \mathbb{R}^{n \times n}&amp;lt;/math&amp;gt;;&lt;br /&gt;
&amp;lt;math&amp;gt;B, B_i \in \mathbb{R}^{n \times m}&amp;lt;/math&amp;gt;; and&lt;br /&gt;
&amp;lt;math&amp;gt;C, C_i \in \mathbb{R}^{q \times n}&amp;lt;/math&amp;gt;,&lt;br /&gt;
for all &amp;lt;math&amp;gt;i = 1, \ldots, \ell&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
By default &amp;lt;math&amp;gt;E = I, E_i = 0&amp;lt;/math&amp;gt;, unless explicitly provided.  If &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt; are provided without &amp;lt;math&amp;gt;A&amp;lt;/math&amp;gt;, then it is assumed &amp;lt;math&amp;gt;A = 0&amp;lt;/math&amp;gt;.  Likewise for &amp;lt;math&amp;gt;B&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;C&amp;lt;/math&amp;gt;, and &amp;lt;math&amp;gt;E&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Linear Time-Invariant Second-Order System (LTI-SOS)===&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;&lt;br /&gt;
\begin{align}&lt;br /&gt;
M \ddot{x}(t) + E \dot{x}(t) + K x(t) &amp;amp;= B u(t), \\&lt;br /&gt;
y(t) &amp;amp;= C_p x(t) + C_v \dot{x}(t) + D u(t),&lt;br /&gt;
\end{align}&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;M \in \mathbb{R}^{n \times n}&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;E \in \mathbb{R}^{n \times n}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;K \in \mathbb{R}^{n \times n}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;B \in \mathbb{R}^{n \times m}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;C_p, C_v \in \mathbb{R}^{q \times n}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;D \in \mathbb{R}^{q \times m}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
When &amp;lt;math&amp;gt;C_v = 0&amp;lt;/math&amp;gt;, we denote &amp;lt;math&amp;gt;C = C_p&amp;lt;/math&amp;gt;.  By default &amp;lt;math&amp;gt;E = I&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;D = 0&amp;lt;/math&amp;gt;, unless explicitly provided.&lt;br /&gt;
&lt;br /&gt;
===Affine-Parametric LTI-SOS (AP-LTI-SOS)===&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;&lt;br /&gt;
\begin{align}&lt;br /&gt;
(M + \sum_{i=1}^{\ell} p^M_i M_i)\ddot{x}(t) + (E + \sum_{i=1}^{\ell} p^E_i E_i)\dot{x}(t) + (K + \sum_{i=1}^{\ell} p^K_i K_i)x(t) &amp;amp;= (B + \sum_{i=1}^{\ell} p^B_i B_i) u(t), \\&lt;br /&gt;
y(t) &amp;amp;= (C + \sum_{i=1}^{\ell} p^C_i C_i) x(t),&lt;br /&gt;
\end{align}&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;M, M_i \in \mathbb{R}^{n \times n}&amp;lt;/math&amp;gt;;&lt;br /&gt;
&amp;lt;math&amp;gt;E, E_i \in \mathbb{R}^{n \times n}&amp;lt;/math&amp;gt;;&lt;br /&gt;
&amp;lt;math&amp;gt;K, K_i \in \mathbb{R}^{n \times n}&amp;lt;/math&amp;gt;;&lt;br /&gt;
&amp;lt;math&amp;gt;B, B_i \in \mathbb{R}^{n \times m}&amp;lt;/math&amp;gt;; and&lt;br /&gt;
&amp;lt;math&amp;gt;C, C_i \in \mathbb{R}^{q \times n}&amp;lt;/math&amp;gt;,&lt;br /&gt;
for all &amp;lt;math&amp;gt;i = 1, \ldots, \ell&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
By default &amp;lt;math&amp;gt;E = I, E_i = 0&amp;lt;/math&amp;gt;, unless explicitly provided.  If &amp;lt;math&amp;gt;M_i&amp;lt;/math&amp;gt; are provided without &amp;lt;math&amp;gt;M&amp;lt;/math&amp;gt;, then it is assumed &amp;lt;math&amp;gt;M = 0&amp;lt;/math&amp;gt;.  Likewise for &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;B&amp;lt;/math&amp;gt;, and &amp;lt;math&amp;gt;C&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Quadratic-Bilinear System (QBS)===&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;&lt;br /&gt;
\begin{align}&lt;br /&gt;
 E\dot{x}(t) &amp;amp;= A x(t) + H x(t) \otimes x(t) + \sum_{j=1}^m N_j x(t) u_j(t) + B u(t), \\&lt;br /&gt;
 y(t) &amp;amp;= Cx(t) + Du(t),&lt;br /&gt;
\end{align}&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;E \in \mathbb{R}^{n \times n}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;A \in \mathbb{R}^{n \times n}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;H \in \mathbb{R}^{n \times n^2}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;N_j \in \mathbb{R}^{n \times n}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;B \in \mathbb{R}^{n \times m}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;C \in \mathbb{R}^{q \times n}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;D \in \mathbb{R}^{q \times m}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Nonlinear Time-Invariant First-Order System (NLTI-FOS)===&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;&lt;br /&gt;
\begin{align}&lt;br /&gt;
E\dot{x}(t) &amp;amp;= Ax(t) + Bu(t) + F f(x(t),u(t)),\\&lt;br /&gt;
y(t) &amp;amp;= Cx(t) + Du(t),&lt;br /&gt;
\end{align}&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;E \in \mathbb{R}^{n \times n}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;A \in \mathbb{R}^{n \times n}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;B \in \mathbb{R}^{n \times m}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;C \in \mathbb{R}^{q \times n}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;D \in \mathbb{R}^{q \times m}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;F \in \mathbb{R}^{n \times n}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;f : \mathbb{R}^n \times \mathbb{R}^m \to \mathbb{R}^n&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
By default &amp;lt;math&amp;gt;F = I&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;E = I&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;D = 0&amp;lt;/math&amp;gt;, unless explicitly provided.&lt;br /&gt;
&lt;br /&gt;
===Nonlinear Time-Invariant Second-Order System (NLTI-SOS)===&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;&lt;br /&gt;
\begin{align}&lt;br /&gt;
M \ddot{x}(t) + E \dot{x}(t) + K x(t) &amp;amp;= B u(t) + F f(x(t),u(t)), \\&lt;br /&gt;
y(t) &amp;amp;= C_p x(t) + C_v \dot{x}(t) + D u(t),&lt;br /&gt;
\end{align}&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;M \in \mathbb{R}^{n \times n}&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;E \in \mathbb{R}^{n \times n}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;K \in \mathbb{R}^{n \times n}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;B \in \mathbb{R}^{n \times m}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;F \in \mathbb{R}^{n \times n}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;C_p, C_v \in \mathbb{R}^{q \times n}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;D \in \mathbb{R}^{q \times m}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;f : \mathbb{R}^n \times \mathbb{R}^m \to \mathbb{R}^n&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
When &amp;lt;math&amp;gt;C_v = 0&amp;lt;/math&amp;gt;, we denote &amp;lt;math&amp;gt;C = C_p&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
By default &amp;lt;math&amp;gt;F = I&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;E = I&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;D = 0&amp;lt;/math&amp;gt;, unless explicitly provided.&lt;br /&gt;
&lt;br /&gt;
===Other System Classes===&lt;br /&gt;
Affine-parametric and time-varying versions of nonlinear systems are clearly also possible by combining patterns of the above models.&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=Template:Benchmark_not_recommended&amp;diff=3901</id>
		<title>Template:Benchmark not recommended</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=Template:Benchmark_not_recommended&amp;diff=3901"/>
		<updated>2023-12-06T10:43:57Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;p style=&amp;quot;border-style:solid;border-color:#d06628;border-width:2px;padding:5px;background-color:#ce987b;font-size:1.25em&amp;quot;&amp;gt;&#039;&#039;&#039;Due to unresolved license issues, we strongly advise against using this benchmark example in new experiments.&#039;&#039;&#039;&amp;lt;/p&amp;gt;&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=Template:Benchmark_not_recommended&amp;diff=3900</id>
		<title>Template:Benchmark not recommended</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=Template:Benchmark_not_recommended&amp;diff=3900"/>
		<updated>2023-12-06T10:41:58Z</updated>

		<summary type="html">&lt;p&gt;Saak: Saak moved page Template:Benchmark not reccommended to Template:Benchmark not recommended without leaving a redirect&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;p style=&amp;quot;border-style:solid;border-color:#d06628;border-width:2px;padding:5px;background-color:#ce987b;font-size:1.75em&amp;quot;&amp;gt;&#039;&#039;&#039;Due to unresolved license issues, we strongly advise against using this benchmark example in new experiments.&#039;&#039;&#039;&amp;lt;/p&amp;gt;&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=Template:Benchmark_not_recommended&amp;diff=3899</id>
		<title>Template:Benchmark not recommended</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=Template:Benchmark_not_recommended&amp;diff=3899"/>
		<updated>2023-12-06T10:41:17Z</updated>

		<summary type="html">&lt;p&gt;Saak: Created page with &amp;quot;&amp;lt;p style=&amp;quot;border-style:solid;border-color:#d06628;border-width:2px;padding:5px;background-color:#ce987b;font-size:1.75em&amp;quot;&amp;gt;&amp;#039;&amp;#039;&amp;#039;Due to unresolved license issues, we strongly advi...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;p style=&amp;quot;border-style:solid;border-color:#d06628;border-width:2px;padding:5px;background-color:#ce987b;font-size:1.75em&amp;quot;&amp;gt;&#039;&#039;&#039;Due to unresolved license issues, we strongly advise against using this benchmark example in new experiments.&#039;&#039;&#039;&amp;lt;/p&amp;gt;&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=Power_system_examples&amp;diff=3858</id>
		<title>Power system examples</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=Power_system_examples&amp;diff=3858"/>
		<updated>2023-11-24T09:38:55Z</updated>

		<summary type="html">&lt;p&gt;Saak: /* Test systems for small-signal stability analysis of large electric power system networks */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:benchmark]]&lt;br /&gt;
[[Category:linear]]&lt;br /&gt;
[[Category:time invariant]]&lt;br /&gt;
[[Category:first differential order]]&lt;br /&gt;
[[Category:Differential_algebraic_system]]&lt;br /&gt;
&lt;br /&gt;
{{Infobox&lt;br /&gt;
|Title           = Power System Examples&lt;br /&gt;
|Benchmark ID    = &lt;br /&gt;
* bauru5727_n40366m2q2&lt;br /&gt;
* bips071693_n13275m4q4&lt;br /&gt;
* bips071998_n15066m4q4&lt;br /&gt;
* bips072476_n16861m4q4&lt;br /&gt;
* bips073078_n21128m4q4&lt;br /&gt;
* bips1997_n13250m1q1&lt;br /&gt;
* bips2007_n21476m32q32&lt;br /&gt;
* bips97_n13251m1q1&lt;br /&gt;
* bips97mimo28_n13251m28q28&lt;br /&gt;
* bips97mimo46_n13250m46q46&lt;br /&gt;
* bips97mimo8_n13309m8q8&lt;br /&gt;
* bips981142_n9735m4q4&lt;br /&gt;
* bips981450_n11305m4q4&lt;br /&gt;
* bips98606_n7135m4q4&lt;br /&gt;
* juba5723_n40337m2q1&lt;br /&gt;
* newEngland_n66m1q1&lt;br /&gt;
* nopss_n11685m1q1&lt;br /&gt;
* xingo6u_n20738m1q6&lt;br /&gt;
* zerosnopss_n13296m46q46&lt;br /&gt;
|Category        = power_system&lt;br /&gt;
|System-Class    = LTI-FOS&lt;br /&gt;
|nstates         = &lt;br /&gt;
* 40366&lt;br /&gt;
* 13275&lt;br /&gt;
* 15066&lt;br /&gt;
* 16861&lt;br /&gt;
* 21128&lt;br /&gt;
* 13250&lt;br /&gt;
* 21476&lt;br /&gt;
* 13251&lt;br /&gt;
* 13251&lt;br /&gt;
* 13250&lt;br /&gt;
* 13309&lt;br /&gt;
* 9735&lt;br /&gt;
* 11305&lt;br /&gt;
* 7135&lt;br /&gt;
* 40337&lt;br /&gt;
* 66&lt;br /&gt;
* 11685&lt;br /&gt;
* 20738&lt;br /&gt;
* 13296&lt;br /&gt;
|ninputs         = &lt;br /&gt;
* 2&lt;br /&gt;
* 4&lt;br /&gt;
* 4&lt;br /&gt;
* 4&lt;br /&gt;
* 4&lt;br /&gt;
* 1&lt;br /&gt;
* 32&lt;br /&gt;
* 1&lt;br /&gt;
* 28&lt;br /&gt;
* 46&lt;br /&gt;
* 8&lt;br /&gt;
* 4&lt;br /&gt;
* 4&lt;br /&gt;
* 4&lt;br /&gt;
* 2&lt;br /&gt;
* 1&lt;br /&gt;
* 1&lt;br /&gt;
* 1&lt;br /&gt;
* 46&lt;br /&gt;
|noutputs        = &lt;br /&gt;
* 2&lt;br /&gt;
* 4&lt;br /&gt;
* 4&lt;br /&gt;
* 4&lt;br /&gt;
* 4&lt;br /&gt;
* 1&lt;br /&gt;
* 32&lt;br /&gt;
* 1&lt;br /&gt;
* 28&lt;br /&gt;
* 46&lt;br /&gt;
* 8&lt;br /&gt;
* 4&lt;br /&gt;
* 4&lt;br /&gt;
* 4&lt;br /&gt;
* 1&lt;br /&gt;
* 1&lt;br /&gt;
* 1&lt;br /&gt;
* 6&lt;br /&gt;
* 46&lt;br /&gt;
|nparameters     = 0&lt;br /&gt;
|components      = &lt;br /&gt;
* A, B, C, E&lt;br /&gt;
* A, B, C, E&lt;br /&gt;
* A, B, C, E&lt;br /&gt;
* A, B, C, E&lt;br /&gt;
* A, B, C, E&lt;br /&gt;
* A, B, C, E&lt;br /&gt;
* A, B, C, D, E&lt;br /&gt;
* A, B, C, E&lt;br /&gt;
* A, B, C, E&lt;br /&gt;
* A, B, C, E&lt;br /&gt;
* A, B, C, E&lt;br /&gt;
* A, B, C, E&lt;br /&gt;
* A, B, C, E&lt;br /&gt;
* A, B, C, E&lt;br /&gt;
* A, B, C, E&lt;br /&gt;
* A, B, C&lt;br /&gt;
* A, B, C, D, E&lt;br /&gt;
* A, B, C, E&lt;br /&gt;
* A, B, C, E&lt;br /&gt;
|License         = NA&lt;br /&gt;
|Creator         = [[User:Rommes]]&lt;br /&gt;
|Editor          = &lt;br /&gt;
* [[User:Rommes]]&lt;br /&gt;
* [[User:Kuerschner]]&lt;br /&gt;
* [[User:Himpe]]&lt;br /&gt;
|Zenodo-link     = NA&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
__NUMBEREDHEADINGS__&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
&lt;br /&gt;
These first order systems are given in generalized state space form&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;&lt;br /&gt;
\begin{array}{rcl}&lt;br /&gt;
  E\dot{x}(t)&amp;amp;=&amp;amp;A x(t)+B u(t), \\&lt;br /&gt;
  y(t)&amp;amp;=&amp;amp;Cx(t)+Du(t),&lt;br /&gt;
\end{array}&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
where &amp;lt;math&amp;gt;E,A\in\mathbb{R}^{n\times n}&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;B\in\mathbb{R}^{n\times m}&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;C\in\mathbb{R}^{p\times n}&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;D\in\mathbb{R}^{p\times m}&amp;lt;/math&amp;gt;, &lt;br /&gt;
and originated at [http://www.cepel.br/ CEPEL] for simulating large &#039;&#039;&#039;power systems&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
They come in different sizes and variants, including both SISO and MIMO systems having regular or singular &amp;lt;math&amp;gt;E&amp;lt;/math&amp;gt; matrices. In the latter case the DAEs are of index 1 (except for PI Sections 20--80 which are index 2) and using simple row and column permutations, &amp;lt;math&amp;gt;E,A,B,C&amp;lt;/math&amp;gt; can be brought into the form&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;&lt;br /&gt;
E=\left[ \begin{array}{cc}I_{n_f}&amp;amp;0\\0&amp;amp;0\end{array}\right],\quad A=\left[ \begin{array}{cc}A_{11}&amp;amp;A_{12}\\A_{21}&amp;amp;A_{22}\end{array}\right],\quad B=\left[ \begin{array}{cc}B_{1}\\B_2\end{array}\right],\quad C=\left[ \begin{array}{cc}C_{1}&amp;amp;C_2\end{array}\right],&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;n_f&amp;lt;/math&amp;gt; denotes the number of finite eigenvalues in &amp;lt;math&amp;gt;\Lambda(A,E)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;A_{22}\in\mathbb{R}^{n-n_f\times n-n_f}&amp;lt;/math&amp;gt; is regular.&lt;br /&gt;
A complete overview over these systems can be found in table below. The &#039;&#039;&#039;power systems&#039;&#039;&#039; served as benchmark examples for [[Modal truncation|Dominant Pole based Modal Truncation]]&amp;lt;ref name=&amp;quot;MarLP96&amp;quot;&amp;gt;&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;RomM06a&amp;quot;&amp;gt;&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;RomM06b&amp;quot;&amp;gt;&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;Rom07&amp;quot;&amp;gt;&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;RomM08&amp;quot;&amp;gt;&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;Kue10&amp;quot;&amp;gt;&amp;lt;/ref&amp;gt; and for a special adaption&amp;lt;ref name=&amp;quot;FreRM08&amp;quot;&amp;gt;&amp;lt;/ref&amp;gt; of [[Balanced Truncation]] for the index-1 DAE systems. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Data==&lt;br /&gt;
The table below lists the charateristics of all &#039;&#039;&#039;power systems&#039;&#039;&#039;. The files can be downloaded at [https://sites.google.com/site/rommes/software https://sites.google.com/site/rommes/software]. &lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; style=&amp;quot;text-align: center; width: auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! &amp;lt;math&amp;gt;n&amp;lt;/math&amp;gt;&lt;br /&gt;
! &amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt;&lt;br /&gt;
! &amp;lt;math&amp;gt;p&amp;lt;/math&amp;gt;&lt;br /&gt;
! Type&lt;br /&gt;
|-&lt;br /&gt;
|New England&lt;br /&gt;
|66 	&lt;br /&gt;
|1 	&lt;br /&gt;
|1&lt;br /&gt;
|ODE&lt;br /&gt;
|-&lt;br /&gt;
|BIPS/97&lt;br /&gt;
|13251 	&lt;br /&gt;
|1 	&lt;br /&gt;
|1&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|BIPS/1997&lt;br /&gt;
|13250 	&lt;br /&gt;
|1 	&lt;br /&gt;
|1&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|BIPS/2007&lt;br /&gt;
|21476	&lt;br /&gt;
|32 	&lt;br /&gt;
|32&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|BIPS/97,MIMO8&lt;br /&gt;
|13309	&lt;br /&gt;
|8 	&lt;br /&gt;
|8&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|BIPS/97,MIMO28&lt;br /&gt;
|13251 	&lt;br /&gt;
|28 	&lt;br /&gt;
|28&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|BIPS/97,MIMO46&lt;br /&gt;
|13250	&lt;br /&gt;
|46	&lt;br /&gt;
|46&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|Juba5723&lt;br /&gt;
|40337 	&lt;br /&gt;
|2 	&lt;br /&gt;
|1&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|Bauru5727&lt;br /&gt;
|40366	&lt;br /&gt;
|2 	&lt;br /&gt;
|2&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|zeros_nopss&lt;br /&gt;
|13296	&lt;br /&gt;
|46 	&lt;br /&gt;
|46&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|xingo6u&lt;br /&gt;
|20738	&lt;br /&gt;
|1 	&lt;br /&gt;
|6&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|nopss&lt;br /&gt;
|11685&lt;br /&gt;
|1 	&lt;br /&gt;
|1&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|bips98_606&lt;br /&gt;
|7135	&lt;br /&gt;
|4	&lt;br /&gt;
|4&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|bips98_1142&lt;br /&gt;
|9735&lt;br /&gt;
|4	&lt;br /&gt;
|4&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|bips98_1450&lt;br /&gt;
|11305&lt;br /&gt;
|4	&lt;br /&gt;
|4&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|bips07_1693&lt;br /&gt;
|13275&lt;br /&gt;
|4	&lt;br /&gt;
|4&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|bips07_1998&lt;br /&gt;
|15066&lt;br /&gt;
|4	&lt;br /&gt;
|4&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|bips07_2476&lt;br /&gt;
|16861&lt;br /&gt;
|4	&lt;br /&gt;
|4&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|bips07_3078&lt;br /&gt;
|21128&lt;br /&gt;
|4	&lt;br /&gt;
|4&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|PI Sections: &lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|S10&lt;br /&gt;
|682&lt;br /&gt;
|1  	&lt;br /&gt;
|1&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|S20&lt;br /&gt;
|1182&lt;br /&gt;
|1  	&lt;br /&gt;
|1&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|S40&lt;br /&gt;
|2182&lt;br /&gt;
|1  	&lt;br /&gt;
|1&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|S80&lt;br /&gt;
|4182&lt;br /&gt;
|1  	&lt;br /&gt;
|1&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|M10&lt;br /&gt;
|682&lt;br /&gt;
|3  	&lt;br /&gt;
|3&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|M20&lt;br /&gt;
|1182&lt;br /&gt;
|3  	&lt;br /&gt;
|3&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|M40&lt;br /&gt;
|2182&lt;br /&gt;
|3  	&lt;br /&gt;
|3&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|M80&lt;br /&gt;
|4182&lt;br /&gt;
|3  	&lt;br /&gt;
|3&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Background==&lt;br /&gt;
Electrical &#039;&#039;&#039;power systems&#039;&#039;&#039; experience several steady-state and dynamic phenomena that may hinder its reliable, stable operation if not properly designed and operated. Among the dynamic phenomena, &#039;&#039;&#039;power system&#039;&#039;&#039; angle stability is of major concern, its studies requiring both numerical integration of a stiff set of large, nonlinear differential-algebraic (DAE) equations (for transient stability simulations) and  the eigensolution as well as the use of other numerical linear algebra (NLA) algorithms applied to  the linearized DAE equations of the same large stability models. &#039;&#039;&#039;Power systems&#039;&#039;&#039; with multiple electrical power plants, consumer loads, and industrial loads experience complex electromechanical oscillations, much as spring-mass mechanical systems experience mechanical oscillations. These oscillations, when the electric &#039;&#039;&#039;power system&#039;&#039;&#039; is under stressed conditions, may become poorly damped or unstable. The analysis of these low-frequency oscillations, as well as their controller-induced damping control, is enhanced by the results from NLA algorithms. The study of all these issues constitutes the field known as small signal stability. &lt;br /&gt;
&lt;br /&gt;
There is a pressing need for better utilization of the transmission network and its cost-effective expansions to reliably carry electric power from the generating plants, driven by several primary energy sources, to the loads. This imposes stricter requirements on network design and &#039;&#039;&#039;power system&#039;&#039;&#039; control equipment, as well as on the adopted control laws, which, coupled with the continental dimensions of modern interconnected &#039;&#039;&#039;power systems&#039;&#039;&#039;, must be studied with the help of simulators employing advanced NLA algorithms. This wiki page contains system models developed when dealing with these NLA issues, with emphasis on the analysis and control of small signal stability.&lt;br /&gt;
&lt;br /&gt;
Modal analysis has been used for Model Order Reduction (MOR) of lightly damped systems like flexible mechanical structures and RLC networks from either &#039;&#039;&#039;power systems&#039;&#039;&#039; or microprocessor interconnectors. The advent of subspace accelerated dominant pole algorithms in &amp;lt;ref name=&amp;quot;MarLP96&amp;quot;&amp;gt;&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;RomM06a&amp;quot;&amp;gt;&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;RomM06b&amp;quot;&amp;gt;&amp;lt;/ref&amp;gt;, made modal reduction effective for better damped systems, such as interconnected &#039;&#039;&#039;power systems&#039;&#039;&#039;, which have eigenvalue clusters in the &amp;lt;math&amp;gt;0.2&amp;lt;/math&amp;gt; to &amp;lt;math&amp;gt;2.0 \mathrm{Hz}&amp;lt;/math&amp;gt; range and damping ratios between &amp;lt;math&amp;gt;-0.05&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;0.25&amp;lt;/math&amp;gt;. Important characteristics of model reduction methods include preserving the dominant dynamics and stability in the Reduced Order Models (ROMs).&lt;br /&gt;
&lt;br /&gt;
Model reduction is important to the linear control system analysis and design of &#039;&#039;&#039;power system&#039;&#039;&#039; dynamic models. Reduced-order &#039;&#039;&#039;power system&#039;&#039;&#039; transfer function models are effective in lowering the computational costs of controller design. Once the dominant transfer function poles have been found, the calculation of their associated residues can be obtained by the scalar product of the left and right eigenvectors by the input and output vectors of the transfer function. From the knowledge of the dominant pole-residue set, one can build a transfer function ROM whose accuracy varies with the number of retained poles. See, e.g., the SADPA, SAMDP papers &amp;lt;ref name=&amp;quot;RomM06a&amp;quot;&amp;gt;&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;RomM06b&amp;quot;&amp;gt;&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Modal analysis is also used in the harmonic distortion analysis of &#039;&#039;&#039;power system&#039;&#039;&#039; networks, mainly in subtransmission and distribution voltage levels. In this application, modal analysis allows for determining the main network parameters that impact distortion levels and suggests changes to their effective values among other alternatives. The linear RLC network is modeled unloaded, the conventional electrical generators can be entirely neglected and the nonlinear loads of various nature are modeled as current injections into the network buses -3rd, 5th, 7th, 11th, 13th harmonics of the nominal system frequency (&amp;lt;math&amp;gt;50 \mathrm{Hz}&amp;lt;/math&amp;gt; or &amp;lt;math&amp;gt;60 \mathrm{Hz}&amp;lt;/math&amp;gt;).  An even more important application for the modal analysis of these large descriptor system RLC network models is the production of ROM for multiport electrical networks, generally in the form of a state-space system whose dimension is considerably smaller than that of the original system. When these ROMs take the form of RLC networks, they are referred to as RLC reduced equivalents. These ROMs, or equivalents, are used in real-time and off-line simulators for the study of &#039;&#039;&#039;power system&#039;&#039;&#039; high-frequency transient phenomena. They are produced in varying degrees of complexity by using advanced NLA algorithms, which is an area of intense research work.&lt;br /&gt;
&lt;br /&gt;
==Test systems for small-signal stability analysis of large electric power system networks==&lt;br /&gt;
All test &#039;&#039;&#039;power systems&#039;&#039;&#039; in [https://sites.google.com/site/rommes/software https://sites.google.com/site/rommes/software], except the PI sections example, are used for &#039;&#039;&#039;power system&#039;&#039;&#039; small-signal stability studies, and several of them are briefly described in &amp;lt;ref name=&amp;quot;MarLP96&amp;quot;&amp;gt;&amp;lt;/ref&amp;gt;. Such studies include stability analysis, controller design, computation of MOR, etc. The dynamic phenomena of interest require the detailed modeling of the electrical energy generators (mainly the large sized ones) and other important devices such as flexible AC transmission systems (FACTS). The 3-phase alternating current (AC) network consists of nodes (electrical buses), which may be the representation of an entire electrical energy transmission (or distribution) substation, and branches (transmission lines, transformers, series capacitors) and need to have only a static model in this application except for the occasional high-power electronic HVDC (High voltage direct current) transmission links and FACTS devices.&lt;br /&gt;
&lt;br /&gt;
The input &amp;lt;math&amp;gt;u(t)&amp;lt;/math&amp;gt;  depends on the study of interest, but the excitation system voltage reference is a frequent input variable in small-signal stability studies. Another reference is the active power setpoint of a rotor-speed regulator. The input signal used in all the above-mentioned files is of Vref type. The output could be an entry of the generalized state &amp;lt;math&amp;gt;x(t)&amp;lt;/math&amp;gt; (state or algebraic variable) or a linear combination of these variables. The generalized states &amp;lt;math&amp;gt;x(t)&amp;lt;/math&amp;gt; are associated with equations of generators, controllers, and network. The interconnected network has only algebraic variables, except when FACTS devices are connected. &lt;br /&gt;
The test systems are represented by generalized state-space models, see above, where the feed through matrix &amp;lt;math&amp;gt;D&amp;lt;/math&amp;gt; is generally zero.&lt;br /&gt;
&lt;br /&gt;
==Test systems for electromagnetic transients and harmonic distortion studies==&lt;br /&gt;
Depending on the harmonic study at hand, a voltage or current source can be assigned as an input. In &amp;lt;ref name=&amp;quot;MarLP96&amp;quot;&amp;gt;&amp;lt;/ref&amp;gt; the current injection &amp;lt;math&amp;gt;u(t)&amp;lt;/math&amp;gt; at a node (also, electrical bus, in &#039;&#039;&#039;power system&#039;&#039;&#039; terminology) is the input, while the nodal voltage, at the same node, is the  output (variable &amp;lt;math&amp;gt;y(t)&amp;lt;/math&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
All transmission lines in the network are modeled by RLC ladder networks, of cascaded RLC PI-circuits, having fixed parameters &amp;lt;ref name=&amp;quot;Wat03&amp;quot;&amp;gt;&amp;lt;/ref&amp;gt;. The transformers are modeled by series RL circuits. Loads and shunt elements are represented by  series-connected RL (or RC) branch, or just an L (or C). As a consequence, the states &amp;lt;math&amp;gt;x(t)&amp;lt;/math&amp;gt; of the dynamic system are either the current through an inductor or the voltage across a capacitor. So matrices &amp;lt;math&amp;gt;A, B, C, D, E&amp;lt;/math&amp;gt; describe how each circuit element equation, node and voltage are connected, according to the Kirchhoff’s law.&lt;br /&gt;
&lt;br /&gt;
On https://sites.google.com/site/rommes/software the systems labeled by PI Sections 20--80 are of index-2 ([https://drive.google.com/file/d/1ttJgCZeNEspA3Ty7vNPtsuPqo_-Qa-6g/view SISO_PI_n.zip and MIMO_PI_n.zip]). The data of these test systems can be converted into index-0 systems by applying a procedure for symbolic math elimination of algebraic variables and redundant state variables. This procedure is detailed in the Appendix C of &amp;lt;ref name=&amp;quot;FreRM11&amp;quot;&amp;gt;&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MarLP96&amp;quot;&amp;gt;N. Martins, L. Lima, and H. Pinto, &amp;quot;&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1109/59.486093 Computing dominant poles of power system transfer functions]&amp;lt;/span&amp;gt;&amp;quot;, IEEE Transactions on&lt;br /&gt;
Power Systems, 11: 162--170, 1996.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;RomM06a&amp;quot;&amp;gt;J. Rommes and N. Martins, &amp;quot;&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1109/TPWRS.2006.876671 Efficient computation of transfer function dominant poles using subspace acceleration]&amp;lt;/span&amp;gt;&amp;quot;, IEEE Transactions on&lt;br /&gt;
Power Systems, 21(3): 1218--1226, 2006.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;RomM06b&amp;quot;&amp;gt;J. Rommes and N. Martins, &amp;quot;&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1109/TPWRS.2006.881154 Efficient computation of multivariable transfer function dominant poles using subspace acceleration]&amp;lt;/span&amp;gt;&amp;quot;, IEEE Transactions on&lt;br /&gt;
Power Systems, 21(4): 1471--1483, 2006.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Rom07&amp;quot;&amp;gt;J. Rommes, &amp;quot;&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://dspace.library.uu.nl/handle/1874/21787 Methods for eigenvalue problems with applications in model order reduction]&amp;lt;/span&amp;gt;&amp;quot;, Ph.D. dissertation, Universiteit&lt;br /&gt;
Utrecht, 2007.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;RomM08&amp;quot;&amp;gt;J. Rommes and N. Martins, &amp;quot;&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1137/070684562 Computing transfer function dominant poles of large second-order dynamical systems]&amp;lt;/span&amp;gt;&amp;quot; SIAM Journal on Scientific Computing, 30(4): 2137--2157, 2008.&amp;lt;/ref&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
&amp;lt;ref name=&amp;quot;FreRM08&amp;quot;&amp;gt;F. Freitas, J. Rommes, and N. Martins, &amp;quot;&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1109/TPWRS.2008.926693 Gramian-based reduction method applied to large sparse power system descriptor models]&amp;lt;/span&amp;gt;&amp;quot; IEEE Transactions on Power Systems, 23(3): 1258--1270, 2008.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Kue10&amp;quot;&amp;gt;P. K&amp;amp;uuml;rschner, &amp;quot;&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[http://nbn-resolving.de/urn:nbn:de:bsz:ch1-201001082 Two-sided eigenvalue methods for modal approximation]&amp;lt;/span&amp;gt;”, Master’s thesis, Chemnitz University of Technology,&lt;br /&gt;
Department of Mathematics, Germany, 2010.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;FreRM11&amp;quot;&amp;gt;F. D. Freitas, N. Martins, S. L. Varricchio, J. Rommes and F. C. Veliz, &amp;quot;&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1109/TPWRS.2011.2136442 Reduced-Order Transfer Matrices from RLC Network Descriptor Models of Electric Power Grids]&amp;lt;/span&amp;gt;” IEEE Transactions on Power Systems, 26(4): 1905--1916, 2011.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wat03&amp;quot;&amp;gt;N. Watson and J. Arrillaga, &amp;quot;&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[http://dx.doi.org/10.1049/PBPO039E Power Systems Electromagnetic Transients Simulation]&amp;lt;/span&amp;gt;”, IET, London, UK, 2003.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Contact==&lt;br /&gt;
&lt;br /&gt;
[[User:Rommes|Joost Rommes]] &amp;lt;br&amp;gt;&lt;br /&gt;
[[User:kuerschner|Patrick Kürschner]]&amp;lt;br&amp;gt;&lt;br /&gt;
[http://www.nelsonmartins.com/ Nelson Martins]&amp;lt;br&amp;gt;&lt;br /&gt;
[http://www.ene.unb.br/index.php/component/professores/index.php?option=com_professores&amp;amp;view=professores&amp;amp;layout=perfil&amp;amp;id=131 Francisco D. Freitas]&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=Power_system_examples&amp;diff=3857</id>
		<title>Power system examples</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=Power_system_examples&amp;diff=3857"/>
		<updated>2023-11-24T09:35:26Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:benchmark]]&lt;br /&gt;
[[Category:linear]]&lt;br /&gt;
[[Category:time invariant]]&lt;br /&gt;
[[Category:first differential order]]&lt;br /&gt;
[[Category:Differential_algebraic_system]]&lt;br /&gt;
&lt;br /&gt;
{{Infobox&lt;br /&gt;
|Title           = Power System Examples&lt;br /&gt;
|Benchmark ID    = &lt;br /&gt;
* bauru5727_n40366m2q2&lt;br /&gt;
* bips071693_n13275m4q4&lt;br /&gt;
* bips071998_n15066m4q4&lt;br /&gt;
* bips072476_n16861m4q4&lt;br /&gt;
* bips073078_n21128m4q4&lt;br /&gt;
* bips1997_n13250m1q1&lt;br /&gt;
* bips2007_n21476m32q32&lt;br /&gt;
* bips97_n13251m1q1&lt;br /&gt;
* bips97mimo28_n13251m28q28&lt;br /&gt;
* bips97mimo46_n13250m46q46&lt;br /&gt;
* bips97mimo8_n13309m8q8&lt;br /&gt;
* bips981142_n9735m4q4&lt;br /&gt;
* bips981450_n11305m4q4&lt;br /&gt;
* bips98606_n7135m4q4&lt;br /&gt;
* juba5723_n40337m2q1&lt;br /&gt;
* newEngland_n66m1q1&lt;br /&gt;
* nopss_n11685m1q1&lt;br /&gt;
* xingo6u_n20738m1q6&lt;br /&gt;
* zerosnopss_n13296m46q46&lt;br /&gt;
|Category        = power_system&lt;br /&gt;
|System-Class    = LTI-FOS&lt;br /&gt;
|nstates         = &lt;br /&gt;
* 40366&lt;br /&gt;
* 13275&lt;br /&gt;
* 15066&lt;br /&gt;
* 16861&lt;br /&gt;
* 21128&lt;br /&gt;
* 13250&lt;br /&gt;
* 21476&lt;br /&gt;
* 13251&lt;br /&gt;
* 13251&lt;br /&gt;
* 13250&lt;br /&gt;
* 13309&lt;br /&gt;
* 9735&lt;br /&gt;
* 11305&lt;br /&gt;
* 7135&lt;br /&gt;
* 40337&lt;br /&gt;
* 66&lt;br /&gt;
* 11685&lt;br /&gt;
* 20738&lt;br /&gt;
* 13296&lt;br /&gt;
|ninputs         = &lt;br /&gt;
* 2&lt;br /&gt;
* 4&lt;br /&gt;
* 4&lt;br /&gt;
* 4&lt;br /&gt;
* 4&lt;br /&gt;
* 1&lt;br /&gt;
* 32&lt;br /&gt;
* 1&lt;br /&gt;
* 28&lt;br /&gt;
* 46&lt;br /&gt;
* 8&lt;br /&gt;
* 4&lt;br /&gt;
* 4&lt;br /&gt;
* 4&lt;br /&gt;
* 2&lt;br /&gt;
* 1&lt;br /&gt;
* 1&lt;br /&gt;
* 1&lt;br /&gt;
* 46&lt;br /&gt;
|noutputs        = &lt;br /&gt;
* 2&lt;br /&gt;
* 4&lt;br /&gt;
* 4&lt;br /&gt;
* 4&lt;br /&gt;
* 4&lt;br /&gt;
* 1&lt;br /&gt;
* 32&lt;br /&gt;
* 1&lt;br /&gt;
* 28&lt;br /&gt;
* 46&lt;br /&gt;
* 8&lt;br /&gt;
* 4&lt;br /&gt;
* 4&lt;br /&gt;
* 4&lt;br /&gt;
* 1&lt;br /&gt;
* 1&lt;br /&gt;
* 1&lt;br /&gt;
* 6&lt;br /&gt;
* 46&lt;br /&gt;
|nparameters     = 0&lt;br /&gt;
|components      = &lt;br /&gt;
* A, B, C, E&lt;br /&gt;
* A, B, C, E&lt;br /&gt;
* A, B, C, E&lt;br /&gt;
* A, B, C, E&lt;br /&gt;
* A, B, C, E&lt;br /&gt;
* A, B, C, E&lt;br /&gt;
* A, B, C, D, E&lt;br /&gt;
* A, B, C, E&lt;br /&gt;
* A, B, C, E&lt;br /&gt;
* A, B, C, E&lt;br /&gt;
* A, B, C, E&lt;br /&gt;
* A, B, C, E&lt;br /&gt;
* A, B, C, E&lt;br /&gt;
* A, B, C, E&lt;br /&gt;
* A, B, C, E&lt;br /&gt;
* A, B, C&lt;br /&gt;
* A, B, C, D, E&lt;br /&gt;
* A, B, C, E&lt;br /&gt;
* A, B, C, E&lt;br /&gt;
|License         = NA&lt;br /&gt;
|Creator         = [[User:Rommes]]&lt;br /&gt;
|Editor          = &lt;br /&gt;
* [[User:Rommes]]&lt;br /&gt;
* [[User:Kuerschner]]&lt;br /&gt;
* [[User:Himpe]]&lt;br /&gt;
|Zenodo-link     = NA&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
__NUMBEREDHEADINGS__&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
&lt;br /&gt;
These first order systems are given in generalized state space form&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;&lt;br /&gt;
\begin{array}{rcl}&lt;br /&gt;
  E\dot{x}(t)&amp;amp;=&amp;amp;A x(t)+B u(t), \\&lt;br /&gt;
  y(t)&amp;amp;=&amp;amp;Cx(t)+Du(t),&lt;br /&gt;
\end{array}&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
where &amp;lt;math&amp;gt;E,A\in\mathbb{R}^{n\times n}&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;B\in\mathbb{R}^{n\times m}&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;C\in\mathbb{R}^{p\times n}&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;D\in\mathbb{R}^{p\times m}&amp;lt;/math&amp;gt;, &lt;br /&gt;
and originated at [http://www.cepel.br/ CEPEL] for simulating large &#039;&#039;&#039;power systems&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
They come in different sizes and variants, including both SISO and MIMO systems having regular or singular &amp;lt;math&amp;gt;E&amp;lt;/math&amp;gt; matrices. In the latter case the DAEs are of index 1 (except for PI Sections 20--80 which are index 2) and using simple row and column permutations, &amp;lt;math&amp;gt;E,A,B,C&amp;lt;/math&amp;gt; can be brought into the form&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;&lt;br /&gt;
E=\left[ \begin{array}{cc}I_{n_f}&amp;amp;0\\0&amp;amp;0\end{array}\right],\quad A=\left[ \begin{array}{cc}A_{11}&amp;amp;A_{12}\\A_{21}&amp;amp;A_{22}\end{array}\right],\quad B=\left[ \begin{array}{cc}B_{1}\\B_2\end{array}\right],\quad C=\left[ \begin{array}{cc}C_{1}&amp;amp;C_2\end{array}\right],&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;n_f&amp;lt;/math&amp;gt; denotes the number of finite eigenvalues in &amp;lt;math&amp;gt;\Lambda(A,E)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;A_{22}\in\mathbb{R}^{n-n_f\times n-n_f}&amp;lt;/math&amp;gt; is regular.&lt;br /&gt;
A complete overview over these systems can be found in table below. The &#039;&#039;&#039;power systems&#039;&#039;&#039; served as benchmark examples for [[Modal truncation|Dominant Pole based Modal Truncation]]&amp;lt;ref name=&amp;quot;MarLP96&amp;quot;&amp;gt;&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;RomM06a&amp;quot;&amp;gt;&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;RomM06b&amp;quot;&amp;gt;&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;Rom07&amp;quot;&amp;gt;&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;RomM08&amp;quot;&amp;gt;&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;Kue10&amp;quot;&amp;gt;&amp;lt;/ref&amp;gt; and for a special adaption&amp;lt;ref name=&amp;quot;FreRM08&amp;quot;&amp;gt;&amp;lt;/ref&amp;gt; of [[Balanced Truncation]] for the index-1 DAE systems. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Data==&lt;br /&gt;
The table below lists the charateristics of all &#039;&#039;&#039;power systems&#039;&#039;&#039;. The files can be downloaded at [https://sites.google.com/site/rommes/software https://sites.google.com/site/rommes/software]. &lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; style=&amp;quot;text-align: center; width: auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! &amp;lt;math&amp;gt;n&amp;lt;/math&amp;gt;&lt;br /&gt;
! &amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt;&lt;br /&gt;
! &amp;lt;math&amp;gt;p&amp;lt;/math&amp;gt;&lt;br /&gt;
! Type&lt;br /&gt;
|-&lt;br /&gt;
|New England&lt;br /&gt;
|66 	&lt;br /&gt;
|1 	&lt;br /&gt;
|1&lt;br /&gt;
|ODE&lt;br /&gt;
|-&lt;br /&gt;
|BIPS/97&lt;br /&gt;
|13251 	&lt;br /&gt;
|1 	&lt;br /&gt;
|1&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|BIPS/1997&lt;br /&gt;
|13250 	&lt;br /&gt;
|1 	&lt;br /&gt;
|1&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|BIPS/2007&lt;br /&gt;
|21476	&lt;br /&gt;
|32 	&lt;br /&gt;
|32&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|BIPS/97,MIMO8&lt;br /&gt;
|13309	&lt;br /&gt;
|8 	&lt;br /&gt;
|8&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|BIPS/97,MIMO28&lt;br /&gt;
|13251 	&lt;br /&gt;
|28 	&lt;br /&gt;
|28&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|BIPS/97,MIMO46&lt;br /&gt;
|13250	&lt;br /&gt;
|46	&lt;br /&gt;
|46&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|Juba5723&lt;br /&gt;
|40337 	&lt;br /&gt;
|2 	&lt;br /&gt;
|1&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|Bauru5727&lt;br /&gt;
|40366	&lt;br /&gt;
|2 	&lt;br /&gt;
|2&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|zeros_nopss&lt;br /&gt;
|13296	&lt;br /&gt;
|46 	&lt;br /&gt;
|46&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|xingo6u&lt;br /&gt;
|20738	&lt;br /&gt;
|1 	&lt;br /&gt;
|6&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|nopss&lt;br /&gt;
|11685&lt;br /&gt;
|1 	&lt;br /&gt;
|1&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|bips98_606&lt;br /&gt;
|7135	&lt;br /&gt;
|4	&lt;br /&gt;
|4&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|bips98_1142&lt;br /&gt;
|9735&lt;br /&gt;
|4	&lt;br /&gt;
|4&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|bips98_1450&lt;br /&gt;
|11305&lt;br /&gt;
|4	&lt;br /&gt;
|4&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|bips07_1693&lt;br /&gt;
|13275&lt;br /&gt;
|4	&lt;br /&gt;
|4&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|bips07_1998&lt;br /&gt;
|15066&lt;br /&gt;
|4	&lt;br /&gt;
|4&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|bips07_2476&lt;br /&gt;
|16861&lt;br /&gt;
|4	&lt;br /&gt;
|4&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|bips07_3078&lt;br /&gt;
|21128&lt;br /&gt;
|4	&lt;br /&gt;
|4&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|PI Sections: &lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|S10&lt;br /&gt;
|682&lt;br /&gt;
|1  	&lt;br /&gt;
|1&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|S20&lt;br /&gt;
|1182&lt;br /&gt;
|1  	&lt;br /&gt;
|1&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|S40&lt;br /&gt;
|2182&lt;br /&gt;
|1  	&lt;br /&gt;
|1&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|S80&lt;br /&gt;
|4182&lt;br /&gt;
|1  	&lt;br /&gt;
|1&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|M10&lt;br /&gt;
|682&lt;br /&gt;
|3  	&lt;br /&gt;
|3&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|M20&lt;br /&gt;
|1182&lt;br /&gt;
|3  	&lt;br /&gt;
|3&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|M40&lt;br /&gt;
|2182&lt;br /&gt;
|3  	&lt;br /&gt;
|3&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|M80&lt;br /&gt;
|4182&lt;br /&gt;
|3  	&lt;br /&gt;
|3&lt;br /&gt;
|DAE&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Background==&lt;br /&gt;
Electrical &#039;&#039;&#039;power systems&#039;&#039;&#039; experience several steady-state and dynamic phenomena that may hinder its reliable, stable operation if not properly designed and operated. Among the dynamic phenomena, &#039;&#039;&#039;power system&#039;&#039;&#039; angle stability is of major concern, its studies requiring both numerical integration of a stiff set of large, nonlinear differential-algebraic (DAE) equations (for transient stability simulations) and  the eigensolution as well as the use of other numerical linear algebra (NLA) algorithms applied to  the linearized DAE equations of the same large stability models. &#039;&#039;&#039;Power systems&#039;&#039;&#039; with multiple electrical power plants, consumer loads, and industrial loads experience complex electromechanical oscillations, much as spring-mass mechanical systems experience mechanical oscillations. These oscillations, when the electric &#039;&#039;&#039;power system&#039;&#039;&#039; is under stressed conditions, may become poorly damped or unstable. The analysis of these low-frequency oscillations, as well as their controller-induced damping control, is enhanced by the results from NLA algorithms. The study of all these issues constitutes the field known as small signal stability. &lt;br /&gt;
&lt;br /&gt;
There is a pressing need for better utilization of the transmission network and its cost-effective expansions to reliably carry electric power from the generating plants, driven by several primary energy sources, to the loads. This imposes stricter requirements on network design and &#039;&#039;&#039;power system&#039;&#039;&#039; control equipment, as well as on the adopted control laws, which, coupled with the continental dimensions of modern interconnected &#039;&#039;&#039;power systems&#039;&#039;&#039;, must be studied with the help of simulators employing advanced NLA algorithms. This wiki page contains system models developed when dealing with these NLA issues, with emphasis on the analysis and control of small signal stability.&lt;br /&gt;
&lt;br /&gt;
Modal analysis has been used for Model Order Reduction (MOR) of lightly damped systems like flexible mechanical structures and RLC networks from either &#039;&#039;&#039;power systems&#039;&#039;&#039; or microprocessor interconnectors. The advent of subspace accelerated dominant pole algorithms in &amp;lt;ref name=&amp;quot;MarLP96&amp;quot;&amp;gt;&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;RomM06a&amp;quot;&amp;gt;&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;RomM06b&amp;quot;&amp;gt;&amp;lt;/ref&amp;gt;, made modal reduction effective for better damped systems, such as interconnected &#039;&#039;&#039;power systems&#039;&#039;&#039;, which have eigenvalue clusters in the &amp;lt;math&amp;gt;0.2&amp;lt;/math&amp;gt; to &amp;lt;math&amp;gt;2.0 \mathrm{Hz}&amp;lt;/math&amp;gt; range and damping ratios between &amp;lt;math&amp;gt;-0.05&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;0.25&amp;lt;/math&amp;gt;. Important characteristics of model reduction methods include preserving the dominant dynamics and stability in the Reduced Order Models (ROMs).&lt;br /&gt;
&lt;br /&gt;
Model reduction is important to the linear control system analysis and design of &#039;&#039;&#039;power system&#039;&#039;&#039; dynamic models. Reduced-order &#039;&#039;&#039;power system&#039;&#039;&#039; transfer function models are effective in lowering the computational costs of controller design. Once the dominant transfer function poles have been found, the calculation of their associated residues can be obtained by the scalar product of the left and right eigenvectors by the input and output vectors of the transfer function. From the knowledge of the dominant pole-residue set, one can build a transfer function ROM whose accuracy varies with the number of retained poles. See, e.g., the SADPA, SAMDP papers &amp;lt;ref name=&amp;quot;RomM06a&amp;quot;&amp;gt;&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;RomM06b&amp;quot;&amp;gt;&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Modal analysis is also used in the harmonic distortion analysis of &#039;&#039;&#039;power system&#039;&#039;&#039; networks, mainly in subtransmission and distribution voltage levels. In this application, modal analysis allows for determining the main network parameters that impact distortion levels and suggests changes to their effective values among other alternatives. The linear RLC network is modeled unloaded, the conventional electrical generators can be entirely neglected and the nonlinear loads of various nature are modeled as current injections into the network buses -3rd, 5th, 7th, 11th, 13th harmonics of the nominal system frequency (&amp;lt;math&amp;gt;50 \mathrm{Hz}&amp;lt;/math&amp;gt; or &amp;lt;math&amp;gt;60 \mathrm{Hz}&amp;lt;/math&amp;gt;).  An even more important application for the modal analysis of these large descriptor system RLC network models is the production of ROM for multiport electrical networks, generally in the form of a state-space system whose dimension is considerably smaller than that of the original system. When these ROMs take the form of RLC networks, they are referred to as RLC reduced equivalents. These ROMs, or equivalents, are used in real-time and off-line simulators for the study of &#039;&#039;&#039;power system&#039;&#039;&#039; high-frequency transient phenomena. They are produced in varying degrees of complexity by using advanced NLA algorithms, which is an area of intense research work.&lt;br /&gt;
&lt;br /&gt;
==Test systems for small-signal stability analysis of large electric power system networks==&lt;br /&gt;
All test &#039;&#039;&#039;power systems&#039;&#039;&#039; in [https://sites.google.com/site/rommes/software https://sites.google.com/site/rommes/software], except the PI sections example, are used for &#039;&#039;&#039;power system&#039;&#039;&#039; small-signal stability studies, and several of them are briefly described in &amp;lt;ref name=&amp;quot;MarLP96&amp;quot;&amp;gt;&amp;lt;/ref&amp;gt;. Such studies include stability analysis, controller design, computation of  MOR, etc. The dynamic phenomena of interest require the detailed modeling of the electrical energy generators (mainly the large sized ones) and other important devices such as flexible AC transmission systems (FACTS). The 3-phase alternating current (AC) network is comprised of nodes (electrical buses, which may be the representation of an entire electrical energy transmission (or distribution) substation, and branches (transmission lines, transformers, series capacitors) and need have only a static model in this application except for the occasional high-power electronic HVDC (High voltage direct current) transmission links and FACTS  devices. &lt;br /&gt;
&lt;br /&gt;
The input &amp;lt;math&amp;gt;u(t)&amp;lt;/math&amp;gt;  depends on the study of interest, but the excitation system voltage reference is a frequent input variable in small-signal stability studies. Another reference is the active power setpoint of a rotor-speed regulator. The input signal used in all the above mentioned  files is of Vref type. The output could be an entry of the generalized state &amp;lt;math&amp;gt;x(t)&amp;lt;/math&amp;gt; (state or algebraic variable) or a linear combination of these variables. The generalized states &amp;lt;math&amp;gt;x(t)&amp;lt;/math&amp;gt; are associated with equations of generators, controllers and network. The interconnected network has only algebraic variables, except when FACTS devices are connected. &lt;br /&gt;
The test systems are represented by generalized state-space models, see &amp;lt;math&amp;gt;(1)&amp;lt;/math&amp;gt;, where the feed through matrix &amp;lt;math&amp;gt;D&amp;lt;/math&amp;gt; is generally zero. &lt;br /&gt;
&lt;br /&gt;
==Test systems for electromagnetic transients and harmonic distortion studies==&lt;br /&gt;
Depending on the harmonic study at hand, a voltage or current source can be assigned as an input. In &amp;lt;ref name=&amp;quot;MarLP96&amp;quot;&amp;gt;&amp;lt;/ref&amp;gt; the current injection &amp;lt;math&amp;gt;u(t)&amp;lt;/math&amp;gt; at a node (also, electrical bus, in &#039;&#039;&#039;power system&#039;&#039;&#039; terminology) is the input, while the nodal voltage, at the same node, is the  output (variable &amp;lt;math&amp;gt;y(t)&amp;lt;/math&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
All transmission lines in the network are modeled by RLC ladder networks, of cascaded RLC PI-circuits, having fixed parameters &amp;lt;ref name=&amp;quot;Wat03&amp;quot;&amp;gt;&amp;lt;/ref&amp;gt;. The transformers are modeled by series RL circuits. Loads and shunt elements are represented by  series-connected RL (or RC) branch, or just an L (or C). As a consequence, the states &amp;lt;math&amp;gt;x(t)&amp;lt;/math&amp;gt; of the dynamic system are either the current through an inductor or the voltage across a capacitor. So matrices &amp;lt;math&amp;gt;A, B, C, D, E&amp;lt;/math&amp;gt; describe how each circuit element equation, node and voltage are connected, according to the Kirchhoff’s law.&lt;br /&gt;
&lt;br /&gt;
On https://sites.google.com/site/rommes/software the systems labeled by PI Sections 20--80 are of index-2 ([https://drive.google.com/file/d/1ttJgCZeNEspA3Ty7vNPtsuPqo_-Qa-6g/view SISO_PI_n.zip and MIMO_PI_n.zip]). The data of these test systems can be converted into index-0 systems by applying a procedure for symbolic math elimination of algebraic variables and redundant state variables. This procedure is detailed in the Appendix C of &amp;lt;ref name=&amp;quot;FreRM11&amp;quot;&amp;gt;&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MarLP96&amp;quot;&amp;gt;N. Martins, L. Lima, and H. Pinto, &amp;quot;&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1109/59.486093 Computing dominant poles of power system transfer functions]&amp;lt;/span&amp;gt;&amp;quot;, IEEE Transactions on&lt;br /&gt;
Power Systems, 11: 162--170, 1996.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;RomM06a&amp;quot;&amp;gt;J. Rommes and N. Martins, &amp;quot;&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1109/TPWRS.2006.876671 Efficient computation of transfer function dominant poles using subspace acceleration]&amp;lt;/span&amp;gt;&amp;quot;, IEEE Transactions on&lt;br /&gt;
Power Systems, 21(3): 1218--1226, 2006.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;RomM06b&amp;quot;&amp;gt;J. Rommes and N. Martins, &amp;quot;&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1109/TPWRS.2006.881154 Efficient computation of multivariable transfer function dominant poles using subspace acceleration]&amp;lt;/span&amp;gt;&amp;quot;, IEEE Transactions on&lt;br /&gt;
Power Systems, 21(4): 1471--1483, 2006.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Rom07&amp;quot;&amp;gt;J. Rommes, &amp;quot;&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://dspace.library.uu.nl/handle/1874/21787 Methods for eigenvalue problems with applications in model order reduction]&amp;lt;/span&amp;gt;&amp;quot;, Ph.D. dissertation, Universiteit&lt;br /&gt;
Utrecht, 2007.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;RomM08&amp;quot;&amp;gt;J. Rommes and N. Martins, &amp;quot;&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1137/070684562 Computing transfer function dominant poles of large second-order dynamical systems]&amp;lt;/span&amp;gt;&amp;quot; SIAM Journal on Scientific Computing, 30(4): 2137--2157, 2008.&amp;lt;/ref&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
&amp;lt;ref name=&amp;quot;FreRM08&amp;quot;&amp;gt;F. Freitas, J. Rommes, and N. Martins, &amp;quot;&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1109/TPWRS.2008.926693 Gramian-based reduction method applied to large sparse power system descriptor models]&amp;lt;/span&amp;gt;&amp;quot; IEEE Transactions on Power Systems, 23(3): 1258--1270, 2008.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Kue10&amp;quot;&amp;gt;P. K&amp;amp;uuml;rschner, &amp;quot;&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[http://nbn-resolving.de/urn:nbn:de:bsz:ch1-201001082 Two-sided eigenvalue methods for modal approximation]&amp;lt;/span&amp;gt;”, Master’s thesis, Chemnitz University of Technology,&lt;br /&gt;
Department of Mathematics, Germany, 2010.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;FreRM11&amp;quot;&amp;gt;F. D. Freitas, N. Martins, S. L. Varricchio, J. Rommes and F. C. Veliz, &amp;quot;&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://doi.org/10.1109/TPWRS.2011.2136442 Reduced-Order Transfer Matrices from RLC Network Descriptor Models of Electric Power Grids]&amp;lt;/span&amp;gt;” IEEE Transactions on Power Systems, 26(4): 1905--1916, 2011.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wat03&amp;quot;&amp;gt;N. Watson and J. Arrillaga, &amp;quot;&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[http://dx.doi.org/10.1049/PBPO039E Power Systems Electromagnetic Transients Simulation]&amp;lt;/span&amp;gt;”, IET, London, UK, 2003.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;/references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Contact==&lt;br /&gt;
&lt;br /&gt;
[[User:Rommes|Joost Rommes]] &amp;lt;br&amp;gt;&lt;br /&gt;
[[User:kuerschner|Patrick Kürschner]]&amp;lt;br&amp;gt;&lt;br /&gt;
[http://www.nelsonmartins.com/ Nelson Martins]&amp;lt;br&amp;gt;&lt;br /&gt;
[http://www.ene.unb.br/index.php/component/professores/index.php?option=com_professores&amp;amp;view=professores&amp;amp;layout=perfil&amp;amp;id=131 Francisco D. Freitas]&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=Main_Page&amp;diff=3852</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=Main_Page&amp;diff=3852"/>
		<updated>2023-11-21T16:48:08Z</updated>

		<summary type="html">&lt;p&gt;Saak: /* MORB: Model Order Reduction Benchmarker */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;Big&amp;gt;&#039;&#039;&#039;Welcome to the MOR Wiki&#039;&#039;&#039;&amp;lt;/Big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumb tright&amp;quot; style=&amp;quot;width:302px;height:100vh&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;wikitwidget class=&amp;quot;twitter-timeline&amp;quot;  href=&amp;quot;https://twitter.com/mor_wiki&amp;quot;  data-widget-id=&amp;quot;428887480843001856&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The purpose of the &#039;&#039;&#039;M&#039;&#039;&#039;odel-&#039;&#039;&#039;O&#039;&#039;&#039;rder-&#039;&#039;&#039;R&#039;&#039;&#039;eduction-&#039;&#039;&#039;Wiki&#039;&#039;&#039; is to bring together experts in the area of model reduction along with researchers from related application areas, with the goal of providing a platform for exchanging ideas and benchmark examples. &lt;br /&gt;
&lt;br /&gt;
Modeling and numerical simulation are unavoidable in many application and research areas such as reaction processes, micro-electro-mechanical systems ([[:Wikipedia:MEMS|MEMS]]) design, and control design.&lt;br /&gt;
Such processes or devices can be modeled by partial differential equations ([[:Wikipedia:Partial_differential_equation|PDEs]]).&lt;br /&gt;
To simulate these models, spatial discretization via, for example, finite element discretization is necessary, which results in a system of ordinary differential equations ([[:Wikipedia:Ordinary_differential_equation|ODEs]]), or differential algebraic equations ([[:Wikipedia:Differential_algebraic_equation|DAEs]]). &lt;br /&gt;
  &lt;br /&gt;
After spatial discretization, the number of degrees of freedom ([[:Wikipedia:Degrees_of_Freedom|DoFs]]) is usually very high.&lt;br /&gt;
Simulating such large-scale systems of ODEs or DAEs can therefore become incredibly time-consuming.&lt;br /&gt;
Developed from well established mathematical theory and robust numerical algorithms, Model Order Reduction (MOR) or Model Reduction has been recognized as very efficient for reducing the simulation time of large-scale systems; see the page [[Projection based MOR]] for a basic overview.&lt;br /&gt;
Through model order reduction, a small system with a reduced number of equations (i.e., the reduced model) is derived.&lt;br /&gt;
The reduced model is simulated instead, and the solution of the original PDEs or ODEs can then be recovered from the solution of the reduced model.&lt;br /&gt;
As a result, the simulation time of the original large-scale system can be shortened by several orders of magnitude.&lt;br /&gt;
The reduced model as a whole can also replace the original system and be reused repeatedly during the design process, which can lead to further time or energy savings.&lt;br /&gt;
&lt;br /&gt;
[[:Category:Parametric|Parametric model order reduction (PMOR) methods]] are designed for model order reduction of parametrized systems, where the parameters of the system play an important role in practical applications such as [[:Wikipedia:Integrated circuit design|Integrated Circuit (IC)]] design, [[:Wikipedia:MEMS|MEMS]] design, and chemical engineering.&lt;br /&gt;
The parameters could be the variables describing geometrical measurements, material properties, the damping of the system or the component flow-rate.&lt;br /&gt;
Reduced models are constructed such that all the parameters can be preserved with acceptable accuracy.&lt;br /&gt;
&lt;br /&gt;
=== How to use the MOR Wiki ===&lt;br /&gt;
The MOR Wiki comprises pages providing [[:Category:Benchmark|benchmarks of parametric or non-parametric models]] and pages explaining applicable (P)MOR [[:Category:Method|methods]] as well as available [[:Category:Software|software implementations]].  We ([[MOR Wiki:About|the editors]]) are actively improving documentation at the moment, so check back often for updates!&lt;br /&gt;
&lt;br /&gt;
Following the [[Submission rules]], it is also possible to submit new benchmarks, methods, or software packages, along with pages describing the contribution.&lt;br /&gt;
&lt;br /&gt;
Consult the [http://meta.wikimedia.org/wiki/Help:Contents User&#039;s Guide] for information on using Wiki software and the Wiki markup language we use here.&lt;br /&gt;
&lt;br /&gt;
See the [[Glossary]] for definitions and abbreviations.&lt;br /&gt;
&lt;br /&gt;
Find [[MOR_Wiki:Current_events|current model reduction conferences, workshops and minisymposia]], a [[Publications|list of books and lectures on model reduction]] and [[MOR_Wiki:Community_portal|links to the model reduction community]].&lt;br /&gt;
&lt;br /&gt;
=== MORB: Model Order Reduction Benchmarker ===&lt;br /&gt;
A new benchmarking tool for model order reduction is currently under development. It is a demonstrator of the generic benchmark framework developed for Task Area 2 of the Mathematical Research Data Initiative ([https://www.mardi4nfdi.de/about/task-areas MaRDI]). [[MORB]] will serve as an example of how to fairly compare different implementations of algorithms across a standardized benchmark set for scientific computing.  Visit the [[MORB]] page for updates.&lt;br /&gt;
&lt;br /&gt;
=== Citations ===&lt;br /&gt;
To cite the MOR Wiki itself, please use the following&lt;br /&gt;
&lt;br /&gt;
The MORwiki Community. &#039;&#039;&#039;MORwiki - Model Order Reduction Wiki&#039;&#039;&#039;. http://modelreduction.org&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
 @misc{morwiki,&lt;br /&gt;
   author =       {{The MORwiki Community}},&lt;br /&gt;
   title =        {{MORwiki} - {M}odel {O}rder {R}eduction {W}iki},&lt;br /&gt;
   howpublished = {\url{http://modelreduction.org}},&lt;br /&gt;
   key =          {morwiki}&lt;br /&gt;
 }&lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A BibTeX file which contains a list of references related to model order reduction can be found and downloaded here: [[Bibtex|mor.bib]].&lt;br /&gt;
&lt;br /&gt;
== List of all Categories in the Wiki ==&lt;br /&gt;
{{special:categories}}&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|&amp;lt;categorytree mode=all&amp;gt;Benchmark&amp;lt;/categorytree&amp;gt; || &amp;lt;categorytree mode=all&amp;gt;Method&amp;lt;/categorytree&amp;gt; || &amp;lt;categorytree mode=all&amp;gt;Software&amp;lt;/categorytree&amp;gt; || &amp;lt;categorytree mode=all&amp;gt;Miscellaneous&amp;lt;/categorytree&amp;gt;&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
	<entry>
		<id>https://modelreduction.org/morwiki/index.php?title=MORB&amp;diff=3847</id>
		<title>MORB</title>
		<link rel="alternate" type="text/html" href="https://modelreduction.org/morwiki/index.php?title=MORB&amp;diff=3847"/>
		<updated>2023-11-16T15:33:50Z</updated>

		<summary type="html">&lt;p&gt;Saak: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A model order reduction benchmark (MORB) tool is currently under development. It is a demonstrator of the generic benchmark framework (MaRDIMark) developed for Task Area 2 of the Mathematical Research Data Initiative ([https://www.mardi4nfdi.de/about/task-areas MaRDI]) and will serve as an example of how to fairly compare different implementations of algorithms across a standardized benchmark set for scientific computing.&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
An overview of MaRDI and MORB are provided in the poster, which was presented at [https://more.sciencesconf.org/ Model Reduction and Surrogate Modeling (MORE)], 19-23 September 2022, Berlin, Germany.&lt;br /&gt;
&lt;br /&gt;
[[File:Morb2022.pdf|180px]]&lt;br /&gt;
&lt;br /&gt;
== mini-MORB (snapshot of MATLAB prototype) ==&lt;br /&gt;
A MATLAB prototype for linear-time-invariant, first-order systems (LTI-FOS) is largely operational.  An example [https://morwiki.mpi-magdeburg.mpg.de/morwiki/index.php/File:CdPlayer_n120m2q2.pdf report] for the [[CD Player]] benchmark is provided.&lt;br /&gt;
&lt;br /&gt;
Please also see the [https://onlinelibrary.wiley.com/doi/10.1002/pamm.202300147 report] published in PAMM, as well as the accompanying [https://zenodo.org/record/8093833 code] hosted at Zenodo.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
 @article{BenLS23,&lt;br /&gt;
     title = {Towards a benchmark framework for model order reduction in the {{Mathematical Research Data Initiative}} ({{MaRDI}})},&lt;br /&gt;
     author = {Benner, Peter and Lund, Kathryn and Saak, Jens},&lt;br /&gt;
     year = {2023},&lt;br /&gt;
     journal = {Proceeding Appl. Math. Mech.},&lt;br /&gt;
     doi = {10.1002/pamm.202300147},&lt;br /&gt;
     pages = {e202300147}&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
 @misc{mini-MORB,&lt;br /&gt;
     title = {mini-{{MORB}} ({{Model Order Reduction Benchmarker}})},&lt;br /&gt;
     author = {Lund, Kathryn and Saak, Jens and Benner, Peter},&lt;br /&gt;
     year = {2023},&lt;br /&gt;
     doi = {10.5281/zenodo.8093832}&lt;br /&gt;
 }&lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;/div&gt;</summary>
		<author><name>Saak</name></author>
	</entry>
</feed>