-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
172 changed files
with
2,029 additions
and
1,106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
Christian Himpe (orcid:0000-0003-2194-6754) - Design, Architecture, Coding, Testing, Debugging, Documentation | ||
Sara Grundel (orcid:0000-0002-0209-6566) - Coding, Testing, Debugging | ||
Stephen Werner (orcid:0000-0003-1667-4862) - Code Review, Testing | ||
Tim Mitchell (orcid:0000-0002-8426-0242) - Code Review, Testing | ||
Jens Saak (orcid:0000-0001-5567-9637) - Code Review, Testing | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,29 @@ | ||
%%% project: morgen - Model Order Reduction for Gas and Energy Networks | ||
%%% version: 0.99 (2021-04-12) | ||
%%% version: 1.0 (2021-06-22) | ||
%%% authors: C. Himpe (0000-0003-2194-6754), S. Grundel (0000-0002-0209-6566) | ||
%%% license: BSD-2-Clause (opensource.org/licenses/BSD-2-clause) | ||
%%% summary: Basic demonstration of simulation and model reduction. | ||
|
||
SETUP | ||
mor_pipeline | ||
morgen('pipeline', ... % Network | ||
'day', ... % Scenario | ||
'ode_end', ... % Model | ||
'imex1', ... % Solver | ||
{ ... % Reductors: | ||
'pod_r', ... % Proper Orthogonal Decomposition (Reachability-Based) | ||
'eds_ro_l', ... % Empirical Dominant Subspaces (Reachability-Observability-Based) Primal-Dual Variant | ||
'eds_wx_l', ... % Empirical Dominant Subspaces (Minimality-Based) Primal-Dual Variant | ||
'eds_wz_l', ... % Empirical Dominant Subspaces (Averaged-Minimality-Based) Primal-Dual Variant | ||
'bpod_ro_l', ... % Balanced Proper Orthogonal Decomposition (Reachability-Observability-Based) Primal-Dual Variant | ||
'ebt_ro_l', ... % Empirical Balanced Truncation (Reachability-Observability-Based) Primal-Dual Variant | ||
'ebt_wx_l', ... % Empirical Balanced Truncation (Minimality-Based) Primal-Dual Variant | ||
'ebt_wz_l', ... % Empirical Balanced Truncation (Averaged-Minimality-Based) Primal-Dual Variant | ||
'gopod_r', ... % Goal-Oriented Proper Orthogonal Decomposition (Reachability-Based) | ||
'ebg_ro_l', ... % Empirical Balanced Gains (Reachability-Observability-Based) Primal-Dual Variant | ||
'ebg_wx_l', ... % Empirical Balanced Gains (Minimality-Based) Primal-Dual Variant | ||
'ebg_wz_l', ... % Empirical Balanced Gains (Averaged-Minimality-Based) Primal-Dual Variant | ||
'dmd_r', ... % Dynamic Mode Decomposition Galerkin (Reachability-Based) | ||
}, ... % Ad-hoc configuration: | ||
'dt=10', ... % Use 10s time-steps | ||
'ord=50', ... % Maximum reduced order 50 (computation and evaluation) | ||
'compact'); % Make compact plot instead of individual | ||
|
Oops, something went wrong.