File size: 103,938 Bytes
d66b135 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 |
# Autoencoding Reduced Order Models For Control Through The Lens Of Dynamic Mode Decomposition
Anonymous authors Paper under double-blind review
## Abstract
Modeling and control of high-dimensional dynamical systems often involve some dimensionality reduction techniques to construct a lower-order model that makes the associated task computationally feasible or less demanding. In recent years, two techniques have become widely popular for analysis and reduced order modeling of high-dimensional dynamical systems: (1) dynamic mode decomposition and (2) deep autoencoding learning. This paper establishes a connection between dynamic mode decomposition and autoencoding learning for controlled dynamical systems. Specifically, we first show that an optimization objective for learning a linear autoencoding reduced order model can be formulated such that its solution closely resembles the solution obtained by the *dynamic mode decomposition* with control algorithm. The linear autoencoding architecture is then extended to a deep autoencoding architecture to learn a nonlinear reduced order model. Finally, the learned reduced order model is used to design a controller utilizing stability-constrained deep neural networks. The studied framework does not require knowledge of the governing equations of the underlying system and learns the model and controller solely from time series data of observations and actuations. We provide empirical analysis on modeling and control of spatiotemporal high-dimensional systems, including fluid flow control.
## 1 Introduction
Designing controllers for high-dimensional dynamical systems remains a challenge as many control algorithms become computationally prohibitive in high dimensions. Typically, a *reduce-then-design* approach (Atwell et al. (2001)) is used in practice, which involves two steps: (1) develop a reduced order model (ROM) using dimensionality reduction techniques and (2) design a controller for that reduced order model (Figure 1a). For controlled dynamical systems, the reduced order modeling approaches either combine analytical techniques with empirical approximation (Willcox & Peraire (2002)) or are purely data-driven (Juang & Pappa (1985);
Juang et al. (1993); Proctor et al. (2016)). Among these, the dynamic mode decomposition (DMD) based methods have become widely popular in recent years due to a strong connection between DMD and Koopman operator theory (Rowley et al. (2009)). Another recent research trend involves utilizing deep neural networks (DNNs), particularly autoencoders, for modeling and control of high-dimensional dynamical systems (Lusch et al. (2018); Erichson et al. (2019); Eivazi et al. (2020); Morton et al. (2018); Bounou et al. (2021); Chen et al. (2021); Ping et al. (2021)).
In this paper, we provide a perspective connecting DMD and autoencoding reduced order models for controlled dynamical systems and present a framework to learn control policies for such systems by means of the DNN-based reduced order models. We first formulate an objective function for data-driven learning of controlled dynamical systems in a linear autoencoding configuration. We analytically show that the associated objective function encourages a linear ROM that closely resembles the lower-order model obtained using the dynamic mode decomposition *with control* (DMDc) algorithm (Proctor et al. (2016)). The linear autoencoding architecture is designed in such a way that its components can be replaced with DNNs and the corresponding objective function can be optimized by gradient descent to obtain a nonlinear ROM. The architecture with DNN components, DeepROM, closely resembles the aforementioned deep autoencoding architectures used in recent literature for the prediction and control of dynamical systems. The learned
![1_image_0.png](1_image_0.png)
Figure 1: (a) Reduce-then-design paradigm for designing control for high-dimensional systems, (b): our work in the context. The rounded-corner rectangles denote the actual physical system (red outlined) or its models (green outlined) or a controller (yellow outlined). The sharp-corner rectangles indicate the techniques/procedure to obtain the models or controllers. Among those sharp-corner rectangles, the ones outlined in orange are associated with modeling, while the ones outlined in blue are associated with control. This work proposes an autoencoding learning framework that establishes a *link* with dynamic mode decomposition. The similarity with dynamic mode decomposition for control is shown through a linear autoencoding reduced order model while the prediction and control performance is evaluated using a deep autoencoding reduced order model. The dashed arrow in the figure represents the potential control methods that can be applied to the linear ROM.
DNN-based reduced order model is then used in a control learning framework, deep reduced order control (DeepROC), to design a controller for the underlying system. The control policy is learned by jointly training two DNNs: one stability-constrained DNN predicts a target closed-loop dynamics for the learned ROM while the other DNN serves as a controller to achieve that target dynamics. We analytically show that keeping the joint learning objective within a sufficiently small value implies stability for the closed-loop ROM in terms of *ultimate boundededness*, i.e., trajectories starting close to the desired state stay close to the desired state.
The overall workflow of this paper is shown in Figure 1(b). We provide empirical analysis using examples of spatiotemporal physical processes such as reaction–diffusion and fluid flow systems. In summary, our contributions are as follows:
- For controlled dynamical systems, we show that an objective function can be formulated in a linear autoencoding configuration and optimized by gradient descent such that the corresponding linear ROM closely resembles the ROM obtained using the DMDc algorithm.
- We extend the linear autoencoding configuration to a deep autoencoding configuration to learn a DNN-based nonlinear ROM.
- We analytically show that a DNN controller can be trained such that the closed-loop trajectories of the learned ROM remain ultimately bounded.
- We empirically show the similarity of the linear autoencoding reduced order model (LAROM) with DMDc and evaluate the prediction performance of DeepROM and control performance of DeepROC
in experiments with high-dimensional systems, including suppressing vortex shedding in fluid flow.
## 2 Related Work
In recent years, deep learning has seen widespread application in scientific and engineering problems, including understanding complex dynamics of large-scale or high-dimensional systems and solving associated computational tasks. The majority of the research in this area focuses on the modeling and prediction of such complex dynamics using deep neural networks (DNNs) (Xingjian et al. (2015); Long et al. (2018); Raissi
(2018); Seo et al. (2019); Ayed et al. (2019); Donà et al. (2020)) and has found application in several fields including fluid flow (Erichson et al. (2019); Eivazi et al. (2020); Srinivasan et al. (2019)), biochemical and electric power systems (Yeung et al. (2019)), climate and ocean systems (Scher (2018); Ren et al. (2021);
Yang et al. (2017); De Bézenac et al. (2019)), and structural analysis Zhang et al. (2020), just to name a few.
A second line of research, though relatively less prevalent than modeling and prediction, is utilizing deep learning for controlling high-dimensional systems and aligns closely with our work. Most of these works focus on fluid flow control tasks. Rabault et al. (2019); Tang et al. (2020) applied deep reinforcement learning in active flow control for vortex shedding suppression and used a system-specific reward function involving lift and drag. Ma et al. (2018) used an autoencoder for encoding high-dimensional fluid state to low-dimensional features and trained RL agents with those features to control rigid bodies in a coupled 2D system involving both fluid and rigid bodies. Garnier et al. (2021) also used an autoencoder for feature extraction to train an RL agent for controlling the position of a small cylinder in a two-cylinder fluid system to reduce the total drag. Beintema et al. (2020) used deep reinforcement learning with system-specific rewards to control a Rayleigh–Bénard system with the aim of reducing convective effects. Model-free deep reinforcement learning methods have high sample complexity necessitating a large number of interactions with the environment and often require system-specific reward construction. In contrast, we consider learning the control policies offline with limited pre-collected data. Moreover, we utilize standard distance-based metrics with respect to a hypothesized target dynamics instead of relying on any system-specific rewards or loss functions. Model-free RL methods require running numerical solvers in every iteration to provide feedback to the agents, which is computationally expensive. The same concern arises for the methods involving differentiable simulators.
For example, Holl et al. (2020) used a differentiable partial differential equation (PDE) solver to generate gradient-based feedback for a predictor-corrector scheme to control PDE-driven high-dimensional systems.
Takahashi et al. (2021) too integrated a differentiable simulator with DNNs to learn control in coupled solidfluid systems. In comparison, our method avoids the need for computationally intensive simulators during the learning process as it learns from pre-collected data in an offline manner. The alternative to model-free methods takes the traditional approach: develop a model first and then use that to design controllers. Deep learning is now being used in this process by developing frameworks like DeepMPC (Lenz et al. (2015)) which incorporates DNN features in model predictive control (MPC). Bieker et al. (2020) and Morton et al. (2018) utilized the DeepMPC framework for fluid flow control. Bieker et al.
(2020) used a recurrent neural network to model the dynamics of only control-relevant quantities (i.e. lift and drag) of the system, which is then employed in an MPC framework for the flow control tasks. Morton et al. (2018) followed the method proposed by Takeishi et al. (2017) and used DNN-based embedding to first learn a linear reduced order model in Koopman invariant subspace and then incorporate it in the MPC framework. Similar approaches have been applied to other high-dimensional control tasks like control from video input (Bounou et al. (2021)), automatic generation control in wind farms in the presence of dynamic wake effect (Chen et al. (2021)), and transient stabilization in power grids (Ping et al. (2021)). These model-based methods constrain the latent dynamic models to be linear that work well within a short time window. Khodkar et al. (2019) showed that the linear combination of a finite number of dynamic modes may not accurately represent the long-term nonlinear characteristics of complex dynamics and adding nonlinear forcing terms yields better prediction accuracy (Eivazi et al. (2020)). The linear ROMs are needed to be updated with online observations during operation for better prediction accuracy. Accordingly, the aforementioned model-based approaches utilize the MPC framework to optimize the control policy online using the updated dynamic model. Running online optimization at every step may not be computationally feasible in many scenarios. Conversely, we investigate if a nonlinear ROM provides a more accurate prediction over a longer time window so that an offline control learning method can be used.
## 3 Problem And Preliminaries 3.1 Problem Statement
Consider a time-invariant controlled dynamical system
$$\frac{d\mathbf{x}}{dt}=f(\mathbf{x},\mathbf{u}),\tag{1}$$
where x(t) ∈ X ⊂ R
dx , dx >> 1 and u(t) ∈ U ⊂ R
du are the system state and the actuation (or control input), respectively, at time t. Our objective is to learn a feedback controller u = π(x) for this highdimensional (dx >> 1) system of (1) to stabilize it at a desired state in a data-driven reduce-then-design approach when the nonlinear function f : X × U → R
dx is unknown. We assume that we have observations from the system consisting of time series data x(ti), i = 0, 1, · · · , n subjected to random values of actuations u(ti), i = 0, 1, *· · ·* ,(n − 1).
Note, we use v (in place of v(t) for brevity) as notation for any continuous-time variable (e.g., system state, control input), whereas v(ti) is used to denote their discrete sample at time instance ti.
## 3.2 Stabilization Of Controlled Systems
We assume that the system we are aiming to stabilize at an equilibrium point is *locally stabilizable*. Suppose the function f in (1) is locally Lipschitz and (x = 0,u = 0) is an equilibrium pair of the system, i.e.,
f(0, 0) = 0. The system (1) is said to be *locally stabilizable* with respect to the equilibrium pair if there exists a locally Lipschitz function π : X0 → U, π(0) = 0, defined on some neighborhood X0 ⊂ X of the origin x = 0 for which the closed-loop system
$${\frac{d\mathbf{x}}{d t}}=f(\mathbf{x},\pi(\mathbf{x}))$$
$$\mathbf{\Sigma}$$
$$\mathbf{\Sigma}$$
dt = f(x, π(x)) (2)
is locally *asymptotically stable*, i.e. ∥x(t0)∥ < δ implies limt→∞ x(t) = 0 (Sontag (2013)). We discuss the criteria for stability and asymptotic stability in the following paragraph.
Stability of the closed-loop system dx dt = f(x, π(x)) = h(x) at equilibrium points can be analyzed using the method of Lyapunov. Let V : X → R be a continuously differentiable function such that
$${\mathcal{V}}(\mathbf{0})=0,\quad{\mathrm{~and~}}\quad{\mathcal{V}}(\mathbf{x})>0\quad\forall\ \mathbf{x}\in{\mathbb{X}}\setminus\{\mathbf{0}\},$$
and the time derivative of V along the trajectories
$\dfrac{d\mathcal{V}}{dt}=\nabla\mathcal{V}(\pmb{x})^\top\dfrac{d\pmb{x}}{dt}=\nabla\mathcal{V}(\pmb{x})^\top h(\pmb{x})\leq0\quad\forall\ \pmb{x}\in\mathbb{X}.$ $\pmb{x}=\pmb{0}$ is *stable*, i.e., for each $\epsilon>0$, there exists a $\delta=\delta(\epsilon)>0$ such that $\pmb{x}=\pmb{0}$.
Then, the equilibrium point x = 0 is *stable*, i.e., for each ϵ > 0, there exists a δ = δ(ϵ) > 0 such that
∥x(t0)∥ < δ implies ∥x(t)∥ < ϵ, ∀*t > t*0. The function V with the above properties is called a Lyapunov function. If dV
dt < 0 in some subset Xs ⊂X \ {0}, then x = 0 is locally *asymptotically stable*. Moreover, if there exist positive constants c1, c2, c3 and c4 such that
$$\mathbf{\Sigma}$$
$$c_{1}\|\mathbf{x}\|^{2}\leq{\mathcal{V}}(\mathbf{x})\leq c_{2}\|\mathbf{x}\|^{2},$$
2, (5)
and
$$\nabla{\mathcal{V}}(\mathbf{x})^{\top}h(\mathbf{x})\leq-c_{3}\|\mathbf{x}\|^{2},\quad\forall\ \mathbf{x}\in{\mathbb{X}}_{s},$$
2, ∀ x ∈ Xs, (6)
then x = 0 is *exponentially stable*, i.e., there exist positive constants *δ, λ* and γ such that ∥x(t)∥ ≤
λ∥x(t0)∥e
−γ(t−t0), ∀∥x(t0)∥ < δ (Khalil (2002)).
In this paper, we assume that the system we are aiming to stabilize at an equilibrium point is stabilizable in the sense of the aforementioned definition and criteria, i.e., there exists a continuously differentiable function
$$\mathbf{\Sigma}$$
V and a Lipschitz continuous control law π such that criteria (3) and (4) are conformed. To ensure the stability of the closed-loop reduced order model at equilibrium, we utilize a target dynamics hypothesis that is exponentially stable at the origin, i.e., (5) and (6) are satisfied as well for this target dynamics. Detail on the target dynamics hypothesis is discussed in subsection 4.2. Though the above formulation is for stabilization at an equilibrium point x = 0, the same can be used to stabilize the system at any arbitrary point xss. In that case, a steady-state control input uss is required that can maintain the equilibrium at xss, i.e., f(xss,uss) = 0. The change of variables xe = x−xss,ue = u−uss leads to a transformed system where we can apply the aforementioned formulation of stabilization. The overall control, in this case, u = ue + uss comprises a feedback component ue and a feedforward component uss (Khalil (2002)).
## 3.3 Dynamic Mode Decomposition With Control
DMD (Schmid (2010)) is a data-driven method that reconstructs the underlying dynamics using only a time series of snapshots from the system. DMD computes a modal decomposition where each mode is associated with an oscillation frequency and decay/growth rate. DMD has become a widely used technique for spectral analysis of dynamical systems. DMDc (Proctor et al. (2016)) is an extension of DMD for dynamical systems with control. DMDc seeks best-fit linear operators A and B between successive observed states and the actuations:
$${\hat{\mathbf{x}}}(t_{i+1})=\mathbf{A}\mathbf{x}(t_{i})+\mathbf{B}\mathbf{u}(t_{i}),\quad i=0,1,\cdots,n-1,$$
where xˆ(t) denotes an approximation of x(t), A ∈ R
dx×dx , and B ∈ R
dx×du . Direct analysis of (7) could be computationally prohibitive for dx >> 1. DMDc leverages dimensionality reduction to compute a ROM
$$\mathbf{x}_{\text{R},\text{DMDc}}(t_{i})=\mathbf{E}_{\text{DMDc}}\mathbf{x}(t_{i}),\tag{8a}$$ $$\mathbf{x}_{\text{R},\text{DMDc}}(t_{i+1})=\mathbf{A}_{\text{R},\text{DMDc}}\mathbf{x}_{\text{R},\text{DMDc}}(t_{i})+\mathbf{B}_{\text{R},\text{DMDc}}\mathbf{u}(t_{i}),\quad i=0,1,\cdots,n-1,\tag{8b}$$
which retains the dominant dynamic modes of (7). Here, xR,DMDc(ti) ∈ R
rx is the reduced state, where rx *<< d*x, and EDMDc ∈ R
rx×dx , AR,DMDc ∈ R
rx×rx , BR,DMDc ∈ R
rx×du . The full state is reconstructed from the reduced state using the transformation xˆ(ti) = DDMDcxR,DMDc(ti), where DDMDc ∈ R
dx×rx . DMDc computes truncated singular value decomposition (SVD) of the data matrices Y = [x(t1), x(t2), *· · ·* , x(tn)] ∈ R
dx×n and Ω = [ω(t0), ω(t1), *· · ·* , ω(tn−1)] ∈ R
(dx+du)×n, ω(ti) =
[x(ti)
⊤,u(ti)
⊤]
⊤ ∈ R
dx+du as follows:
$$\left(7\right)$$
$$Y=\hat{U}_{Y}\hat{\Sigma}_{Y}\hat{V}_{Y}^{\top},\quad\Omega=\hat{U}_{\Omega}\hat{\Sigma}_{\Omega}\hat{V}_{\Omega}^{\top},$$
$$({\mathfrak{g}})$$
Ω , (9)
where UbY ∈ R
dx×rx , Σb Y ∈ R
rx×rx ,VbY ∈ R
n×rx , UbΩ ∈ R
(dx+du)×rxu , Σb Ω ∈ R
rxu×rxu , and VbΩ ∈ R
n×rxu .
rx < min(dx, n) and rx < rxu < min(dx + du, n) denote the truncation dimensions of SVDs. Utilizing the SVDs of (9) the parameters of the ROM (8) is obtained as
$$\begin{array}{c}{{\mathbf{E}_{\mathrm{DMdc}}=\hat{U}_{\mathbf{Y}}^{\top},\quad\mathbf{D}_{\mathrm{DMdc}}=\hat{U}_{\mathbf{Y}},}}\\ {{\mathbf{A}_{\mathrm{R,DMdc}}=\hat{U}_{\mathbf{Y}}^{\top}\mathbf{Y}\hat{V}_{\mathbf{\theta}}\hat{\mathbf{\Sigma}}_{\mathbf{\theta}}^{-1}\hat{U}_{\mathbf{\theta},1}^{\top}\hat{U}_{\mathbf{Y}},\quad\mathbf{B}_{\mathrm{R,DMdc}}=\hat{U}_{\mathbf{Y}}^{\top}\mathbf{Y}\hat{V}_{\mathbf{\theta}}\hat{\mathbf{\Sigma}}_{\mathbf{\theta}}^{-1}\hat{U}_{\mathbf{\theta},2}^{\top},}}\end{array}$$
, (10b)
where $\widehat{U}_{\Omega,1}\in\mathbb{R}^{d_{w}\times r_{wu}},\widehat{U}_{\Omega,2}\in\mathbb{R}^{d_{w}\times r_{wu}}$, and $\widehat{U}_{\Omega}^{\top}=[\widehat{U}_{\Omega,1}^{\top}\ \ \widehat{U}_{\Omega,2}^{\top}]$.
## 4 Method
As mentioned earlier, in the reduce-then-design approach, we first need to develop a ROM and then design a controller using that ROM. A controller designed for the ROM is expected to perform well in the full system only if the ROM effectively captures the dynamic characteristics of the underlying system. In this section, we first describe how to design a ROM that effectively captures the relation between successive observations and actuation. Next, we delineate the process for learning controllers utilizing the learned ROM.
$$(10\mathrm{a})$$ $$(10\mathrm{b})$$
## 4.1 Learning A Reduced Order Model
DMDc can extract the dominant modes of underlying dynamics in a reduced order model (Proctor et al.
(2016)). In order to develop a nonlinear ROM utilizing DNNs that effectively capture the underlying dynamics, we first investigate if we can obtain a linear ROM similar to DMDc, in a gradient descent arrangement.
Specifically, we analyze optimization objectives that encourage a DMDc-like solution for a reduced order modeling problem using linear networks (single layer without nonlinear activation). Consider the following reduced order modeling problem
$$\mathbf{x}_{\rm R}(t_{i})=\mathbf{E}_{\mathbf{x}}\mathbf{x}(t_{i}),\ \mathbf{x}_{\rm R}(t_{i+1})=\mathbf{A}_{\rm R}\mathbf{x}_{\rm R}(t_{i})+\mathbf{B}_{\rm R}\mathbf{u}(t_{i}),\hat{\mathbf{x}}(t_{i})=\mathbf{D}_{\mathbf{x}}\mathbf{x}_{\rm R}(t_{i}),\ i=0,1,\cdots,n-1,\tag{11}$$
where the linear operators Ex ∈ R
rx×dx and Dx ∈ R
dx×rx projects and reconstructs back, respectively, the high-dimensional system state to and from a low-dimensional feature xR ∈ R
rx . The linear operators AR ∈ R
rx×rx and BR ∈ R
rx×du describe the relations between successive reduced states and actuations.
We refer to this reduced order model with linear networks as linear autoencoding ROM or LAROM. In the following, we first analyze the solution of the optimization objective of LAROM for a fixed *encoder* Ex.
Then we establish a connection between the solution of LAROM and the solution of DMDc, and further discuss the choice of the encoder to promote similarity between the two. Finally, we extend the linear model to a DNN-based model, which we refer to as DeepROM.
## 4.1.1 **Analysis Of The Linear Reduced Order Model For A Fixed Encoder**
The DMDc algorithm essentially solves for Ge ∈ R
rx×(dx+du)to minimize 1n Pn−1 i=0 Exx(ti+1) − Gωe (ti)
2 for a fixed projection matrix Ex = EDMDc = Ub ⊤
Y
. Here, ω(ti) is the concatenated vector of state and actuation as defined in section 3.3. The optimal solution Geopt is then partitioned as [Ae Be] such that Ae ∈ R
rx×dx , Be ∈ R
rx×du . Finally, Ae is post-multiplied with the reconstruction operator DDMDc = UbY to get the ROM components AR,DMDc and BR,DMDc. Details of this process along with the proofs are given in appendix A.5. Note, the final step of this process offers dimensionality reduction only for the linear case, not in the case when the projection and reconstruction operators are nonlinear (e.g. DNNs). Therefore, we use an alternative formulation with the following results to design a loss function that encourages a DMDc-like solution for (11) and also offers dimensionality reduction when nonlinear components are used.
Theorem 4.1.1. *Consider the following objective function*
$$L_{\mathrm{pred}}(\mathbf{E_{x}},\mathbf{G})={\frac{1}{n}}\sum_{i=0}^{n-1}\left\|\mathbf{E_{x}}\mathbf{x}(t_{i+1})-\mathbf{G}\mathbf{E_{x}}\mathbf{\omega}(t_{i})\right\|^{2},$$
_where $\mathbf{G}=[\mathbf{A}_{\mathrm{R}}\quad\mathbf{B}_{\mathrm{R}}]\in\mathbb{R}^{r_{\pi}\times(r_{\pi}+d_{u})},\mathbf{E}_{\mathbf{x}\mathbf{u}}=\begin{bmatrix}\mathbf{E}_{\mathbf{x}}&\mathbf{0}\\ \mathbf{0}&\mathbf{I}_{d_{u}}\end{bmatrix}\in\mathbb{R}^{(r_{u}+d_{u})\times(d_{u}+d_{u})}$, $\mathbf{I}_{d_{u}}$ of order $d_{u}$. For any fixed matrix $\mathbf{E}_{\mathbf{x}}$ the objective function $\mathbf{I}_{\mathbf{x}}$ is a non-dimensional
being the identity matrix of order du. For any fixed matrix Ex*, the objective function* Lpred is convex in the coefficients of G and attains its minimum for any G *satisfying*
$$(12)$$
$$GE_{xu}\,\Omega\,\Omega^{\top}E_{xu}^{\top}=E_{x}Y\,\Omega^{\top}E_{xu}^{\top},\tag{1}$$
where Y and Ω are the data matrices as defined in section (3.3). If Ex has full rank rx, and ΩΩ⊤ is non-singular, then Lpred *is strictly convex and has a unique minimum for*
$$\mathbf{G}=[\mathbf{A}_{\rm R}\ \ \mathbf{B}_{\rm R}]=\mathbf{E}_{\mathbf{x}}\mathbf{Y}\mathbf{\Omega}^{\top}\mathbf{E}_{\mathbf{x}\mathbf{u}}^{\top}(\mathbf{E}_{\mathbf{x}\mathbf{u}}\mathbf{\Omega}\mathbf{\Omega}^{\top}\mathbf{E}_{\mathbf{x}\mathbf{u}}^{\top})^{-1}.\tag{14}$$
Proof sketch. This can be proved by a method similar to the one used for deriving the solution of linear autoencoder in (Baldi & Hornik (1989)). For any fixed Ex, the objective function of (12) can be written as Lpred(Ex, G) =vec(ExY ) − (Ω
⊤E⊤
xu ⊗ Irx
)vec(G)
2, where ⊗ denotes the Kronecker product and vec(·)
denotes vectorization of a matrix. Optimizing this linear least-square problem, we get (13) and (14), given the stated conditions are satisfied. The complete proof is given in appendix A.1.
$$(13)$$
$$(14)$$
Remark. For a unique solution, we assume that Ex has full rank. The other scenario, i.e., Ex is rankdeficient suggests poor utilization of the hidden units of the model. In that case, the number of hidden units (which represents the dimension of the reduced state) should be decreased. The assumption that the covariance matrix ΩΩ⊤ is invertible can be ensured when n ≥ dx + du, by removing any linearly dependent features in system state and actuation. When *n < d*x + du, the covariance matrix ΩΩ⊤ is not invertible.
However, similar results can be obtained by adding ℓ2 regularization (for the coefficients/entries of G) to the objective function. Proof of this is given in appendix A.4.
## 4.1.2 **The Connection Between The Solutions Of The Linear Autoencoding Model And Dmdc**
The connection between the ROM obtained by minimizing Lpred (for a fixed Ex), i.e., (14) and the DMDc ROM of (10b) is not readily apparent. To interpret the connection, we formulate an alternative representation of (14) utilizing the SVD and the Moore-Penrose inverse of matrices. This alternative representation leads to the following result.
Corollary 4.1.1.1. Consider the (full) SVD of the data matrix Ω *given by* Ω = UΩΣΩV
⊤
Ω *, where* UΩ ∈
R
(dx+du)×(dx+du), ΣΩ ∈ R
(dx+du)×n*, and* VΩ ∈ R
n×n*. If* Ex = Ub ⊤
Yand ΩΩ⊤ is non-singular, then the solution for G = [AR BR] corresponding to the unique minimum of Lpred *can be expressed as*
$$\mathbf{A}_{R}=\hat{\mathbf{U}}_{Y}^{\top}\mathbf{Y}\mathbf{V}_{\Omega}\Sigma^{*}\mathbf{U}_{\Omega,1}^{\top}\hat{\mathbf{U}}_{Y},\quad a n d\quad\mathbf{B}_{R}=\hat{\mathbf{U}}_{Y}^{\top}\mathbf{Y}\mathbf{V}_{\Omega}\Sigma^{*}\mathbf{U}_{\Omega,2}^{\top},$$
$$(15)$$
, (15)
where [U ⊤
Ω,1 U ⊤
Ω,2
] = U ⊤
Ω *with* UΩ,1 ∈ R
dx×(dx+du), UΩ,2 ∈ R
du×(dx+du)*, and* Σ
∗ = limε→0(Σ
⊤
Ω U ⊤
Ω,1UbY Ub ⊤
Y UΩ,1ΣΩ + Σ
⊤
Ω U ⊤
Ω,2UΩ,2ΣΩ + ε 2In)
−1Σ
⊤
Ω .
Proof sketch. This can be derived by plugging Ex = Ub ⊤
Y
into (14), and using the *SVD definition* and the limit definition (Albert (1972)) of the Moore-Penrose inverse. The complete proof is given in appendix A.3 that uses some preliminary results presented in appendix A.2. Remark. It can be verified easily that if we use the truncated SVD (as defined by 9), instead of the full SVD, for Ω in corollary 4.1.1.1, we get an approximation of (15):
$$\widehat{\mathbf{A}}_{\rm R}=\widehat{\mathbf{U}}_{\mathbf{Y}}^{\top}\mathbf{Y}\widehat{\mathbf{V}}_{\mathbf{\Omega}}\widehat{\mathbf{\Sigma}}^{*}\widehat{\mathbf{U}}_{\mathbf{\Omega},1}^{\top}\widehat{\mathbf{U}}_{\mathbf{Y}},\quad\mbox{and}\quad\widehat{\mathbf{B}}_{\rm R}=\widehat{\mathbf{U}}_{\mathbf{Y}}^{\top}\mathbf{Y}\widehat{\mathbf{V}}_{\mathbf{\Omega}}\widehat{\mathbf{\Sigma}}^{*}\widehat{\mathbf{U}}_{\mathbf{\Omega},2}^{\top},\tag{16}$$
where Σb∗ = limε→0(Σb
⊤
Ω Ub ⊤
Ω,1UbY Ub ⊤
Y UbΩ,1Σb Ω + Σb
⊤
Ω Ub ⊤
Ω,2UbΩ,2Σb Ω + ε 2Irxu
)
−1Σb
⊤
Ω . We can see that (16) has the same form as (10b), except Σb
−1 Ω is replaced with Σb∗.
All the aforementioned results are derived for a fixed Ex and the relation to the DMDc is specific to the case Ex = Ub ⊤
Y
. Note that the columns of the UbY are the left singular vectors, corresponding to the leading singular values, of Y . Equivalently, those are also the eigenvectors, corresponding to the leading eigenvalues, of the covariance matrix Y Y ⊤. Lpred alone does not constrain Ex to take a similar form and we need another loss term to encourage such form for the encoder. To this end, we follow the work of Baldi & Hornik
(1989) on the similarity between principle component analysis and linear autoencoders, optimized with the following objective function:
$$L_{\rm recon}(\mathbf{E_{x}},\mathbf{D_{x}})=\frac{1}{n}\sum_{i=1}^{n}\left\|\mathbf{x}(t_{i})-\mathbf{D_{x}}\mathbf{E_{x}}\mathbf{x}(t_{i})\right\|^{2}.\tag{17}$$
They showed that all the critical points of Lrecon correspond to projections onto subspaces associated with subsets of eigenvectors of the covariance matrix Y Y ⊤. Moreover, Lrecon has a unique global minimum corresponding to the first rx (i.e., the desired dimension of the reduced state) number of eigenvectors of Y Y ⊤, associated with the leading rx eigenvalues. In other words, for any invertible matrix C ∈ R
rx×rx ,
Dx = Urx C and Ex = C−1U ⊤
rx globally minimizes Lrecon, where Urx denotes the matrix containing leading rx eigenvectors of Y Y ⊤. Since the left singular vectors of Y are the eigenvectors of Y Y ⊤, we have Urx = UbY . Hence, we consider to utilize Lrecon to promote learning an encoder Ex in the form of C−1Ub ⊤
Y
.
![7_image_0.png](7_image_0.png)
$$(18)$$
Figure 2: Autoencoding architecture for reduced order modeling. The state encoder Ex and control encoder Eu reduce the dimension of the state and actuation, respectively. The ROM F takes the current reduced state and actuation to predict the next reduced state, which is then uplifted to the full state by the state decoder Dx. All modules are trained together using a combined loss involving Lpred and Lrecon. The dashed arrow indicates that the Eu is used only when du >> 1; otherwise, the actuation is used as a direct input to ROM.
$$L(\mathbf{E_{x}},\mathbf{D_{x}},\mathbf{G})=L_{\mathrm{pred}}(\mathbf{E_{x}},\mathbf{G})+\beta_{1}L_{\mathrm{recon}}(\mathbf{E_{x}},\mathbf{D_{x}}),$$
Accordingly, we propose to minimize the following objective function to encourage a DMDc-like solution for LAROM:
L(Ex, Dx, G) = Lpred(Ex, G) + β1Lrecon(Ex, Dx), (18)
where β1 > 0 is a tunable hyperparameter.
It is important to note that Lrecon is minimized for any invertible matrix C, Dx = UbY C, and Ex = C−1Ub ⊤
Y
.
When optimized using gradient descent, it is highly unlikely to get C as the identity matrix like DMDc.
Rather, we expect a random C. Therefore, we need additional constraints to promote similarity with DMDc. For this purpose, we tie the matrices Ex and Dx to be the transpose of each other and add a semi-orthogonality constraint β4∥ExE⊤
x − Irx
∥, β4 > 0 to the optimization objective of (18).
## 4.1.3 **Extending The Linear Model To A Deep Model**
Here, we discuss the process of extending LAROM to a nonlinear reduced order modeling framework. We replace all the trainable components of LAROM, i.e., Ex, Dx, and G, with DNNs. Specifically, we use an encoding function or *encoder* Ex : X → R
rx and a decoding function or *decoder* Dx : R
rx → X to transform the high-dimensional system state to low-dimensional features and reconstruct it back, respectively, i.e.,
$$\mathbf{x}_{\mathrm{R}}={\mathcal{E}}_{\mathbf{x}}(\mathbf{x}),\quad{\hat{\mathbf{x}}}={\mathcal{D}}_{\mathbf{x}}(\mathbf{x}_{\mathrm{R}}),$$
xR = Ex(x), xˆ = Dx(xR), (19)
where xR ∈ R
rx denotes the reduced state, and xˆ is the reconstruction of x. Unlike the linear case, we
use an encoder Eu : U → R
ru , ru *<< d*u for the actuation as well, in cases where the control space is also
high-dimensional (for example, distributed control of spatiotemporal PDEs). The control encoder Eu maps
the high-dimensional actuation to a low-dimensional representation: uR = Eu(u), where uR ∈ R
ru denotes
the encoded actuation. The encoded state and control are then fed to another DNN that represents the
reduced order dynamics
$${\frac{d\mathbf{x}_{\mathrm{R}}}{d t}}={\mathcal{F}}(\mathbf{x}_{\mathrm{R}},\mathbf{u}_{\mathrm{R}}),$$
dt = F(xR,uR), (20)
$$(19)$$
$$(20)^{\frac{1}{2}}$$
where F : R
rx × R
ru → R
rx . Given the current reduced state xR(ti) and control input uR(ti), the next reduced state xR(ti+1) can be computed by integrating F using standard numerical integrator or neural ODE (Chen et al. (2018)):
(2018)): $$ \begin{aligned} \boldsymbol{x}_{\rm R}(t_{i+1}) = \boldsymbol{x}_{\rm R}(t_i) + \int_{t_i}^{t_{i+1}} \mathcal{F}\big(\boldsymbol{x}_{\rm R}(t_i), \boldsymbol{u}_{\rm R}(t_i)\big) dt \stackrel{\Delta}{=} \mathcal{G}\big(\boldsymbol{x}_{\rm R}(t_i), \boldsymbol{u}_{\rm R}(t_i)\big).\end{aligned}$$ is the nonlinear counterpart of $\boldsymbol{G}$.
$$(21)$$
We can say that G is the nonlinear counterpart of G.
Note, here the ROM is represented as a continuous-time dynamics, unlike the linear case where we used a discrete-time model. We use a discrete-time formulation for LAROM to establish its similarity with DMDc, which is formulated in discrete time. DeepROM can be formulated in a similar fashion as well. However, the specific control learning algorithm we used, which will be discussed in the next subsection, requires vector fields of the learned ROM for training. Therefore, we formulate the ROM in continuous time so that it provides the vector field F(xR,uR) of the dynamics. In cases where only the prediction model is of interest and control learning is not required, a discrete-time formulation should be used for faster training of the ROM.
We train Ex, Eu, Dx, and F by minimizing the following loss function, analogous to (18),
$$(22)$$
$$(23)$$
L(Ex, Eu, Dx, F) = Lpred(Ex, Eu, F) + β2Lrecon(Ex, Dx), (22)
where β2 > 0 is a tunable hyperparameter and Lpred,Lrecon are defined as follows,
$$\mathcal{L}_{\text{pred}}(\mathcal{E}_{\mathbf{x}},\mathcal{E}_{\mathbf{u}},\mathcal{F})=\frac{1}{n}\sum_{i=0}^{n-1}\left\|\mathcal{E}_{\mathbf{x}}\left(\mathbf{x}(t_{i+1})\right)-\mathcal{G}\Big{(}\mathcal{E}_{\mathbf{x}}\left(\mathbf{x}(t_{i})\right),\mathcal{E}_{\mathbf{u}}\left(\mathbf{u}(t_{i})\right)\Big{)}\right\|^{2},$$ $$\mathcal{L}_{\text{recon}}(\mathcal{E}_{\mathbf{x}},\mathcal{D}_{\mathbf{x}})=\frac{1}{n}\sum_{i=1}^{n}\left\|\mathbf{x}(t_{i})-\mathcal{D}_{\mathbf{x}}\circ\mathcal{E}_{\mathbf{x}}\left(\mathbf{x}(t_{i})\right)\right\|^{2}.$$
Here, the operator ◦ denotes the composition of two functions. In experiments, Lrecon also includes the reconstruction loss of the desired state where we want to stabilize the system. Figure 2 shows the overall framework for training DeepROM.
## 4.2 Learning Control
Once we get a trained ROM of the form (20) using the method proposed in section 4.1, the next goal is to design a controller for the system utilizing that ROM. Since our ROM is represented by DNNs, we need a data-driven method to develop the controller. We adopt the approach presented by Saha et al. (2021)
for learning control law for nonlinear systems, represented by DNNs. The core idea of the method is to hypothesize a target dynamics that is exponentially stable at the desired state and simultaneously learn a control policy to realize that target dynamics in closed loop. A DNN is used to represent the vector field Fs : R
rx → R
rx of the target dynamics dxR
dt = Fs(xR). We use another DNN to represent a controller Π : R
rx → R
du that provides the necessary actuation for a given reduced state xR:
u = Π(xR). (24)
This control u is then encoded by (trained) Eu to its low-dimensional representation uR. Finally, the reduced state xR and actuation uR are fed to the (trained) ROM of (20) to get F(xR,uR). The overall framework for learning control is shown in Figure 3.
Our training objective is to minimize the difference between F(xR,uR) and Fs(xR), i.e.,
$$u=\Pi(x_{\mathrm{R}}).$$
$${\mathcal{L}}_{\mathrm{ctrl}}({\mathcal{F}}_{s},\Pi)=\frac{1}{n}\sum_{i=1}^{n}\left\|{\mathcal{F}}\big{(}{\mathcal{E}}_{\mathbf{x}}(\mathbf{x}(t_{i})),{\mathcal{E}}_{\mathbf{u}}\circ\Pi\circ{\mathcal{E}}_{\mathbf{x}}(\mathbf{x}(t_{i}))\big{)}-{\mathcal{F}}_{s}\circ{\mathcal{E}}_{\mathbf{x}}\big{(}\mathbf{x}(t_{i})\big{)}\right\|^{2}.$$
2. (25)
To minimize the control effort, we add a regularization loss with (25), and the overall training objective for learning control is given by
$${\mathcal{L}}_{\mathrm{ctrl,reg}}({\mathcal{F}}_{s},\Pi)={\mathcal{L}}_{\mathrm{ctrl}}({\mathcal{F}}_{s},\Pi)+\beta_{3}\ {\frac{1}{n}}\sum_{i=1}^{n}\left\|\Pi({\mathbf{x}}_{\mathrm{R}}(t_{i}))\right\|^{2},$$
$\left(24\right)^{\frac{1}{2}}$
$$(25)$$
$$(26)$$
![9_image_0.png](9_image_0.png)
$$(27)$$
$$\mathbf{u}=\Pi\circ{\mathcal{E}}_{\mathbf{x}}(\mathbf{x})=\pi(\mathbf{x}).$$
Figure 3: The control learning process. Given a reduced state, Fs predicts a target dynamics for the closedloop system, and the controller Π predicts an actuation to achieve that target. Both the modules are trained jointly using the loss function Lctrl. Parameters of the dark-shaded modules are kept fixed during this process.
where β3 > 0 is a tunable hyperparameter. Here we jointly train the DNNs representing Π and Fs only, whereas the previously-trained DNNs for Ex, Eu, and F are kept frozen. Once all the DNNs are trained, we only need Ex and Π during evaluation to generate actuation for the actual system, given a full-state observation:
u = Π ◦ Ex(x) = π(x). (27)
As we mentioned earlier, we require the target dynamics, hypothesized by a DNN, to be exponentially stable at the desired state. Without loss of generality, we consider stability at xR = 0. As we mentioned earlier, the system can be stabilized at any desired state by adding a feedforward component to the control. Dynamics represented by a standard neural network is not stable at any equilibrium point, in general. Kolter & Manek
(2019) showed that it is possible to design a DNN, by means of Lyapunov functions, to represent a dynamics that is exponentially stable at an equilibrium point. Accordingly, we represent our target dynamics as follows:
$$\frac{d\mathbf{x}_{\rm R}}{dt}=\mathcal{F}_{s}(\mathbf{x}_{\rm R})=\mathcal{P}(\mathbf{x}_{\rm R})-\frac{\mathrm{ReLU}\big{(}\nabla\mathcal{V}_{\rm R}(\mathbf{x}_{\rm R})^{\top}\mathcal{P}(\mathbf{x}_{\rm R})+\alpha\mathcal{V}_{\rm R}(\mathbf{x}_{\rm R})\big{)}}{\|\nabla\mathcal{V}_{\rm R}(\mathbf{x}_{\rm R})\|^{2}}\nabla\mathcal{V}_{\rm R}(\mathbf{x}_{\rm R}),$$
where α is a positive constant, ReLU(z) = max(0, z), z ∈ R, and VR : R
rx → R is a candidate Lyapunov function, i.e., satisfies the criteria similar to (3) and (5). We use
$$(28)$$
$$\mathcal{V}_{\mathrm{R}}(\mathbf{x}_{\mathrm{R}})=\mathbf{x}_{\mathrm{R}}^{\top}\mathbf{K}\mathbf{x}_{\mathrm{R}},$$
$$(29)$$
RKxR, (29)
$\mathcal{L}\subset\mathbb{R}^{r_{\mathbf{x}}\times r_{\mathbf{x}}}$.
where K ∈ R
rx×rx is a positive definite matrix.
Though the efficacy of learning control by minimizing the difference with respect to a target dynamics is experimentally demonstrated by Saha et al. (2021), the stability of the closed-loop system subjected to the learned control law has not been studied analytically. Here, we present a result that shows that if we can minimize Lctrl such that the difference between the target dynamics and the closed-loop dynamics is sufficiently small for all xR ∈ XR ⊂ R
rx , then the trajectories of the closed-loop ROM starting sufficiently close to the origin remains close to the origin, i.e., *ultimately bounded* (Khalil (2002)). Boundedness of the closed-loop ROM trajectories under the proposed control policy is a necessary but not sufficient requirement for the stability of the original system.
Theorem 4.2.1. Consider the target dynamics defined by (28)and the candidate Lyapunov function defined by (29). Suppose the difference between the target dynamics and the closed-loop dynamics satisfies
$$\|{\mathcal{F}}(\mathbf{x_{R}},{\mathcal{E}_{u}}\circ\Pi(\mathbf{x_{R}}))-{\mathcal{F}_{s}}(\mathbf{x_{R}})\|\leq\delta<{\frac{\alpha\theta\lambda_{\mathrm{min}}(\mathbf{K})}{2\lambda_{\mathrm{max}}(\mathbf{K})}}{\sqrt{\frac{\lambda_{\mathrm{min}}(\mathbf{K})}{\lambda_{\mathrm{max}}(\mathbf{K})}}}\eta,$$
for all xR ∈ XR = {xR ∈ R
rx | ∥xR∥ < η} and 0 < θ < 1*. Then, for all initial points satisfying*
∥xR(t0)∥ <
q λmin(K)
λmax(K)
η*, the solution of the closed-loop ROM* dxR
dt = F(xR, Eu ◦ Π(xR)) *satisfies*
$$\|\mathbf{x}_{\mathrm{R}}(t)\|\leq\lambda e^{-\gamma(t-t_{0})}\|\mathbf{x}_{\mathrm{R}}(t_{0})\|,\quad\forall\ t_{0}\leq t<t_{c}+t_{0}$$
and
$$(30)$$
$$(31)$$
$$\|\mathbf{x}_{\rm R}(t)\|\leq\frac{2\delta}{\alpha\theta}\lambda^{3},\quad\forall\;t\geq t_{c}+t_{0}\tag{1}$$
$$(32)$$
$$(33)$$
for some finite tc > 0*, where*
$$\gamma=\frac{\alpha(1-\theta)\lambda_{\mathrm{min}}(K)}{2\lambda_{\mathrm{max}}(K)}\quad a n d\quad\lambda=\sqrt{\frac{\lambda_{\mathrm{max}}(K)}{\lambda_{\mathrm{min}}(K)}}$$
Proof Sketch. This can be proved by first deriving the Lyapunov conditions for the target dynamics (28)
(Theorem 1, Kolter & Manek (2019)) and then applying the stability analysis of perturbed systems (Lemma 9.2, Khalil (2002)) and ultimate boundedness (Theorem 4.18, Khalil (2002)) on the closed-loop ROM. A
unified proof is provided in appendix A.6.
## 5 Empirical Results
For empirical analysis, we consider modeling and controlling spatiotemporal PDE-driven systems with highdimensional measurements over discretized space. One of the primary applications of reduced order modeling lies in comprehending the behavior of complex physical processes which are typically characterized by systems of PDEs. Since spatiotemporal PDE-driven systems are infinite-dimensional in their continuous form and high-dimensional when discretized, they are a fitting choice for evaluating our method. The first example investigates a single variable actuation, whereas distributed actuation is considered for the second example.
## 5.1 **Baselines**
The similarity between DMDc and LAROM is demonstrated using the dynamic modes estimated in respective methods. The prediction performance of DeepROM is compared against DMDc and the Deep Koopman model (Morton et al. (2018)). The Deep Koopman model shares a similar DNN-based autoencoding structure as ours, with the distinction that its (reduced order) dynamic model is linear. The method proposed by Morton et al. (2018) considers a model predictive scenario, where the state/system matrix of the linear reduced order model is updated with online observations during operation while the input/control matrix is kept fixed. However, in contrast to the original method, we keep both matrices fixed during operation
(once those are trained) as we consider offline control design in this paper. For the same reason, we apply linear quadratic regulator (LQR) on the ROM obtained from the Deep Koopman method, instead of model predictive control, to compare the control performance with our method: DeepROC. The control performance is also compared against the reduced order controller obtained by applying LQR on the ROM derived from DMDc. Details on the neural network architectures and training settings for the Deep Koopman model are given in appendix D.
## 5.2 Reaction–Diffusion System Stabilization
For the first experiment, we consider the Newell–Whitehead–Segel reaction-diffusion equation with the Neumann boundary condition
$$\frac{\partial q}{\partial t}=\sigma\nabla^{2}q+q(1-q^{2})+{\bf1}\psi w\quad\mbox{in}\mathbb{I}\times\mathbb{R}^{+},$$ $$\nabla q(\zeta_{t},t)=\nabla q(\zeta_{r},t)=0,\quad t\in\mathbb{R}^{+},\tag{34}$$
which is used to describe various nonlinear physical systems including Rayleigh–Bénard convection. This example is used by Kalise & Kunisch (2018) to evaluate nonlinear controllers designed from reduced order state space representation. Similar systems are used for modeling problems as well in 1D (Raissi et al. (2019))
and 2D (Li et al. (2020)). In (34), q(*ζ, t*) ∈ R denotes the measurement variable such as concentration or temperature at location ζ ∈ I ⊂ R and time t; σ denotes the diffusion coefficient; w(t) ∈ R is the actuation at time t and 1W(ζ) is the indicator function with W ⊂ I; ζl and ζr denote the boundary points of I.
(34) is a bistable system with ±1 as stable and 0 as unstable equilibria. For the control task, we consider feedback stabilization of (34) at the unstable equilibrium 0, as studied by Kalise & Kunisch (2018). We use I = (−1, 1), W = (−0.2, 0.2), and σ = 0.2. Details on dataset generation, neural network architectures, and training settings are given in appendix B.
## 5.2.1 Similarity With Dmdc
To investigate the similarity DMDc, we first train the LAROM using gradient descent to minimize the objective (18) with the semi-orthogonality regularization and enforcing Dx = E⊤
x , as discussed in 4.1.2.
The dynamic modes for LAROM are computed as φi = Dxzi, where ziis the i th eigenvector of AR.
Similarly, the dynamic modes for DMDc are computed as φi,DMDc = DDMDczi,DMDc, where zi,DMDc is the i th eigenvector of AR,DMDc. Note, these dynamic modes are similar to the ones used in the original DMD algorithm Schmid (2010), not the exact modes obtained in Proctor et al. (2016). Exact modes cannot be computed for LAROM since it does not involve SVD. Modes defined by φi,DMDc = DDMDczi,DMDc =
UbY zi,DMDc are the orthogonal projection of the exact modes onto the range of Y (Theorem 3, Tu et al.
(2014)). Figure 4 compares the dynamic modes obtained using DMDc and LAROM for the case when the dimension of the ROMs is 3. It is important to note that the numbering of the modes is arbitrary as the optimal ranking of DMDc modes is not trivial. The correspondence between the DMDc modes and LAROM
modes are determined by comparing the eigenvalues of AR,DMDc and AR. Dynamic modes of both methods are similar except for the different signs of the first two modes.
DMDc dynamic modes LAROM dynamic modes
![11_image_0.png](11_image_0.png)
![11_image_1.png](11_image_1.png)
Figure 4: The first three dynamic modes of the reaction–diffusion system, obtained using DMDc and LAROM.
## 5.2.2 Prediction Performance Of Deeprom
We now compare the performance of DeepROM, Deep Koopman model, and DMDc in the prediction task. Note, this example uses low-dimensional actuation (just a single variable). Accordingly, the control encoder
![12_image_0.png](12_image_0.png)
Figure 5: Prediction performance of DMDc, Deep Koopman, and DeepROM in the reaction-diffusion example. The prediction error plot shows the mean error and 95% confidence interval from 100 test sequences and for Deep Koopman and DeepROM, 3 different training instances. One example sequence is used to visually compare the predictions with the solution from a PDE solver.
En is not used here. Figure 5 shows the quantitative and qualitative comparison of the recursive multi-step predictions obtained using DMDc, Deep Koopman model, and DeepROM. The prediction error is computed as normalized mean squared error (NMSE) with respect to the solution obtained using the PDE solver. The prediction error plot shows the mean error and 95% confidence interval from 100 test sequences and for Deep Koopman and DeepRQM, 3 different training instances. The color maps are shown for one example sequence with one training instance. Prediction error increases more quickly for DMDc and Deep Koopman than DeepROM as the linear ROMs become less accurate in the long term.
## 5.2.3 Control Performance Of Deeproc
Figure 6 shows the control performance of DeepROC, Deep Koopman + LQR, and DMDc + LQR in the task of stabilizing the system at the unstable equilibrium 0 from an initial state 2 + cos(2n()cos(7(). We use the following metrics for comparison:
(i) mean squared error over time between the controlled solutions and the desired profile
(ii) differential magnitude that measures the differential changes between the profiles at consecutive time steps. In the steady state, the differential magnitude should be close to zero.
(iii) the amount of actuation applied For Deep Koopman and DeepROC, the plots show the mean values with 1-standard deviation interval from 3 training instances. All methods show similar closed-loop error profiles. However, DeepROC requires significantly less amount of actuation in comparison with DMDc + LQR and Deep Koopman + LQR to reach a similar steady-state error. DeepROC can account for the decaying nonlinear term -q8 present in the system (34) and therefore learns to apply less actuation. Figure 7 visually compares the uncontrolled solution and the controlled solutions obtained using the three methods. When uncontrolled, the system reaches the stable equilibrium at 1, whereas the feedback-controlled system is stabilized at the desired state 0 in both cases.
![13_image_0.png](13_image_0.png)
Figure 6: Control performance of DMDc + LQR, Deep Koopman + LQR, and DeepROC in the reaction-diffusion example. For Deep Koopman and DeepROC, the plots show the mean values with 1-standard deviation interval from 3 training instances.
![13_image_1.png](13_image_1.png)
Figure 7: Visual comparison of the uncontrolled solution and the controlled solutions using DeepROC, Deep Koopman + LQR, and DMDc + LQR.
## 5.3 Vortex Shedding Suppression In Fluid
In this experiment, we consider modeling and suppressing vortex shedding in two-dimensional incompressible flow past a circular cylinder. This is a well-known problem (Schäfer et al. (1996)) and is of great importance for many engineering applications (Williamson (1996)). Several previous studies on deep learning-based modeling and control have used this system for evaluation (Eivazi et al. (2020); Erichson et al. (2019);
Rabault et al. (2019); Tang et al. (2020); Bieker et al. (2020); Morton et al. (2018)). The dynamics is governed by the incompressible Navier-Stokes equations given by
$${\frac{\partial\mathbf{v}}{\partial t}}-\nu\nabla^{2}\mathbf{v}+(\mathbf{v}\cdot\nabla)\mathbf{v}=-{\frac{1}{\rho}}\nabla p+\mathbf{1}_{\mathbb{W}}\mathbf{w},\quad\nabla\cdot\mathbf{v}=\mathbf{0}\quad{\mathrm{in~}}\mathbb{I}\times\mathbb{R}^{+},$$
$$(35)$$
where v(ζ, t) ∈ R
2 denotes the flow velocity at location ζ ∈ I ⊂ R
2 and time t, p(ζ, t) ∈ R denotes the pressure, ν denotes the kinematic viscosity and ρ denotes the density of the fluid. w(ζ, t) is the actuation/force applied to the system and 1W(ζ) is the indicator function with W ⊂ I. We use I = (0, 2.2) × (0, 0.41) and W = (0.11, 0.77) × (0, 0.41). Density and kinematic viscosity are chosen such that the Reynolds number is Re = 50, which is just above the cutoff for the onset of the vortex shedding (Williamson (1996)). In this case, vortices are created at the back of the cylinder and are shed periodically from the upper and lower surfaces of the cylinder forming a von Kármán vortex street (Morton et al. (2018)). We use the domain W
for observation and distributed actuation. The Stokes flow is used as the desired state for the control task. More details on the problem setup, dataset generation, neural network architectures, and training settings are given in appendix C.
## 5.3.1 Similarity With Dmdc
To analyze the dynamic modes, we train the LAROM by enforcing Dx = E⊤
x and adding the semiorthogonality constraint to the learning objective, as mentioned in 4.1.2. Figure 8 compares the first two oscillatory dynamic modes obtained using DMDc and LAROM. Only the streamwise components are shown for brevity. Also, complex modes occur in conjugate pairs and only one from each pair is shown. The correspondence between the DMDc modes and LAROM modes are determined by comparing the eigenvalues of AR,DMDc and AR. Dynamic modes identified by LAROM are similar to the ones obtained from DMDc, except the real and imaginary components of the first mode are swapped.
![14_image_0.png](14_image_0.png)
Figure 8: The first two dynamic modes obtained using DMDc and LAROM for the flow past a cylinder system.
## 5.3.2 Prediction Performance Of Deeprom
Figure 9 shows the quantitative and qualitative comparison of the recursive multi-step predictions, starting from t = 0.1, obtained using DMDc, Deep Koopman model, and DeepROM. The initial state is chosen at t = 0.1 because the fluid does not reach the observation region W before that time. The prediction error is computed as the *mean squared error* (MSE) with respect to the solution obtained using a PDE solver. For Deep Koopman and DeepROM, the prediction error plot shows the mean error and 1-standard deviation interval from 3 training instances. DeepROM shows lower prediction error in comparison with DMDc. The Deep Koopman model shows better prediction performance than DeepROM and DMDc during the initial few steps. However, its accuracy deteriorates rapidly and eventually becomes comparable to that of DMDc. Moreover, unlike DeepROM, DMDc and Deep Koopman model are unable to capture the shedding pattern in multi-step prediction as shown in the contour plots of the velocity magnitude.
## 5.3.3 Control Performance Of Deeproc
Figure 10 shows the control performance of DeepROC, Deep Koopman + LQR, and DMDc+LQR in the task of suppressing vortex shedding. The controllers of DeepROC and DMDc + LQR directly estimate the high-
![15_image_0.png](15_image_0.png)
![15_image_1.png](15_image_1.png)
Figure 9: Prediction performance of DMDc, Deep Koopman, and DeepROM in the fluid flow example. For Deep Koopman and DeepROM, the prediction error plot shows the mean error and 1-standard deviation interval from 3 training instances. Predictions at time step 2500 for the test sequence are visually compared with the solution from a PDE solver. vm denotes the velocity magnitude.
dimensional actuation distributed over space. However, the same technique proved ineffective in suppressing the shedding for Deep Koopman + LQR. Therefore, instead of directly estimating the distributed actuation, we utilize a low-dimensional representation of the actuation for Deep Koopman + LQR. We represent the distributed actuation as a linear combination of some space-dependent sinusoidal basis functions. The controller is designed to estimate the coefficients of those basis functions in the linear combination. Details are provided in appendix D. We use the same metrics as the previous example for comparison except for actuation. Since distributed control is applied in this case, we use the magnitude of the actuation here. For DeepROC and Deep Koopman
+ LQR, the plots show the mean values with 1-standard deviation interval from 3 training instances. To reach a similar steady-state error, DeepROC takes a longer time compared to DMDc and Deep Koopman
+ LQR. DeepROM uses the least amount of actuation during the initial few steps, whereas Deep Koopman
+ LQR has the least steady-state actuation magnitude. Figure 11 shows the velocity magnitude of the controlled flow for DeepROC, Deep Koopman + LQR, and DMDc+LQR at different times, starting from a von Kármán vortex street pattern. All methods accomplish a similar steady-state flow pattern where vortex shedding has been suppressed.
## 6 Conclusion
We presented a framework for autoencoder-based modeling and control learning for high-dimensional dynamical systems. We showed that autoencoding ROMs are capable of capturing the dominant modes that are essential in analyzing and designing control for the underlying systems. As we showed in experiments, DeepROM offers better prediction accuracy than a linear ROM over a relatively longer prediction horizon when applied to nonlinear systems. However, this advantage does not always translate to significant improvement in control performance. Though the used control learning method theoretically ensures ultimate boundedness for the closed-loop ROM solution, data-driven optimization of the learning objective often makes the models susceptible to distribution shift which can impact the control performance. The control learning process in the DeepROC framework can easily be replaced with other methods like model-based RL
or model predictive control. It would be interesting for future work to investigate whether updating both the reduced model and the controller in the MPC framework ensures robustness under distribution shift and
![16_image_0.png](16_image_0.png)
Figure 10: Control performance of DMDc + LQR, Deep Koopman + LQR, and DeepROC in the vortex shedding suppression task. For Deep Koopman + LQR and DeepROC, the plots show the mean values with 1-standard deviation interval from 3 training instances.
![16_image_1.png](16_image_1.png)
Figure 11: Visual comparison of the velocity magnitude of the flow over time subjected to the controllers obtained using DeepROC, Deep Koopman + LQR, and DMDc + LQR.
offers better control performance. Designing controllers for DNN-based models is a challenging task due to the standard difficulties associated with non-convex optimization. Nevertheless, we envision great prospects in solving many problems of control design for high-dimensional systems utilizing autoencoder-based models as they continue to demonstrate their effectiveness in the analysis and prediction of such systems.
## References
Arthur Albert. *Regression and the Moore-Penrose Pseudoinverse*. Academic Press, 1972.
Jeanne A Atwell, Jeffrey T Borggaard, and Belinda B King. Reduced order controllers for burgers' equation with a nonlinear observer. *International Journal of Applied Mathematics and Computer Science*, 11(6):
1311–1330, 2001.
Ibrahim Ayed, Emmanuel de Bézenac, Arthur Pajot, Julien Brajard, and Patrick Gallinari. Learning dynamical systems from partial observations. *arXiv preprint arXiv:1902.11136*, 2019.
Pierre Baldi and Kurt Hornik. Neural networks and principal component analysis: Learning from examples without local minima. *Neural networks*, 2(1):53–58, 1989.
Gerben Beintema, Alessandro Corbetta, Luca Biferale, and Federico Toschi. Controlling rayleigh–bénard convection via reinforcement learning. *Journal of Turbulence*, 21(9-10):585–605, 2020.
Katharina Bieker, Sebastian Peitz, Steven L Brunton, J Nathan Kutz, and Michael Dellnitz. Deep model predictive flow control with limited sensor data and online learning. *Theoretical and computational fluid* dynamics, 34:577–591, 2020.
Oumayma Bounou, Jean Ponce, and Justin Carpentier. Online learning and control of dynamical systems from sensory input. In *NeurIPS 2021-Thirty-fifth Conference on Neural Information Processing Systems* Year, 2021.
Kaixuan Chen, Jin Lin, Yiwei Qiu, Feng Liu, and Yonghua Song. Deep learning-aided model predictive control of wind farms for agc considering the dynamic wake effect. *Control Engineering Practice*, 116:
104925, 2021.
Ricky TQ Chen, Yulia Rubanova, Jesse Bettencourt, and David K Duvenaud. Neural ordinary differential equations. *Advances in neural information processing systems*, 31, 2018.
Emmanuel De Bézenac, Arthur Pajot, and Patrick Gallinari. Deep learning for physical processes: Incorporating prior scientific knowledge. *Journal of Statistical Mechanics: Theory and Experiment*, 2019(12):
124009, 2019.
Jérémie Donà, Jean-Yves Franceschi, Sylvain Lamprier, and Patrick Gallinari. Pde-driven spatiotemporal disentanglement. *arXiv preprint arXiv:2008.01352*, 2020.
Hamidreza Eivazi, Hadi Veisi, Mohammad Hossein Naderi, and Vahid Esfahanian. Deep neural networks for nonlinear model order reduction of unsteady flows. *Physics of Fluids*, 32(10):105104, 2020.
N Benjamin Erichson, Michael Muehlebach, and Michael W Mahoney. Physics-informed autoencoders for lyapunov-stable fluid flow prediction. *arXiv preprint arXiv:1905.10866*, 2019.
Paul Garnier, Jonathan Viquerat, Jean Rabault, Aurélien Larcher, Alexander Kuhnle, and Elie Hachem. A
review on deep reinforcement learning for fluid mechanics. *Computers & Fluids*, 225:104973, 2021.
Philipp Holl, Nils Thuerey, and Vladlen Koltun. Learning to control pdes with differentiable physics. In International Conference on Learning Representations, 2020.
Jer-Nan Juang and Richard S Pappa. An eigensystem realization algorithm for modal parameter identification and model reduction. *Journal of guidance, control, and dynamics*, 8(5):620–627, 1985.
Jer-Nan Juang, Minh Phan, Lucas G Horta, and Richard W Longman. Identification of observer/kalman filter markov parameters-theory and experiments. *Journal of Guidance, Control, and Dynamics*, 16(2): 320–329, 1993.
Dante Kalise and Karl Kunisch. Polynomial approximation of high-dimensional hamilton–jacobi–bellman equations and applications to feedback control of semilinear parabolic pdes. SIAM Journal on Scientific Computing, 40(2):A629–A652, 2018.
Hassan K. Khalil. *Nonlinear systems*. Prentice Hall, third edition, 2002.
Mohammad Amin Khodkar, Pedram Hassanzadeh, and Athanasios Antoulas. A koopman-based framework for forecasting the spatiotemporal evolution of chaotic dynamics with nonlinearities modeled as exogenous forcings. *arXiv preprint arXiv:1909.00076*, 2019.
J Zico Kolter and Gaurav Manek. Learning stable deep dynamics models. Advances in neural information processing systems, 32, 2019.
Ian Lenz, Ross A Knepper, and Ashutosh Saxena. Deepmpc: Learning deep latent features for model predictive control. In *Robotics: Science and Systems*, volume 10. Rome, Italy, 2015.
Angran Li, Ruijia Chen, Amir Barati Farimani, and Yongjie Jessica Zhang. Reaction diffusion system prediction based on convolutional neural network. *Scientific reports*, 10(1):3894, 2020.
Anders Logg, Kent-Andre Mardal, and Garth Wells. Automated solution of differential equations by the finite element method: The FEniCS book, volume 84. Springer Science & Business Media, 2012.
Zichao Long, Yiping Lu, Xianzhong Ma, and Bin Dong. Pde-net: Learning pdes from data. In *International* Conference on Machine Learning, pp. 3208–3216. PMLR, 2018.
Bethany Lusch, J Nathan Kutz, and Steven L Brunton. Deep learning for universal linear embeddings of nonlinear dynamics. *Nature communications*, 9(1):4950, 2018.
Pingchuan Ma, Yunsheng Tian, Zherong Pan, Bo Ren, and Dinesh Manocha. Fluid directed rigid body control using deep reinforcement learning. *ACM Transactions on Graphics (TOG)*, 37(4):1–11, 2018.
Jan R Magnus and Heinz Neudecker. Symmetry, 0-1 matrices and jacobians: A review. *Econometric Theory*,
2(2):157–190, 1986.
George Matsaglia and George PH Styan. Equalities and inequalities for ranks of matrices. Linear and multilinear Algebra, 2(3):269–292, 1974.
Jeremy Morton, Antony Jameson, Mykel J Kochenderfer, and Freddie Witherden. Deep dynamical modeling and control of unsteady fluid flows. *Advances in Neural Information Processing Systems*, 31, 2018.
Zuowei Ping, Zhun Yin, Xiuting Li, Yefeng Liu, and Tao Yang. Deep koopman model predictive control for enhancing transient stability in power grids. *International Journal of Robust and Nonlinear Control*, 31
(6):1964–1978, 2021.
Joshua L Proctor, Steven L Brunton, and J Nathan Kutz. Dynamic mode decomposition with control. SIAM
Journal on Applied Dynamical Systems, 15(1):142–161, 2016.
Jean Rabault, Miroslav Kuchta, Atle Jensen, Ulysse Réglade, and Nicolas Cerardi. Artificial neural networks trained through deep reinforcement learning discover control strategies for active flow control. *Journal of* fluid mechanics, 865:281–302, 2019.
Maziar Raissi. Deep hidden physics models: Deep learning of nonlinear partial differential equations. The Journal of Machine Learning Research, 19(1):932–955, 2018.
Maziar Raissi, Paris Perdikaris, and George E Karniadakis. Physics-informed neural networks: A deep learning framework for solving forward and inverse problems involving nonlinear partial differential equations.
Journal of Computational physics, 378:686–707, 2019.
Xiaoli Ren, Xiaoyong Li, Kaijun Ren, Junqiang Song, Zichen Xu, Kefeng Deng, and Xiang Wang. Deep learning-based weather prediction: a survey. *Big Data Research*, 23:100178, 2021.
Clarence W Rowley, Igor Mezić, Shervin Bagheri, Philipp Schlatter, and Dan S Henningson. Spectral analysis of nonlinear flows. *Journal of fluid mechanics*, 641:115–127, 2009.
Priyabrata Saha, Magnus Egerstedt, and Saibal Mukhopadhyay. Neural identification for control. *IEEE*
Robotics and Automation Letters, 6(3):4648–4655, 2021.
Michael Schäfer, Stefan Turek, Franz Durst, Egon Krause, and Rolf Rannacher. *Benchmark computations* of laminar flow around a cylinder. Springer, 1996.
Sebastian Scher. Toward data-driven weather and climate forecasting: Approximating a simple general circulation model with deep learning. *Geophysical Research Letters*, 45(22):12–616, 2018.
Peter J Schmid. Dynamic mode decomposition of numerical and experimental data. *Journal of fluid mechanics*, 656:5–28, 2010.
Sungyong Seo, Chuizheng Meng, and Yan Liu. Physics-aware difference graph networks for sparsely-observed dynamics. In *International Conference on Learning Representations*, 2019.
Eduardo D Sontag. *Mathematical control theory: deterministic finite dimensional systems*, volume 6. Springer Science & Business Media, 2013.
Prem A Srinivasan, L Guastoni, Hossein Azizpour, PHILIPP Schlatter, and Ricardo Vinuesa. Predictions of turbulent shear flows using deep neural networks. *Physical Review Fluids*, 4(5):054603, 2019.
Tetsuya Takahashi, Junbang Liang, Yi-Ling Qiao, and Ming C Lin. Differentiable fluids with solid coupling for learning and control. In *Proceedings of the AAAI Conference on Artificial Intelligence*, volume 35(7),
pp. 6138–6146, 2021.
Naoya Takeishi, Yoshinobu Kawahara, and Takehisa Yairi. Learning koopman invariant subspaces for dynamic mode decomposition. *Advances in neural information processing systems*, 30, 2017.
Hongwei Tang, Jean Rabault, Alexander Kuhnle, Yan Wang, and Tongguang Wang. Robust active flow control over a range of reynolds numbers using an artificial neural network trained through deep reinforcement learning. *Physics of Fluids*, 32(5):053605, 2020.
Jonathan H. Tu, , Clarence W. Rowley, Dirk M. Luchtenburg, Steven L. Brunton, and J. Nathan Kutz and.
On dynamic mode decomposition: Theory and applications. *Journal of Computational Dynamics*, 1(2):
391–421, 2014. doi: 10.3934/jcd.2014.1.391.
Karen Willcox and Jaime Peraire. Balanced model reduction via the proper orthogonal decomposition. AIAA
journal, 40(11):2323–2330, 2002.
Charles HK Williamson. Vortex dynamics in the cylinder wake. *Annual review of fluid mechanics*, 28(1):
477–539, 1996.
SHI Xingjian, Zhourong Chen, Hao Wang, Dit-Yan Yeung, Wai-Kin Wong, and Wang-chun Woo. Convolutional lstm network: A machine learning approach for precipitation nowcasting. In *Advances in neural* information processing systems, pp. 802–810, 2015.
Yuting Yang, Junyu Dong, Xin Sun, Estanislau Lima, Quanquan Mu, and Xinhua Wang. A cfcc-lstm model for sea surface temperature prediction. *IEEE Geoscience and Remote Sensing Letters*, 15(2):207–211, 2017.
Enoch Yeung, Soumya Kundu, and Nathan Hodas. Learning deep neural network representations for koopman operators of nonlinear dynamical systems. In *2019 American Control Conference (ACC)*, pp. 4832–
4839. IEEE, 2019.
Ruiyang Zhang, Yang Liu, and Hao Sun. Physics-informed multi-lstm networks for metamodeling of nonlinear structures. *Computer Methods in Applied Mechanics and Engineering*, 369:113226, 2020.
## Appendices A Proofs
This section details the proofs for the results presented in section 4. The proof of theorem 4.1.1 uses the following properties of the rank (denoted by rank(·)), the Kronecker product (denoted by ⊗) and vectorization of matrices (denoted by vec(·)). All the definitions and properties are presented in the context of matrices over real numbers.
For any conformable matrices D and E such that E has full row-rank,
$$(36\mathrm{a})$$
$$\operatorname{rank}(\mathbf{D}\mathbf{E})=\operatorname{rank}(\mathbf{D}).$$
$$(36\mathrm{b})$$
rank(DE) = rank(D). (36a)
For any real matrix D,
$$\operatorname{rank}(\mathbf{D}^{\top}\mathbf{D})=\operatorname{rank}(\mathbf{D}\mathbf{D}^{\top})=\operatorname{rank}(\mathbf{D}^{\top})=\operatorname{rank}(\mathbf{D}).$$
rank(D⊤D) = rank(DD⊤) = rank(D⊤) = rank(D). (36b)
For any matrices (of compatible dimensions) D, E,F, and H,
$$\mbox{vec}(\mathbf{D}\mathbf{E}\mathbf{F}^{\top})=(\mathbf{F}\otimes\mathbf{D})\mbox{vec}(\mathbf{E}),$$ $$(\mathbf{D}\otimes\mathbf{E})^{\top}=\mathbf{D}^{\top}\otimes\mathbf{E}^{\top},$$ $$(\mathbf{D}\otimes\mathbf{E})(\mathbf{F}\otimes\mathbf{H})=(\mathbf{D}\mathbf{F}\otimes\mathbf{E}\mathbf{H}),$$
$$(37\mathrm{a})$$
(37b) $\left(37\text{c}\right)$
$$(37\mathrm{d})$$
$$(38\mathrm{a})$$
$$(38\mathrm{{b}})$$
⊤, (37b)
whenever these quantities are defined. Furthermore, if D and E are symmetric and positive semidefinite
(resp. positive definite), then D ⊗ E is symmetric and positive semidefinite (resp. positive definite), i.e.,
$${\boldsymbol{D}}\succeq0,{\boldsymbol{E}}\succeq0\implies({\boldsymbol{D}}\otimes{\boldsymbol{E}})\succeq0;\quad{\boldsymbol{D}}\succ0,{\boldsymbol{E}}\succ0\implies({\boldsymbol{D}}\otimes{\boldsymbol{E}})\succ0.$$
Proofs of (36) and (37) can be found in (Matsaglia & PH Styan (1974)) and (Magnus & Neudecker (1986)), respectively.
To derive the results presented in corollary (4.1.1.1), we use the following definitions of the Moore-Penrose inverse of a matrix (denoted by (·)
+). For any matrix D and its (full) SVD, i.e., D = UDΣDV
⊤
D ,
$\mathbf{D}^{+}=(\mathbf{D}^{\top}\mathbf{D})^{-1}\mathbf{D}^{\top},\quad\text{when}(\mathbf{D}^{\top}\mathbf{D})^{-1}\text{exists,}$ $\mathbf{D}^{+}=\mathbf{D}^{\top}(\mathbf{DD}^{\top})^{-1},\quad\text{when}(\mathbf{DD}^{\top})^{-1}\text{exists,}$ $\mathbf{D}^{+}=\mathbf{V}_{\mathbf{D}}\mathbf{\Sigma}_{\mathbf{D}}^{\mathbf{D}}\mathbf{U}_{\mathbf{D}}^{\top},$ $\mathbf{D}^{+}=\lim_{\varepsilon\to0}(\mathbf{D}^{\top}\mathbf{D}+\varepsilon^{2}\mathbf{I})^{-1}\mathbf{D}^{\top}=\lim_{\varepsilon\to0}\mathbf{D}^{\top}(\mathbf{DD}^{\top}+\varepsilon^{2}\mathbf{I})^{-1},$
where I is the identity matrix of compatible dimension. The proof of (38d) can be found in (Albert (1972)).
To prove Theorem 4.1.1, we use some well-known results, summarized as the following lemma in (Baldi & Hornik (1989)), for linear least-squares optimization.
Lemma A.0.1. *The quadratic function* L(z) = ∥y −M z∥
2 = y
⊤y − 2y
⊤M z + z
⊤M⊤M z *is convex, and* a point z globally minimizes L *if and only if* ∇L(z) = 0, or equivalently, M⊤M z = M⊤y. Furthermore, if M⊤M ≻ 0, i.e., positive definite, then L *is strictly convex and reaches its unique minimum for* z =
(M⊤M)
−1M⊤y.
## A.1 Proof Of Theorem 4.1.1
Theorem 4.1.1. *Consider the following objective function*
$$L_{\mathrm{pred}}(\mathbf{E_{x}},\mathbf{G})={\frac{1}{n}}\sum_{i=0}^{n-1}\left\|\mathbf{E_{x}}\mathbf{x}(t_{i+1})-\mathbf{G}\mathbf{E_{x u}}\mathbf{\omega}(t_{i})\right\|^{2},$$
2, (12)
$$(38\mathrm{c})$$
$$\mathbf{\tau}=\mathbf{\tau}^{\prime}$$ (38d)
$$(12)$$
_where $\mathbf{G}=[\mathbf{A}_{\rm R}\ \ \mathbf{B}_{\rm R}]\in\mathbb{R}^{r_{\mathbf{z}}\times(r_{\mathbf{z}}+d_{\mathbf{u}})},\mathbf{E}_{\mathbf{z}}\mathbf{u}=0$._
Ex 0 0 Idu
∈ R
(rx+du)×(dx+du), Idu being the identity matrix of order du. For any fixed matrix Ex*, the objective function* Lpred is convex in the coefficients of G and attains its minimum for any G *satisfying*
$$GE_{xu}\,\Omega\Omega^{\top}E_{xu}^{\top}=E_{x}Y\,\Omega^{\top}E_{xu}^{\top},\tag{1}$$
xu, (13)
where Y and Ω are the data matrices as defined in section (3.3). If Ex has full rank rx, and ΩΩ⊤ is non-singular, then Lpred *is strictly convex and has a unique minimum for*
$$\mathbf{G}=[\mathbf{A}_{\mathrm{R}}\ \ \mathbf{B}_{\mathrm{R}}]=\mathbf{E}_{\mathbf{x}}\mathbf{Y}\,\mathbf{\Omega}^{\top}\mathbf{E}_{\mathbf{x}u}^{\top}(\mathbf{E}_{\mathbf{x}u}\,\mathbf{\Omega}\,\mathbf{\Omega}^{\top}\mathbf{E}_{\mathbf{x}u}^{\top})^{-1}.$$
−1. (14)
Proof. We can write Lpred(Ex, G) as follows,
$$L_{\text{pred}}(\mathbf{E_{x}},\mathbf{G})=\frac{1}{n}\sum_{i=0}^{n-1}\left\|\mathbf{E_{x}}\mathbf{x}(t_{i+1})-\mathbf{GE_{x_{uu}}}\mathbf{\omega}(t_{i})\right\|^{2}$$ $$=\left\|\text{vec}(\mathbf{E_{x}}\mathbf{Y})-\text{vec}(\mathbf{GE_{x_{uu}}}\mathbf{\Omega})\right\|^{2}$$ $$=\left\|\text{vec}(\mathbf{E_{x}}\mathbf{Y})-(\mathbf{\Omega}^{\top}\mathbf{E_{xu}^{\top}}\otimes\mathbf{I_{r_{u}}})\text{vec}(\mathbf{G})\right\|^{2}.$$ $\mathbf{\Omega}$\(\mathbf
$$(14)$$
$$(39)$$
$$(40)$$
$$(41)$$
The third equality is obtained using (37a). For fixed Ex, we can apply Lemma A.0.1 to (39): (39) is convex in coefficient of G, and G corresponds to a global minimum of Lpred if and only if
$$(\boldsymbol{\Omega}^{\top}\boldsymbol{E}_{\boldsymbol{x}\boldsymbol{u}}^{\top}\otimes\boldsymbol{I}_{r_{\boldsymbol{u}}})^{\top}(\boldsymbol{\Omega}^{\top}\boldsymbol{E}_{\boldsymbol{x}\boldsymbol{u}}^{\top}\otimes\boldsymbol{I}_{r_{\boldsymbol{u}}})\mathrm{vec}(\boldsymbol{G})=(\boldsymbol{\Omega}^{\top}\boldsymbol{E}_{\boldsymbol{x}\boldsymbol{u}}^{\top}\otimes\boldsymbol{I}_{r_{\boldsymbol{u}}})^{\top}\mathrm{vec}(\boldsymbol{E}_{\boldsymbol{x}}\boldsymbol{Y}).$$
Using (37b) and (37c), we can write (40) as
$$(E_{x u}\,\Omega\,\Omega^{\top}E_{x u}^{\top}\otimes I_{r*})\mathrm{vec}(\mathbf{G})=(\mathbf{E_{x u}}\,\Omega\otimes I_{r*})\mathrm{vec}(\mathbf{E_{x}}\,\mathbf{Y}).$$
)vec(ExY ). (41)
Applying (37a) on (41), we get GExuΩΩ⊤E⊤
xu = ExY Ω
⊤E⊤
xu, i.e., (13).
If Ex has full rank rx, then Exu =
Ex 0 0 Idu
∈ R
(rx+du)×(dx+du) has full rank (rx + du). If ΩΩ⊤ ∈
R
(dx+du)×(dx+du)is non-singular, then Ω has full row-rank (dx + du). Consequently, using (36a) and (36b),
we have rank(ExuΩΩ⊤E
⊤
xu) = rank(ExuΩ) = rank(Exu) = rx + du. (42)
Hence the symmetric positive semidefinite matrix ExuΩΩ⊤E⊤
xu has full rank and therefore positive definite.
Using (37b), (37c), and (37d), we can see that (Ω
⊤E⊤
xu ⊗ Irx
)
⊤(Ω
⊤E⊤
xu ⊗ Irx
) = (ExuΩΩ⊤E⊤
xu ⊗ Irx
) is positive definite as well. Therefore, by Lemma A.0.1, (39) is strictly convex in the coefficients of G and has a unique minimum. Since ExuΩΩ⊤E⊤
xu ≻ 0, it is invertible. Hence, from (13), we can say that the unique minimum of (39) is reached at G = ExY Ω
⊤E⊤
xu(ExuΩΩ⊤E⊤
xu)
−1, i.e., (14). ■
## A.2 An Alternative Representation Of (14)
Here we provide a possible alternative representation of (14) required to prove corollary 4.1.1.1.
Lemma A.2.1. Consider the (full) SVD of the data matrix Ω *given by* Ω = UΩΣΩV
⊤
Ω *, where* UΩ ∈
R
(dx+du)×(dx+du), ΣΩ ∈ R
(dx+du)×n*, and* VΩ ∈ R
n×n*. (14) can be expressed as*
$$\mathbf{G}=\operatorname*{lim}_{\varepsilon\to0}\mathbf{E}_{\mathbf{z}}\mathbf{Y}\mathbf{V}_{\Omega}(\mathbf{\Sigma}_{\Omega}^{\top}\mathbf{U}_{\Omega}^{\top}\mathbf{E}_{\mathbf{z}\mathbf{u}}^{\top}\mathbf{E}_{\mathbf{z}\mathbf{u}}\mathbf{U}_{\Omega}\mathbf{\Sigma}_{\Omega}+\varepsilon^{2}\mathbf{I}_{n})^{-1}\mathbf{\Sigma}_{\Omega}^{\top}\mathbf{U}_{\Omega}^{\top}\mathbf{E}_{\mathbf{z}\mathbf{u}}^{\top}.$$
Proof. Replacing Ω with its SVD in (14) we get,
$$\begin{array}{l}{{G=E_{x}Y V_{\Omega}\Sigma_{\Omega}^{\top}U_{\Omega}^{\top}E_{x u}^{\top}(E_{x u}U_{\Omega}\Sigma_{\Omega}V_{\Omega}^{\top}V_{\Omega}\Sigma_{\Omega}^{\top}U_{\Omega}^{\top}E_{x u}^{\top})^{-1}}}\\ {{=E_{x}Y V_{\Omega}\Sigma_{\Omega}^{\top}U_{\Omega}^{\top}E_{x u}^{\top}(E_{x u}U_{\Omega}\Sigma_{\Omega}\Sigma_{\Omega}^{\top}U_{\Omega}^{\top}E_{x u}^{\top})^{-1}}}\\ {{=E_{x}Y V_{\Omega}(E_{x u}U_{\Omega}\Sigma_{\Omega})^{+}}}\end{array}$$
$$(43)$$
$$(44)$$
The second equality is due to the orthogonality of VΩ. The third equality is obtained using (38b). Substituting (ExuUΩΣΩ)
+ with the *limit definition* (38d) of the Moore-Penrose inverse, we get
$$\mathbf{G}=\operatorname*{lim}_{\varepsilon\to0}E_{x}\mathbf{Y}V_{\Omega}(\mathbf{\Sigma}_{\Omega}^{\top}\mathbf{U}_{\Omega}^{\top}\mathbf{E}_{x u}^{\top}\mathbf{E}_{x u}\mathbf{U}_{\Omega}\mathbf{\Sigma}_{\Omega}+\varepsilon^{2}\mathbf{I}_{n})^{-1}\mathbf{\Sigma}_{\Omega}^{\top}\mathbf{U}_{\Omega}^{\top}\mathbf{E}_{x u}^{\top}.$$
xu. (45)
$$(45)$$
$$\left(15\right)$$
$$(46)$$
$$(47)$$
$$(48)$$
■
## A.3 Proof Of Corollary 4.1.1.1
Corollary 4.1.1.1. Consider the (full) SVD of the data matrix Ω *given by* Ω = UΩΣΩV
⊤
Ω *, where* UΩ ∈
R
(dx+du)×(dx+du), ΣΩ ∈ R
(dx+du)×n*, and* VΩ ∈ R
n×n*. If* Ex = Ub ⊤
Yand ΩΩ⊤ *is non-singular, then the* solution for G = [AR BR] corresponding to the unique minimum of Lpred *can be expressed as*
$$\mathbf{A}_{R}=\hat{\mathbf{U}}_{\mathbf{Y}}^{\top}\mathbf{Y}\mathbf{V}_{\mathbf{Q}}\Sigma^{*}\mathbf{U}_{\mathbf{Q},1}^{\top}\hat{\mathbf{U}}_{\mathbf{Y}},\quad a n d\quad\mathbf{B}_{R}=\hat{\mathbf{U}}_{\mathbf{Y}}^{\top}\mathbf{Y}\mathbf{V}_{\mathbf{Q}}\Sigma^{*}\mathbf{U}_{\mathbf{Q},2}^{\top},$$
, (15)
where [U ⊤
Ω,1 U ⊤
Ω,2
] = U ⊤
Ω *with* UΩ,1 ∈ R
dx×(dx+du), UΩ,2 ∈ R
du×(dx+du)*, and* Σ
∗ = limε→0(Σ
⊤
Ω U ⊤
Ω,1UbY Ub ⊤
Y UΩ,1ΣΩ + Σ
⊤
Ω U ⊤
Ω,2UΩ,2ΣΩ + ε 2In)
−1Σ
⊤
Ω .
Proof. By the definition of truncated SVD, the columns of UbY are orthonormal. Therefore, Ub ⊤
Y has full row-rank rx. Hence, by theorem 4.1.1 and lemma A.2.1, if Ex = Ub ⊤
Y
, and ΩΩ⊤ is non-singular, then the unique minimum of Lpred, is reached when
$$\mathbf{G}=\tilde{U}_{Y}^{\top}\mathbf{Y}\mathbf{V}_{\Omega}(\mathbf{E}_{w}\mathbf{U}_{\Omega}\mathbf{\Sigma}_{\Omega})^{+}=\operatorname*{lim}_{\varepsilon\to0}\tilde{U}_{Y}^{\top}\mathbf{Y}\mathbf{V}_{\Omega}(\mathbf{\Sigma}_{\Omega}^{\top}\mathbf{U}_{\Omega}^{\top}\mathbf{E}_{w}^{\top}\mathbf{E}_{w}\mathbf{U}_{\Omega}\mathbf{\Sigma}_{\Omega}+\varepsilon^{2}\mathbf{I}_{n})^{-1}\mathbf{\Sigma}_{\Omega}^{\top}\mathbf{U}_{\Omega}^{\top}\mathbf{E}_{w}^{\top}.$$
xu. (46)
Now, substituting Ex = Ub ⊤
Yin Exu, and using the partition U ⊤
Ω = [U ⊤
Ω,1 U ⊤
Ω,2
], where UΩ,1 ∈
R
dx×(dx+du), UΩ,2 ∈ R
du×(dx+du), we get
$$E_{x u}U_{\Omega}=\begin{bmatrix}\widehat{U}_{\overline{{{Y}}}}^{\top}&0\\ 0&I_{d_{u}}\end{bmatrix}\begin{bmatrix}U_{\Omega,1}\\ U_{\Omega,2}\end{bmatrix}=\begin{bmatrix}\widehat{U}_{\overline{{{Y}}}}^{\top}U_{\Omega,1}\\ U_{\Omega,2}\end{bmatrix},$$
and
$${\mathbf{}}U_{B}^{\top}{\mathbf{}}E_{x u}^{\top}{\mathbf{}}E_{x u}{\mathbf{}}U_{B}=\left[U_{B,1}^{\top}{\hat{U}}_{Y}\quad U_{B,2}^{\top}\right]\left[{\hat{U}}_{Y}^{\top}U_{B,1}^{\top}\right]=U_{B,1}^{\top}{\hat{U}}_{Y}{\hat{U}}_{Y}^{\top}U_{B,1}+U_{B,2}^{\top}U_{B,2}.$$
Plugging (47) and (48) into (46) leads to
$$\mathbf{G}=\operatorname*{lim}_{\varepsilon\to0}\tilde{U}_{\mathbf{Y}}^{\top}\mathbf{V}\mathbf{V}_{\partial}(\mathbf{\Sigma}_{B}^{\top}\mathbf{U}_{B,1}^{\top}\tilde{U}_{\mathbf{Y}}\tilde{U}_{\mathbf{Y}}^{\top}\mathbf{U}_{B,1}\mathbf{\Sigma}_{B}+\mathbf{\Sigma}_{B}^{\top}\mathbf{U}_{B,2}^{\top}\mathbf{U}_{B,2}\mathbf{\Sigma}_{B}+\varepsilon^{2}\mathbf{I}_{n})^{-1}\mathbf{\Sigma}_{B}^{\top}\left[\mathbf{U}_{B,1}^{\top}\tilde{U}_{\mathbf{Y}}\mathbf{U}_{B,2}^{\top}\right].$$
$$\hat{\bf\Psi}_{,1}\hat{\bf U}_{\bf Y}\quad{\bf U}_{\bf a,2}^{\top}\Big]\,.\qquad(49)$$
Defining Σ
∗ ∆= limε→0(Σ
⊤
Ω U ⊤
$${}_{1}\hat{U}_{Y}\hat{U}_{Y}^{\top}U_{\Omega,1}\Sigma_{\Omega}+\Sigma_{\Omega}^{\top}U_{\Omega,2}^{\top}U_{\Omega,2}\Sigma_{\Omega}$$
2In)
−1Σ
⊤
Ω , we can split (49) into
$$A_{\mathrm{R}}=\hat{U}_{Y}^{\dagger}Y V_{\Omega}\Sigma^{*}U_{\Omega,1}^{\dagger}\hat{U}_{Y},\quad\mathrm{and}\quad B_{\mathrm{R}}=\hat{U}_{Y}^{\dagger}Y V_{\Omega}\Sigma^{*}U_{\Omega,2}^{\dagger},$$
which is (15). ■
## A.4 The Case When Ωω⊤**Not Invertible**
When the covariance matrix ΩΩ⊤ is not invertible, which is always true if *n < d*x + du, the matrix ExuΩΩ⊤E⊤
xu is not guaranteed to be invertible. In that case, the minimum of Lpred corresponds to infinitely many solutions for G. However, minimizing Lpred with added ℓ2 regularization, i.e., Lpred,reg(Ex, G) =
Lpred(Ex, G) + β∥vec(G)∥
2 provides a unique solution for G, for a fixed Ex. We have the following result.
Theorem A.4.1. For any fixed matrix Ex and β > 0*, the objective function* Lpred,reg(Ex, G) =
Lpred(Ex, G) + β∥vec(G)∥
2is strictly convex in the coefficients of G*, and the global minimum of* Lpred,reg corresponds to the unique solution for G*, given by*
$$\mathbf{G}=\mathbf{E_x}\mathbf{Y}\mathbf{\Omega}^\top\mathbf{E_{xu}^\top}(\mathbf{E_{xu}}\mathbf{\Omega}\mathbf{\Omega}^\top\mathbf{E_{xu}^\top}+\beta\mathbf{I_{r_u+d_u}})^{-1}.\tag{1}$$
$$(50)$$
Proof. Lpred,reg(Ex, G) can be written as, using (37a-c),
Lpred,reg(Ex, G) =vec(ExY ) − (Ω ⊤E ⊤ xu ⊗ Irx )vec(G) 2+ β∥vec(G)∥ 2 = vec(ExY ) ⊤vec(ExY ) − 2vec(ExY ) ⊤(Ω ⊤E ⊤ xu ⊗ Irx )vec(G) + vec(G) ⊤(ExuΩΩ⊤E ⊤ xu ⊗ Irx + βIrx(rx+du))vec(G)
$$(51)$$
ExuΩΩ⊤E⊤
xu is a symmetric positive semidefinite matrix, irrespective of whether it has full rank or not.
Hence, by (37d), ExuΩΩ⊤E⊤
xu ⊗ Irx is symmetric positive semidefinite. Consequently, for any β > 0, ExuΩΩ⊤E⊤
xu ⊗ Irx + βIrx(rx+du)is positive definite. According to lemma A.0.1, Lpred,reg is therefore strictly convex in the coefficients of G and globally minimized when ∇Lpred,reg = 0. The unique solution of
(50) can be derived in the same manner as theorem 4.1.1. ■
Remark. Replacing Ω with its SVD in (50) we get,
$$\mathbf{G}=\mathbf{E_{x}}\mathbf{Y}\mathbf{V_{\Omega}}\mathbf{\Sigma}_{\Omega}^{\top}\mathbf{U}_{\Omega}^{\top}\mathbf{E}_{\mathbf{x}\mathbf{u}}^{\top}(\mathbf{E_{x}}\mathbf{u}\mathbf{U_{\Omega}}\mathbf{\Sigma_{\Omega}}\mathbf{\Sigma}_{\Omega}^{\top}\mathbf{U}_{\Omega}^{\top}\mathbf{E}_{\mathbf{x}\mathbf{u}}^{\top}+\beta\mathbf{I}\mathbf{r_{x}}+d_{\mathbf{u}})^{-1}.$$
In the limit β → 0
+, (51) converges to (44).
## A.5 Dmdc Through A Linear Autoencoding Structure
Here we present a linear autoencoding structure that leads to a linear ROM exactly resembling the DMDc solution when Ex = Ub ⊤
Y
. However, its DNN-based nonlinear counterpart does not actually offer dimensionality reduction. Theorem A.5.1. *Consider the following objective function*
$$L_{\rm pred,alt}(\mathbf{E_{x}},\widetilde{\mathbf{G}})=\frac{1}{n}\sum_{i=0}^{n-1}\left\|\mathbf{E_{x}}\mathbf{x}(t_{i+1})-\widetilde{\mathbf{G}}\mathbf{\omega}(t_{i})\right\|^{2},\tag{1}$$
where Ge ∈ R
rx×(dx+du). For any fixed matrix Ex*, the objective function* Lpred,alt is convex in the coefficients of Ge and attains its minimum for any Ge *satisfying*
$$(52)$$
$$\widetilde{G}\Omega\Omega^{\top}=E_{x}Y\Omega^{\top},\tag{1}$$
$$(53)$$
$$(54)$$
where Y and Ω are the data matrices as defined in section (3.3). If ΩΩ⊤ *is non-singular, then* Lpred,alt is strictly convex and has a unique minimum for
$$\widetilde{\cal G}={\cal E}_{x}Y\Omega^{\top}(\Omega\Omega^{\top})^{-1}.$$
−1. (54)
Proof. The proof is very similar to the proof of theorem 4.1.1. Using (37a), we can write Lpred,alt(Ex, Ge) as follows,
$$L_{\text{pred,alt}}(\mathbf{E_{x}},\widetilde{\mathbf{G}})=\frac{1}{n}\sum_{i=0}^{n-1}\left\|\mathbf{E_{x}}\mathbf{x}(t_{i+1})-\widetilde{\mathbf{G}}\mathbf{\omega}(t_{i})\right\|^{2}$$ $$=\left\|\text{vec}(\mathbf{E_{x}}\mathbf{Y})-\text{vec}(\widetilde{\mathbf{G}}\mathbf{\Omega})\right\|^{2}$$ $$=\left\|\text{vec}(\mathbf{E_{x}}\mathbf{Y})-(\mathbf{\Omega}^{\top}\otimes\mathbf{I_{r_{x}}})\text{vec}(\widetilde{\mathbf{G}})\right\|^{2}.$$
For fixed Ex, applying Lemma A.0.1 to (55), we can say Lpred,alt is convex in the coefficients of Ge, and Ge corresponds to a global minimum of Lpred,alt if and only if
$(\mathbf{\Omega}^{\top}\otimes\mathbf{I}_{r_{\pi}})^{\top}(\mathbf{\Omega}^{\top}\otimes\mathbf{I}_{r_{\pi}})\mbox{vec}(\widetilde{\mathbf{G}})=(\mathbf{\Omega}^{\top}\otimes\mathbf{I}_{r_{\pi}})^{\top}\mbox{vec}(\mathbf{E}_{\widetilde{\mathbf{G}}}\mathbf{Y})$.
Using (37a-c), we can write (56) as GeΩΩ⊤ = ExY Ω
⊤, which is (53).
$$(55)$$
$$(56)$$
If ΩΩ⊤ is non-singular, then it is symmetric positive definite. Using (37b-d), we can see that
(Ω
⊤ ⊗ Irx
)
⊤(Ω
⊤ ⊗ Irx
) = (ΩΩ⊤ ⊗ Irx
) is positive definite as well. Therefore, by Lemma A.0.1,
(55) is strictly convex in coefficient in Ge and has a unique minimum. In that case, from (53), we can say that the unique minimum of (55) is reached at Ge = ExY Ω
⊤(ΩΩ⊤)
−1, i.e., (54). ■
Corollary A.5.1.1. Consider the (full) SVD of the data matrix Ω *given by* Ω = UΩΣΩV
⊤
Ω *, where* UΩ ∈
R
(dx+du)×(dx+du), ΣΩ ∈ R
(dx+du)×n*, and* VΩ ∈ R
n×n*. If* Ex = Ub ⊤
Yand ΩΩ⊤ *is non-singular, then the* solution for Ge *corresponding to the unique minimum of* Lpred,alt *can be expressed as*
$$\widetilde{\cal G}=\widehat{\cal U}_{Y}^{\top}Y V_{\Omega}\Sigma_{\Omega}^{+}{\cal U}_{\Omega}^{\top}.$$
$$\left(57\right)$$
$$(58)$$
Ω . (57)
Proof. By theorem A.5.1, if Ex = Ub ⊤
Y
, and ΩΩ⊤ is non-singular, then the unique minimum of Lpred,alt is reached when
$$\widetilde{\mathbf{G}}=\widehat{\mathbf{U}}_{\mathbf{Y}}^{\top}\mathbf{Y}\mathbf{\Omega}^{\top}(\mathbf{\Omega}\mathbf{\Omega}^{\top})^{-1}=\widehat{\mathbf{U}}_{\mathbf{Y}}^{\top}\mathbf{Y}\mathbf{\Omega}^{+}$$ $\mathbf{U}_{\mathbf{Y}}$ _Substitute $\mathbf{\Omega}^{+}$ with it_ _SVD definition_ (38) is $\mathbf{\Omega}^{+}$
The second equality is due to (38b). Substituting Ω
+ with its *SVD definition* (38c) into (58), we get Ub ⊤
Y Y VΩΣ
+
ΩU ⊤
Ω , which is (57). ■
Remark. From (52), it can be seen that Ge maps the concatenated vector, ω(ti), of full state and actuation to the next reduce state xR(ti+1). We can partition (57) as Ge = Ub ⊤
Y Y VΩΣ
+
Ω
[U ⊤
Ω,1 U ⊤
Ω,2
] = [Ae Be] to separate out the blocks corresponding to state and actuation. Here, UΩ,1, UΩ,2 are the same as defined in corollary 4.1.1.1, and Ae ∈ R
rx×dx , Be ∈ R
rx×du . Now, if we post-multiply Ae with E⊤
x = UbY ∈ R
dx×rx , we get a ROM
AeR = AeUbY = Ub ⊤
Y Y VΩΣ
+
ΩU
⊤
Ω,1UbY , BeR = Be = Ub ⊤
Y Y VΩΣ
+
ΩU
⊤
Ω,2
, (59)
which maps the current reduced state xR(ti) and actuation u(ti) to the next reduced state xR(ti+1). It can be verified easily that if we use the truncated SVD (as defined by 9), instead of the full SVD, for Ω in (58) and follow the similar steps afterward, we get an approximation of (59):
$$\hat{\mathbf{A}}_{\mathrm{R}}=\hat{\mathbf{U}}_{\mathbf{Y}}^{\top}\mathbf{Y}\hat{\mathbf{V}}_{\mathbf{\theta}}\hat{\Sigma}_{\mathbf{\theta}}^{-1}\hat{\mathbf{U}}_{\mathbf{\theta},1}^{\top}\hat{\mathbf{U}}_{\mathbf{Y}}=\mathbf{A}_{\mathrm{R,DMDC}};\qquad\hat{\mathbf{B}}_{\mathrm{R}}=\hat{\mathbf{U}}_{\mathbf{Y}}^{\top}\mathbf{Y}\hat{\mathbf{V}}_{\mathbf{\theta}}\hat{\Sigma}_{\mathbf{\theta}}^{-1}\hat{\mathbf{U}}_{\mathbf{\theta},2}^{\top}=\mathbf{B}_{\mathrm{R,DMDC}}.$$
In summary, the aforementioned method can be carried out using gradient descent-based optimization and leads to the same ROM as DMDc, when Ex = Ub ⊤
Y
. However, in this method, the benefit of dimensionality reduction is realized only when linear networks are used. A nonlinear counterpart (a DNN in the context of this paper) of AeR, i.e., a nonlinear mapping from R
rx to R
rx , cannot be pre-computed from a nonlinear counterpart of Ge, unlike the linear case (59). Consequently, we lose the benefit of dimensionality reduction when nonlinear networks are used.
## A.6 Proof Of Theorem 4.2.1
Theorem 4.2.1. Consider the target dynamics defined by (28)and the candidate Lyapunov function defined by (29). Suppose the difference between the target dynamics and the closed-loop dynamics satisfies
$$\|{\mathcal{F}}(\mathbf{x_{R}},{\mathcal{E}_{u}}\circ\Pi(\mathbf{x_{R}}))-{\mathcal{F}_{s}}(\mathbf{x_{R}})\|\leq\delta<{\frac{\alpha\theta\lambda_{\mathrm{min}}(\mathbf{K})}{2\lambda_{\mathrm{max}}(\mathbf{K})}}{\sqrt{\frac{\lambda_{\mathrm{min}}(\mathbf{K})}{\lambda_{\mathrm{max}}(\mathbf{K})}}}\eta,$$
for all xR ∈ XR = {xR ∈ R
rx | ∥xR∥ < η} and 0 < θ < 1*. Then, for all initial points satisfying*
∥xR(t0)∥ <
q λmin(K)
λmax(K)
η*, the solution of the closed-loop ROM* dxR
dt = F(xR, Eu ◦ Π(xR)) *satisfies*
$$\|\mathbf{x}_{\mathrm{R}}(t)\|\leq\lambda e^{-\gamma(t-t_{0})}\|\mathbf{x}_{\mathrm{R}}(t_{0})\|,\quad\forall\ t_{0}\leq t<t_{c}+t_{0}$$
and
$$\|\mathbf{x}_{\mathrm{R}}(t)\|\leq{\frac{2\delta}{\alpha\theta}}\lambda^{3},\quad\forall\ t\geq t_{c}+t_{0}$$
3, ∀ t ≥ tc + t0 (32)
$$(30)$$
$$(31)$$
$$(32)$$
for some finite tc > 0*, where*
$$\gamma={\frac{\alpha(1-\theta)\lambda_{\mathrm{min}}(\mathbf{K})}{2\lambda_{\mathrm{max}}(\mathbf{K})}}\quad a n d\quad\lambda={\sqrt{\frac{\lambda_{\mathrm{max}}(\mathbf{K})}{\lambda_{\mathrm{min}}(\mathbf{K})}}}$$
$$(333)$$
$$(60)$$
λmin(K)(33)
Proof. From the definition of VR, we have
$$\lambda_{\min}(\mathbf{K})\|\mathbf{x}_{\rm R}\|^{2}\leq\mathcal{V}_{\rm R}(\mathbf{x}_{\rm R})\leq\lambda_{\max}(\mathbf{K})\|\mathbf{x}_{\rm R}\|^{2},\quad\forall\ \mathbf{x}_{\rm R}\in\mathbb{R}^{r_{\pi}},\tag{1}$$
where λmin(K) and λmax(K) denote the smallest and largest eigenvalues, respectively, of K and have positive values since the matrix K is positive definite. Moreover, the definition of the target dynamics (28) implies
∇VR(xR) ⊤Fs(xR) = (∇VR(xR) ⊤P(xR), if ∇VR(xR) ⊤P(xR) ≤ −αVR(xR) ∇VR(xR) ⊤P(xR) − ∇VR(xR) ⊤ ∇VR(xR) ⊤P(xR)+αVR(xR) ∥∇VR(xR)∥2 ∇VR(xR), otherwise = (∇VR(xR) ⊤P(xR), if ∇VR(xR) ⊤P(xR) ≤ −αVR(xR) −αVR(xR), otherwise ≤ −αVR(xR) ≤ −αλmin(K)∥xR∥ 2, ∀ xR ∈ R rx . (61) The last inequality is due to (60).
Now, assume F(xR, Eu ◦Π(xR)) = H(xR) = Fs(xR)+J (xR) for some function J : R
rx → R
rx and consider VR(xR) = x
⊤
RKxR as a candidate Lyapunov function for
$$(61)$$
$$\frac{d\mathbf{x_{\rm R}}}{dt}=\mathcal{H}(\mathbf{x_{\rm R}})=\mathcal{F}_{s}(\mathbf{x_{\rm R}})+\mathcal{J}(\mathbf{x_{\rm R}}).\tag{1}$$
$$(62)$$
We have ∥∇VR(xR)∥ = ∥2KxR∥ ≤ 2λmax(K)∥xR∥. The time-derivative of VR along the trajectories of (62)
satisfies
dVR dt = ∇VR(xR) ⊤Fs(xR) + ∇VR(xR) ⊤J (xR) ≤ −αλmin(K)∥xR∥ 2 + ∥∇VR(xR)∥∥J (xR)∥ ≤ −αλmin(K)∥xR∥ 2 + 2λmax(K)∥xR∥δ, ∀ ∥xR∥ < η = −α(1 − θ)λmin(K)∥xR∥ 2 − αθλmin(K)∥xR∥ 2 + 2λmax(K)∥xR∥δ, 0 < θ < 1, ∀ ∥xR∥ < η ≤ −α(1 − θ)λmin(K)∥xR∥ 2 < 0, when η > ∥xR∥ ≥ 2δλmax(K) αθλmin(K) ∆= µ. (63)
The second inequality is obtained using (61) and the third inequality is obtained using (30). Clearly, we have a non-empty region where dVR
dt < 0 only when
$$\begin{array}{c}{{\mid}}\\ {{\mid}}\\ {{\quad(63)}}\end{array}$$
$$\delta<\frac{\alpha\theta\lambda_{\rm min}(K)}{2\lambda_{\rm max}(K)}\eta.\tag{1}$$
$$({\mathfrak{f}}{\mathfrak{o}}{\mathfrak{4}})$$
Let b = λmin(K)η 2 and c = λmax(K)µ 2. Consider the sublevel sets χb = {xR ∈ R
rx | VR(xR) < b} and χc = {xR ∈ R
rx | VR(xR) ≤ c}. It can be easily verified that if δ < αθλmin(K)
2λmax(K)
q λmin(K)
λmax(K)
η, then *c < b*, which implies χc ⊂ χb. Note, this condition satisfies the necessary condition (64) for the non-empty region since λmin(K) ≤ λmax(K).
For any xR inside χb, using (60), we have
$$\lambda_{\operatorname*{min}}(\mathbf{K})\|\mathbf{x}_{\mathrm{R}}\|^{2}\leq{\mathcal{V}}_{\mathrm{R}}(\mathbf{x}_{\mathrm{R}})<b=\lambda_{\operatorname*{min}}(\mathbf{K})\eta^{2},$$
2, (65)
$$(65)$$
implying ∥xR∥ < η. Similarly, for any xR on the boundary or outside of χc, we have
$$\lambda_{\operatorname*{max}}(\mathbf{K})\mu^{2}=c\leq\mathcal{V}_{\mathrm{R}}(\mathbf{x}_{\mathrm{R}})\leq\lambda_{\operatorname*{max}}(\mathbf{K})\|\mathbf{x}_{\mathrm{R}}\|^{2},$$
$$(66)$$
$$(67)$$
2, (66)
which implies ∥xR∥ ≥ µ.
Combining (65) and (66) we can say for any xR outside (including the boundary) of χc, but inside χb, (63)
holds true. For such xR (i.e. xR ∈ χb \ χc) we have
$$\frac{d{\cal V}_{\mathrm{R}}}{dt}\leq-\frac{\alpha(1-\theta)\lambda_{\mathrm{min}}(K)}{\lambda_{\mathrm{max}}(K)}{\cal V}_{\mathrm{R}}(\mathbf{x}_{\mathrm{R}})\stackrel{{\Delta}}{{=}}-2\gamma{\cal V}_{\mathrm{R}}(\mathbf{x}_{\mathrm{R}}),$$
using (60) and (63).
If the initial point (at time t0) satisfies ∥xR(t0)∥ <
q λmin(K)
λmax(K)
η, then by (60),
$b=\lambda_{\min}(\mathbf{K})\eta^{2}>\lambda_{\max}(\mathbf{K})\|\mathbf{x}_{\rm R}(t_{0})\|^{2}\geq\mathcal{V}_{\rm R}(\mathbf{x}_{\rm R}(t_{0}))$,
$$(68)$$
which implies the initial point xR(t0) is inside χb. Assuming an initial point in χb \ χc, and integrating (67)
in time interval [t0, t], we get
$\mathcal{V}_{\rm R}(\mathbf{x}_{\rm R}(t))\leq\mathcal{V}_{\rm R}(\mathbf{x}_{\rm R}(t_{0}))e^{-2\gamma(t-t_{0})}$. $\mathbf{(t))}\leq\mathcal{V}_{\rm R}(\mathbf{x}_{\rm R}(t_{0}))\leq\mathcal{V}_{\rm R}(\mathbf{x}_{\rm R}(t_{0}))$.
−2γ(t−t0). (68)
Hence, λmin(K)∥xR(t)∥
2 ≤ VR(xR(t)) ≤ VR(xR(t0))e
−2γ(t−t0) ≤ λmax(K)∥xR(t0)∥
2e
−2γ(t−t0) as long as xR(t) remains outside of χc. Since dVR
dt is always negative outside of χc, any trajectory starting outside of it, must enter χc in finite time. Let the trajectory starting at xR(t0) enters χc for the first time at time tc + t0.
Then, we have
$$\|\mathbf{x}_{\mathrm{R}}(t)\|\leq{\sqrt{\frac{\lambda_{\mathrm{max}}(\mathbf{K})}{\lambda_{\mathrm{min}}(\mathbf{K})}}}e^{-\gamma(t-t_{0})}\|\mathbf{x}_{\mathrm{R}}(t_{0})\|=\lambda e^{-\gamma(t-t_{0})}\|\mathbf{x}_{\mathrm{R}}(t_{0})\|,\quad\forall\ t_{0}\leq t<t_{c}+t_{0}.$$
Once a trajectory enters χc, it cannot escape χc because dVR
dt is negative on the boundary. Therefore, all points of a trajectory after t ≥ tc + t0 satisfies λmin(K)∥xR(t)∥
2 ≤ VR(xR(t)) ≤ c, equivalently,
$$\|\mathbf{x}_{\mathrm{R}}(t)\|\leq{\sqrt{\frac{\lambda_{\mathrm{max}}(\mathbf{K})}{\lambda_{\mathrm{min}}(\mathbf{K})}}}\mu={\frac{2\delta}{\alpha\theta}}\bigg({\frac{\lambda_{\mathrm{max}}(\mathbf{K})}{\lambda_{\mathrm{min}}(\mathbf{K})}}\bigg)^{3/2}={\frac{2\delta}{\alpha\theta}}\lambda^{3},\quad\forall\ t\geq t_{c}+t_{0}.$$
From (67), (69) and (70), we have γ =
$\gamma=\frac{\alpha(1-\theta)\lambda_{\mathrm{min}}(\mathbf{K})}{2\lambda_{\mathrm{max}}(\mathbf{K})}$ and $\lambda=\sqrt{\frac{\lambda_{\mathrm{max}}(\mathbf{K})}{\lambda_{\mathrm{min}}(\mathbf{K})}}$.
## . - B Details On Reaction–Diffusion System Experiment B.1 Dataset
We use FEniCS (Logg et al. (2012)), an open-source computing platform for solving PDEs using the finite element method, with Python interface to generate the dataset. For the reaction-diffusion system of (34),
we generate 100 training sequences of length 50 with time step size 0.01 and 256 nodes in I. The initial conditions and actuations of these sequences are given by
$$q(\zeta,0)=|a|\sum_{k=0}^{4}b_{k}T_{k}(\zeta),\quad\zeta\in\mathbb{I},\tag{1}$$
$$(69)$$
$$(70)$$
$\blacksquare$
$$(71)$$
and
$$w(t_{i})=10g_{i}\operatorname*{max}_{\zeta}|q(\zeta,t_{i-1})|,\quad i=1,2,\cdots,49,$$
ζ|q(ζ, ti−1)|, i = 1, 2, *· · ·* , 49, (72)
where Tk denotes the k th Chebyshev polynomial of the first kind, and a ∼ N (0, 1), bk, gi ∼ U(−1, 1)
are chosen randomly. Similarly, 100 sequences are generated for the test set to evaluate the prediction performance.
$$(72)$$
![27_image_0.png](27_image_0.png)
Figure 12: Architectures for all the DNN modules used in the reaction–diffusion experiment. The 'Copy' operation denotes the reuse of the same DNN block for zero and nonzero actuation. The 'Concat' operator concatenates the input features along the last dimension. Zeros are concatenated to the reduced state to evaluate the component FforcedxR, 0. The 'Integrator' performs the numerical integration for (21). The
'Stability Criterion' block implements (28).
## B.2 Dnn Architectures
Figure 12 shows the DNN architectures used for different modules in the reaction–diffusion experiment. The state encoder comprises 1D convolutional layers, followed by fully connected layers. The state decoder has the reversed order with convolutional layers replaced by transposed convolutional layers. The ROM is designed by breaking the function F into two components: FxR,uR
= FautoxR
+FforcedxR,uR
−FforcedxR, 0.
Fauto represents the autonomous dynamics that does not depend on the actuation, whereas Fforced is responsible for the impact of actuation on dynamics. The composition FforcedxR,uR
−FforcedxR, 0ensures that the component responsible for learning the impact of actuation on the dynamics provides nonzero output only when the actuation is nonzero. Two multilayer perceptions (MLPs) are used to implement Fauto and Fforced. This specific structure of the ROM is not crucial and a single neural network representing FxR,uR
works as well. However, we observe better performance in experiments when the aforementioned structure is used. The output of the ROM is integrated using a numerical integrator to get the next state. The controller is implemented using an MLP. The target dynamics is implemented using another MLP, followed by a stability criterion in the form of (28).
## B.3 Training Settings
We use rx = 5 in the prediction task and rx = 2 in the control task for all the methods. All modules are implemented in PyTorch. In both of the learning phases, learning ROM and learning controller, we use the Adam optimizer with an initial learning rate of 0.001 and apply an exponential scheduler with a decay of 0.99. Modules are trained for 100 epochs in mini-batches of size 32. 10% of the training data is used for validation to choose the best set of models. For DeepROM training, we use β2 = 1 in (22). For learning control, we use β3 = 0.2 in (26), α = 0.2 in (28), and K = 0.5Irx in (29). Since the learned ROMs from one training instance to another can vary, the hyperparameter pair (*α, β*3) may require re-tuning accordingly.
## C Details On Vortex Shedding Suppression Experiment C.1 Dataset
For the flow past a circular cylinder problem, the geometry and physical parameters of the system are taken from the DFG 2D-2 benchmark (Schäfer et al. (1996)). The geometry is shown in Figure 13. We use the blue-shaded region for observation and actuation. Following the DFG 2D-2 benchmark, we use the no-slip boundary condition of zero velocity for the walls and the cylinder boundary, zero outlet pressure, and the inflow velocity profile (at the inlet) as
$$\mathbf{v}(\mathbf{\zeta},t)=\bigg(1.5{\frac{4\zeta_{2}(0.41-\zeta_{2})}{0.41^{2}}},0\bigg),$$
$$(73)$$
where ζ1 and ζ2 denote the horizontal and vertical coordinates, respectively, of ζ. We use kinematic viscosity ν = 0.002 and density ρ = 1 leading to the Reynolds number Re = 50. The training sequence of length 5000 is generated in FEniCS with a time step size 0.001 and applying actuations
$$\mathbf{w}(\zeta,t)=a\sum_{k=0}^{4}\left[\sin(k\pi(\zeta_{1}-0.11)/0.66)\quad\sin(k\pi\zeta_{2}/0.41)\right]\begin{bmatrix}b_{k,1,1}&b_{k,2,1}\\ b_{k,1,2}&b_{k,2,2}\end{bmatrix},\quad\zeta\in\mathbb{W},$$
where a ∼ U(0, 1) and bk,i,j ∼ U(−1, 1)*, i, j* = 1, 2 are chosen randomly. Similarly, a test sequence is generated to evaluate the prediction performance. For learning control, we use the Stokes flow or creeping flow as the desired state, which can be obtained by solving the Stokes equations
$$\nu\nabla^{2}\mathbf{v}-\frac{1}{\rho}\nabla p=\mathbf{0},\quad\nabla\cdot\mathbf{v}=\mathbf{0}\quad\text{in}\mathbb{I}\times\mathbb{R}^{+}.\tag{1.11}$$
For training, the flow velocity data from the observation region (blue shaded in Figure 13) are interpolated onto a rectangular uniform grid of size 32 × 48 so that it can be used in standard CNNs.
![28_image_0.png](28_image_0.png)
$$\left(74\right)$$
$$(75)$$
Figure 13: Geometry of the flow past a circular cylinder set-up.
## C.2 Dnn Architectures
Figure 14 shows the DNN architectures used for different modules in the vortex shedding control experiment.
The architectures for the ROM and target dynamics are the same as in the previous example. Moreover, the state encoder and decoder have similar architectures as the previous example except for the 1D convolutions and transposed convolutions are replaced by their 2D counterparts. Here, an additional module is used: the control encoder for encoding the distributed control/actuation. It has the same architecture as the
![29_image_0.png](29_image_0.png)
Figure 14: Architectures for all the DNN modules used in the fluid flow experiment. The 'Split' operator splits the input features into two vectors, along the last dimension. These split vectors represent the spacedependent polynomial basis associated with the horizontal and vertical components of the actuation.
state encoder. To learn the distributed actuation, we design the controller as a linear combination of spacedependent polynomial basis functions. One MLP is used to learn these space-dependent polynomial basis functions given the locations of the actuation nodes and another MLP is used to learn the corresponding coefficients. The actuation is computed as the dot product of the polynomial basis terms and the coefficient vector. We use this architecture instead of a standard convolutional one because the PDE solver takes the actuation input in a triangular mesh, not in a uniform rectangular grid. The polynomial basis architecture can be used to compute actuation in both uniform rectangular grid during training and triangular mesh during evaluation.
## C.3 Training Settings
We use rx = 5 in both the prediction task and control task for all the methods. All modules are implemented in PyTorch. In both of the learning phases, learning ROM and learning controller, we use the Adam optimizer with an initial learning rate of 0.001 and apply an exponential scheduler with a decay of 0.99. Modules are trained for 100 epochs in mini-batches of size 32. 10% of the training data is used for validation to choose the best set of models. For DeepROM training, we use β2 = 1 in (22). For learning control, we use β3 = 2 in (26), α = 0.1 in (28), and K = 0.5Irx in (29). Since the learned ROMs from one training instance to another can vary, the hyperparameter pair (*α, β*3) may require re-tuning accordingly.
## D **Architecture And Training Details For The Deep Koopman Model**
For the encoder and decoder of the Deep Koopman model, we use the same architectures as our state encoder and state decoder. As mentioned in section 5.1, we consider both the system and input matrices of the ROM
to be fixed during operation, in contrast to the original method proposed by Morton et al. (2018). Therefore, during training, these matrices are treated as trainable global parameters. Similar to Morton et al. (2018),
the input matrix is optimized by gradient descent during training along with the encoder-decoder parameters, whereas the system matrix is obtained using linear least-squares regression. The datasets are divided into staggered 32-step sequences for training, and the model is trained by generating recursive predictions over 32 steps following Morton et al. (2018). We train the model using the Adam optimizer with an initial learning rate of 0.001 and an exponential decay of 0.99 for 200 epochs in mini-batches of size 8. 10% of the training data is used for validation to choose the best set of models. As mentioned in 5.3.3, we utilize a low-dimensional representation of the distributed actuation for Deep Koopman + LQR, instead of directly estimating the high-dimensional actuation. The distributed actuation is represented as a linear combination of the same space-dependent sinusoidal basis functions used for dataset generation, which are given by (74). The controller is designed to estimate the coefficients bk,i,j ;*i, j* = 1, 2; 0 ≤
k ≤ 4. |