-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexamples.html
826 lines (776 loc) · 103 KB
/
examples.html
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
<!DOCTYPE HTML>
<!--
Prologue by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>Dyna2Gams – Optimal Control with GAMS</title>
<meta charset="ISO-8859-1" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Dyna2Gams" />
<meta property="og:description" content="Optimal Control with GAMS" />
<meta property="og:url" content="https://dyna2gams.github.io/" />
<meta property="og:site_name" content="Dyna2Gams" />
<meta property="og:image" content="https://dyna2gams.github.io/images/dyna-sts-9-launch.jpg" />
<meta property="og:image:width" content="2048" />
<meta property="og:image:height" content="963" />
<meta property="og:locale" content="en_US" />
<meta name="twitter:text:title" content="Home" />
<meta name="twitter:image" content="https://dyna2gams.github.io/images/dyna-sts-9-launch.jpg?w=640" />
<meta name="twitter:card" content="summary_large_image" />
<link rel="icon" href="images/dyna2gams-32x32.jpg" sizes="32x32" />
<link rel="icon" href="images/dyna2gams-192x192.jpg" sizes="192x192" />
<link rel="apple-touch-icon-precomposed" href="images/dyna2gams-180x180.jpg" />
<meta name="msapplication-TileImage" content="images/dyna2gams-270x270.jpg" />
<!--[if lte IE 8]><script src="assets/js/ie/html5shiv.js" type="text/javascript"></script><![endif]-->
<link rel="stylesheet" href="assets/css/main.css" />
<!--[if lte IE 8]><link rel="stylesheet" href="assets/css/ie8.css" /><![endif]-->
<!--[if lte IE 9]><link rel="stylesheet" href="assets/css/ie9.css" /><![endif]-->
<style>
ul.compact, ol.compact {
margin-top: -2em;
margin-bottom: 0em;
}
h4.compact {
margin-top: -1em;
margin-bottom: 0em;
}
</style>
</head>
<body class="is-preload">
<!-- Header -->
<div id="header">
<section class="bannerv">
<div class="top">
<!-- Logo -->
<div id="logo">
<!--span class="image avatar48"><img src="images/avatar.jpg" alt="" /></span-->
<h1 id="title">DYNA2GAMS</h1>
<p>optimal control with GAMS</p>
</div>
<!-- Nav -->
<nav id="nav">
<ul>
<li><a href="index.html" id="home-link">Home</a></li>
<li><a href="features.html" id="features-link">Features</a></li>
<li><a href="tutorial.html" id="examples-link">Tutorial</a></li>
<li><a href="#top" id="examples-link" class="scrolly active">Examples</a></li>
<li><a href="download.html" id="download-link">Download</a></li>
<li><a href="contact.html" id="contact-link">Contact</a></li>
<li><a href="blog.html" id="blog-link">Blog</a></li>
</ul>
</nav>
</div>
<div class="bottom">
<!-- Social Icons -->
<ul class="icons">
<!--li><a href="#" class="icon fa-twitter"><span class="label">Twitter</span></a></li-->
<!--li><a href="#" class="icon fa-facebook"><span class="label">Facebook</span></a></li-->
<li><a href="https://github.com/dyna2gams" class="icon fa-github"><span class="label">Github</span></a></li>
<!--li><a href="#" class="icon fa-dribbble"><span class="label">Dribbble</span></a></li-->
<li><a href="https://www.linkedin.com/in/alain-jean-michiels/" class="icon fa-linkedin"><span class="label">LinkedIn</span></a></li>
<li><a href="mailto:[email protected]" class="icon fa-envelope"><span class="label">Email</span></a></li>
</ul>
</div>
</section>
</div>
<!-- Main -->
<div id="main">
<!-- Intro -->
<!-- Examples -->
<section id="examples" class="two">
<div class="container">
<header>
<h2>Examples</h2>
</header>
<div align="left">
<p>More than 650 examples have already been implemented in DYNA for you. A good deal of
them are borrowed from the literature and various academic or commercial OCP solvers.
Use the links below to check the details and feel free to use them as a starting point
to formulate your own optimal control problem.
</div>
<div id="iframe">
<iframe
id="myIframe"
style="width: 100%; overflow: hidden;"
src="examples/tutor-a.html"
width="300"
height="350"
scrolling="yes"
frameborder="1"
style="border:solid"
allowfullscreen="allowfullscreen">
</iframe>
<a href="#" onclick="javascript:window.open(document.getElementById('myIframe').src);" class="button scrolly">Fullscreen</a>
</div>
<p>
<div align="left">
<h3>Problem libraries, cross-referencing and bibliography</h3>
<ul>
<li><a href="#acado">ACADO library</a></li>
<li><a href="#apm">APMonitor library</a></li>
<li><a href="#bocop">BOCOP library</a></li>
<li><a href="#cops">COPS 3.0 library</a></li>
<li><a href="#dido">DIDO library</a></li>
<li><a href="#dynopt">DYNOPT library</a></li>
<li><a href="#gpops">GPOPS library</a></li>
<li><a href="#iclocs">ICLOCS library</a></li>
<li><a href="#muscod">MUSCOD library</a></li>
<li><a href="#oocl">OpenOCL library</a></li>
<li><a href="#propt">PROPT library</a></li>
<li><a href="#psopt">PSOPT library</a></li>
<li><a href="#taco">TACO library</a></li>
<li><a href="#dynacont">DYNA continuous time library</a></li>
<li><a href="#dynadisc">DYNA discrete time library</a></li>
<li><a href="#dynanone">DYNA other example problems</a></li>
<li><a href="#tutor">DYNA tutorial library</a></li>
<li><a href="#gams">DYNA tutorial models translated to GAMS</a></li>
<li><a href="#xref">Cross-reference of DYNA features with example models</a></li>
<li><a href="#bib">Bibliographic sources</a></li>
</ul>
<h3 id="acado">Example problems from the <a href="http://acado.github.io/" target="_blank">ACADO</a><sup><a href="#r_acado">[1]</a></sup> library</h3><!--acado-->
<ul>
<li>Active Damping (<a href="#main" onclick="openFrame('examples/acado-active-damping.html');">acado-active-damping</a>)</li>
<li>Bioreactor (<a href="#main" onclick="openFrame('examples/acado-bioreactor.html');">acado-bioreactor</a>)</li>
<li>Discrete Time Rocket (<a href="#main" onclick="openFrame('examples/acado-discrete-time-rocket.html');">acado-discrete-time-rocket</a>)</li>
<li>Distillation column (<a href="#main" onclick="openFrame('examples/acado-hydroscal-ocp-equil.html');">acado-hydroscal-ocp-equil</a> | <a href="#main" onclick="openFrame('examples/acado-hydroscal-ocp.html');">acado-hydroscal-ocp</a>)</li>
<li>Optimal Control of a Jojo (<a href="#main" onclick="openFrame('examples/acado-jojo.html');">acado-jojo</a>)</li>
<li>Catalyst mixing multiobjective problem in a tubular reactor (<a href="#main" onclick="openFrame('examples/acado-pareto-catalyst-mixing.html');">acado-pareto-catalyst-mixing</a>)</li>
<li>Fed-batch bioreactor with yield-productivity conflict (<a href="#main" onclick="openFrame('examples/acado-pareto-batch-bioreactor.html');">acado-pareto-batch-bioreactor</a>)</li>
<li>Plug-flow tubular reactor multiobjective problem (<a href="#main" onclick="openFrame('examples/acado-pareto-plug-flow-reactor.html');">acado-pareto-plug-flow-reactor</a>)</li>
<li>Pendulum Estimation (<a href="#main" onclick="openFrame('examples/acado-pendulum-estimation.html');">acado-pendulum-estimation</a>)</li>
<li>Powerkite (<a href="#main" onclick="openFrame('examples/acado-powerkite-a.html');">acado-powerkite-a</a> | <a href="#main" onclick="openFrame('examples/acado-powerkite-b.html');">acado-powerkite-b</a> | <a href="#main" onclick="openFrame('examples/acado-powerkite-c.html');">acado-powerkite-c</a> | <a href="#main" onclick="openFrame('examples/acado-powerkite-d.html');">acado-powerkite-d</a> | <a href="#main" onclick="openFrame('examples/acado-powerkite-e.html');">acado-powerkite-e</a>)</li>
<li>Wave Energy (<a href="#main" onclick="openFrame('examples/acado-wave-energy.html');">acado-wave-energy</a>)</li>
</ul>
<h3 id="apm">Example problems from the <a href="http://www.apmonitor.com/" target="_blank">APMonitor</a><sup><a href="#r_apm">[2]</a></sup> library</h3><!--apm-->
<ul>
<li>Direct current motor (<a href="#main" onclick="openFrame('examples/apm-dc-motor.html');">apm-dc-motor</a>)</li>
<li>Blood glucose response of an insulin dependent patient (<a href="#main" onclick="openFrame('examples/apm-diabetes.html');">apm-diabetes</a>)</li>
<li>Blood Glucose in Type I Diabetes (<a href="#main" onclick="openFrame('examples/apm-diabetic-a.html');">apm-diabetic-a</a> | <a href="#main" onclick="openFrame('examples/apm-diabetic-b.html');">apm-diabetic-b</a>)</li>
<li>Estimation of seasonal transmission parameters in childhood infectious disease (<a href="#main" onclick="openFrame('examples/apm-measles-biweek.html');">apm-measles-biweek</a>)</li>
<li>Pendulum motion (<a href="#main" onclick="openFrame('examples/apm-pendulum-a.html');">apm-pendulum-a</a> | <a href="#main" onclick="openFrame('examples/apm-pendulum-b.html');">apm-pendulum-b</a> | <a href="#main" onclick="openFrame('examples/apm-pendulum-c.html');">apm-pendulum-c</a> | <a href="#main" onclick="openFrame('examples/apm-pendulum-d.html');">apm-pendulum-d</a>)</li>
<li>Truck suspension (<a href="#main" onclick="openFrame('examples/apm-truck-suspension.html');">apm-truck-suspension</a>)</li>
</ul>
<h3 id="bocop">Example problems from the <a href="http://www.bocop.org/" target="_blank">BOCOP</a><sup><a href="#r_bocop">[3]</a></sup> library</h3><!--bocop-->
<ul>
<li>Anaerobic digestion of microalgae for biogas production (<a href="#main" onclick="openFrame('examples/bocop-anaerobic-digestion.html');">bocop-anaerobic-digestion</a>)</li>
<li>Clamped beam (<a href="#main" onclick="openFrame('examples/bocop-clamped-beam.html');">bocop-clamped-beam</a>)</li>
<li>Contrast in magnetic resonance imaging (<a href="#main" onclick="openFrame('examples/bocop-contrast.html');">bocop-contrast</a>)</li>
<li>Fuller problem (<a href="#main" onclick="openFrame('examples/bocop-fuller.html');">bocop-fuller</a>)</li>
<li>A simple Goddard problem (<a href="#main" onclick="openFrame('examples/bocop-goddard.html');">bocop-goddard</a>)</li>
<li>Harvest (<a href="#main" onclick="openFrame('examples/bocop-harvest.html');">bocop-harvest</a>)</li>
<li>Control of the heat equation (<a href="#main" onclick="openFrame('examples/bocop-heat-dirichlet.html');">bocop-heat-dirichlet</a> | <a href="#main" onclick="openFrame('examples/bocop-heat-neumann.html');">bocop-heat-neumann</a>)</li>
<li>Optimal health insurance (<a href="#main" onclick="openFrame('examples/bocop-insurance-audit.html');">bocop-insurance-audit</a> | <a href="#main" onclick="openFrame('examples/bocop-insurance-non-audit.html');">bocop-insurance-non-audit</a>)</li>
<li>Inverted pendulum (<a href="#main" onclick="openFrame('examples/bocop-inverted-pendulum.html');">bocop-inverted-pendulum</a>)</li>
<li>Jackson (<a href="#main" onclick="openFrame('examples/bocop-jackson.html');">bocop-jackson</a>)</li>
<li>Jackson identification (<a href="#main" onclick="openFrame('examples/bocop-jackson-id.html');">bocop-jackson-id</a> | <a href="#main" onclick="openFrame('examples/bocop-jackson-id2.html');">bocop-jackson-id2</a> | <a href="#main" onclick="openFrame('examples/bocop-jackson-id3.html');">bocop-jackson-id3</a>)</li>
<li>Leukemia (<a href="#main" onclick="openFrame('examples/bocop-leukemia.html');">bocop-leukemia</a>)</li>
<li>Three-link micro-swimmer (<a href="#main" onclick="openFrame('examples/bocop-micro-swimmer.html');">bocop-micro-swimmer</a>)</li>
<li>Energy management for an electric microgrid (<a href="#main" onclick="openFrame('examples/bocop-microgrid-binary-a.html');">bocop-microgrid-binary-a</a> | <a href="#main" onclick="openFrame('examples/bocop-microgrid-binary-b.html');">bocop-microgrid-binary-b</a> | <a href="#main" onclick="openFrame('examples/bocop-microgrid.html');">bocop-microgrid</a>)</li>
<li>Second order singular regulator (<a href="#main" onclick="openFrame('examples/bocop-second-order-singular-regulator.html');">bocop-second-order-singular-regulator</a>)</li>
<li>Third order state constraints (<a href="#main" onclick="openFrame('examples/bocop-third-order-state-constraints.html');">bocop-third-order-state-constraints</a>)</li>
</ul>
<h3 id="cops">Example problems from the <a href="http://www.mcs.anl.gov/~more/cops/" target="_blank">COPS 3.0</a><sup><a href="#r_cops">[4]</a></sup> benchmarking suite</h3><!--cops-->
<ul>
<li>Catalyst Mixing Problem (<a href="#main" onclick="openFrame('examples/cops-catmix.html');">cops-catmix</a> | <a href="#main" onclick="openFrame('examples/cops-catmix2.html');">cops-catmix2</a>)</li>
<li>Fluid Flow in a Channel (<a href="#main" onclick="openFrame('examples/cops-fluidflow.html');">cops-fluidflow</a> | <a href="#main" onclick="openFrame('examples/cops-fluidflow2.html');">cops-fluidflow2</a> | <a href="#main" onclick="openFrame('examples/cops-fluidflow3.html');">cops-fluidflow3</a>)</li>
<li>Catalytic Cracking of Gas Oil (<a href="#main" onclick="openFrame('examples/cops-gasoil.html');">cops-gasoil</a> | <a href="#main" onclick="openFrame('examples/cops-gasoil2.html');">cops-gasoil2</a>)</li>
<li>Hang glider (<a href="#main" onclick="openFrame('examples/cops-glider.html');">cops-glider</a>)</li>
<li>Goddard Rocket (<a href="#main" onclick="openFrame('examples/cops-goddard.html');">cops-goddard</a>)</li>
<li>Hanging Chain (<a href="#main" onclick="openFrame('examples/cops-hanging-chain.html');">cops-hanging-chain</a>)</li>
<li>Marine Population Dynamics (<a href="#main" onclick="openFrame('examples/cops-marine.html');">cops-marine</a> | <a href="#main" onclick="openFrame('examples/cops-marine2.html');">cops-marine2</a>)</li>
<li>Methanol-to-Hydrocarbons (<a href="#main" onclick="openFrame('examples/cops-methanol.html');">cops-methanol</a> | <a href="#main" onclick="openFrame('examples/cops-methanol2.html');">cops-methanol2</a>)</li>
<li>Particle Steering (<a href="#main" onclick="openFrame('examples/cops-particle.html');">cops-particle</a> | <a href="#main" onclick="openFrame('examples/cops-particle2.html');">cops-particle2</a> | <a href="#main" onclick="openFrame('examples/cops-particle3.html');">cops-particle3</a>)</li>
<li>Isomerization of Alpha-Pinene (<a href="#main" onclick="openFrame('examples/cops-pinene.html');">cops-pinene</a> | <a href="#main" onclick="openFrame('examples/cops-pinene2.html');">cops-pinene2</a>)</li>
<li>Robot arm (<a href="#main" onclick="openFrame('examples/cops-robotarm.html');">cops-robotarm</a>)</li>
</ul>
<h3 id="dido">Example problems from the <a href="http://www.elissarglobal.com/" target="_blank">DIDO</a><sup><a href="#r_dido">[5]</a></sup> library</h3><!--dido-->
<ul>
<li>Unmanned Aerial Vehicle Drop Problem (<a href="#main" onclick="openFrame('examples/dido-uav.html');">dido-uav</a>)</li>
</ul>
<h3 id="dynopt">Example problems from the <a href="https://bitbucket.org/dynopt/dynopt_code" target="_blank">DYNOPT</a><sup><a href="#r_dynopt">[6]</a></sup> library</h3><!--dynopt-->
<ul>
<li>Batch Reactor Problem (<a href="#main" onclick="openFrame('examples/dynopt-batch-reactor.html');">dynopt-batch-reactor</a>)</li>
<li>Diafiltration optimal design (<a href="#main" onclick="openFrame('examples/dynopt-diafiltration.html');">dynopt-diafiltration</a>)</li>
<li>High Dimensional Control (<a href="#main" onclick="openFrame('examples/dynopt-high-dim-control.html');">dynopt-high-dim-control</a>)</li>
<li>Parallel Reactions in Tubular Reactor (<a href="#main" onclick="openFrame('examples/dynopt-parallel-reactions.html');">dynopt-parallel-reactions</a>)</li>
<li>Parameter Estimation Problem (<a href="#main" onclick="openFrame('examples/dynopt-parameter-estimation.html');">dynopt-parameter-estimation</a>)</li>
</ul>
<h3 id="gpops">Example problems from the <a href="http://www.gpops2.com/" target="_blank">GPOPS</a><sup><a href="#r_gpops">[7]</a></sup> library</h3><!--gpops-->
<ul>
<li>Dynamic Soaring Problem (<a href="#main" onclick="openFrame('examples/gpops-dynamic-soaring.html');">gpops-dynamic-soaring</a>)</li>
<li>Hyper-Sensitive Problem (<a href="#main" onclick="openFrame('examples/gpops-hyper-sensitive.html');">gpops-hyper-sensitive</a>)</li>
<li>Kinetic Batch Reactor Problem (<a href="#main" onclick="openFrame('examples/gpops-kinetic-batch-reactor.html');">gpops-kinetic-batch-reactor</a>)</li>
<li>Low-Thrust Orbit Transfer Example (<a href="#main" onclick="openFrame('examples/gpops-low-thrust-orbit.html');">gpops-low-thrust-orbit</a> | <a href="#main" onclick="openFrame('examples/gpops-low-thrust-orbit2.html');">gpops-low-thrust-orbit2</a>)</li>
<li>Multiple-Stage Launch Vehicle Ascent Example (<a href="#main" onclick="openFrame('examples/gpops-multiple-stage-launch-a.html');">gpops-multiple-stage-launch-a</a> | <a href="#main" onclick="openFrame('examples/gpops-multiple-stage-launch-a2.html');">gpops-multiple-stage-launch-a2</a> | <a href="#main" onclick="openFrame('examples/gpops-multiple-stage-launch-a3.html');">gpops-multiple-stage-launch-a3</a> | <a href="#main" onclick="openFrame('examples/gpops-multiple-stage-launch-b.html');">gpops-multiple-stage-launch-b</a> | <a href="#main" onclick="openFrame('examples/gpops-multiple-stage-launch-b2.html');">gpops-multiple-stage-launch-b2</a> | <a href="#main" onclick="openFrame('examples/gpops-multiple-stage-launch-b3.html');">gpops-multiple-stage-launch-b3</a>)</li>
<li>Aeroassisted Orbit Transfer from Geostationary to Low Earth Orbit (<a href="#main" onclick="openFrame('examples/gpops-orbit-transfer.html');">gpops-orbit-transfer</a>)</li>
<li>Reusable Launch Vehicle Entry (<a href="#main" onclick="openFrame('examples/gpops-reusable-launch-vehicle.html');">gpops-reusable-launch-vehicle</a>)</li>
<li>Minimum Time-to-Climb Problem Using Seywald Model (<a href="#main" onclick="openFrame('examples/gpops-seywald.html');">gpops-seywald</a>)</li>
<li>Optimal Configuration of Tetrahedral Spacecraft Formations (<a href="#main" onclick="openFrame('examples/gpops-spacecraft-tetra-a.html');">gpops-spacecraft-tetra-a</a> | <a href="#main" onclick="openFrame('examples/gpops-spacecraft-tetra-b.html');">gpops-spacecraft-tetra-b</a>)</li>
<li>Minimum Time-to-Climb of a Supersonic Aircraft (<a href="#main" onclick="openFrame('examples/gpops-supersonic.html');">gpops-supersonic</a>)</li>
<li>Two-Strain Tuberculosis Optimal Control Model (<a href="#main" onclick="openFrame('examples/gpops-tuberculosis.html');">gpops-tuberculosis</a>)</li>
<li>Tumor Anti-Angiogenesis Problem (<a href="#main" onclick="openFrame('examples/gpops-tumor.html');">gpops-tumor</a>)</li>
<li>Optimal Control of a Vertical Takeoff Vertical Landing Hopping Vehicle (<a href="#main" onclick="openFrame('examples/gpops-vtvl.html');">gpops-vtvl</a>)</li>
</ul>
<h3 id="iclocs">Example problems from the <a href="http://www.ee.ic.ac.uk/ICLOCS/" target="_blank">ICLOCS</a><sup><a href="#r_iclocs">[8]</a></sup> library</h3><!--iclocs-->
<ul>
<li>Aly-Chan problem (<a href="#main" onclick="openFrame('examples/iclocs-aly-chan.html');">iclocs-aly-chan</a>)</li>
<li>Minimum Time Flight Profile for a Commercial Aircraft (<a href="#main" onclick="openFrame('examples/iclocs-commercial-flight.html');">iclocs-commercial-flight</a>)</li>
<li>Orbit-raising optimal control (<a href="#main" onclick="openFrame('examples/iclocs-orbit-raising.html');">iclocs-orbit-raising</a>)</li>
<li>Automatic parallel parking in minimum time (<a href="#main" onclick="openFrame('examples/iclocs-parallel-parking.html');">iclocs-parallel-parking</a>)</li>
<li>Optimal Control for a Spaceship (<a href="#main" onclick="openFrame('examples/iclocs-spaceship-control.html');">iclocs-spaceship-control</a>)</li>
<li>Aircraft Go-Around in the Presence of Windshear (<a href="#main" onclick="openFrame('examples/iclocs-windshear.html');">iclocs-windshear</a>)</li>
</ul>
<h3 id="muscod">Example problems from the <a href="https://mintoc.de/index.php/Category:Muscod" target="_blank">MUSCOD</a><sup><a href="#r_muscod">[9]</a></sup> library</h3><!--muscod-->
<ul>
<li>Annihilation of calcium oscillations (<a href="#main" onclick="openFrame('examples/muscod-calcium-oscil-binary-a.html');">muscod-calcium-oscil-binary-a</a> | <a href="#main" onclick="openFrame('examples/muscod-calcium-oscil-a.html');">muscod-calcium-oscil-a</a>)</li>
<li>Annihilation of calcium oscillations with PLC activation inhibition (<a href="#main" onclick="openFrame('examples/muscod-calcium-oscil-binary-b.html');">muscod-calcium-oscil-binary-b</a> | <a href="#main" onclick="openFrame('examples/muscod-calcium-oscil-b.html');">muscod-calcium-oscil-b</a>)</li>
<li>Egerstedt problem with switching constraints (<a href="#main" onclick="openFrame('examples/muscod-egerstedt-binary-b.html');">muscod-egerstedt-binary-b</a>)</li>
<li>Egerstedt standard problem (<a href="#main" onclick="openFrame('examples/muscod-egerstedt-binary-a.html');">muscod-egerstedt-binary-a</a>)</li>
<li>F-8 aircraft (<a href="#main" onclick="openFrame('examples/muscod-f8-aircraft-binary.html');">muscod-f8-aircraft-binary</a> | <a href="#main" onclick="openFrame('examples/muscod-f8-aircraft.html');">muscod-f8-aircraft</a>)</li>
<li>Fuller’s initial value multimode problem (<a href="#main" onclick="openFrame('examples/muscod-fuller-binary.html');">muscod-fuller-binary</a>)</li>
<li>D’Onofrio chemotherapy model (<a href="#main" onclick="openFrame('examples/muscod-onofrio-binary.html');">muscod-onofrio-binary</a> | <a href="#main" onclick="openFrame('examples/muscod-onofrio.html');">muscod-onofrio</a>)</li>
<li>Supermarket refrigeration system (<a href="#main" onclick="openFrame('examples/muscod-refrigeration-binary.html');">muscod-refrigeration-binary</a> | <a href="#main" onclick="openFrame('examples/muscod-refrigeration.html');">muscod-refrigeration</a>)</li>
<li>Subway ride (<a href="#main" onclick="openFrame('examples/muscod-subway-binary.html');">muscod-subway-binary</a> | <a href="#main" onclick="openFrame('examples/muscod-subway.html');">muscod-subway</a>)</li>
<li>Van der Pol Oscillator (<a href="#main" onclick="openFrame('examples/muscod-vanderpol-binary.html');">muscod-vanderpol-binary</a>)</li>
<li>Lotka Volterra multi-arcs problem (<a href="#main" onclick="openFrame('examples/muscod-volterra-binary-a.html');">muscod-volterra-binary-a</a> | <a href="#main" onclick="openFrame('examples/muscod-volterra-binary-b.html');">muscod-volterra-binary-b</a>)</li>
</ul>
<h3 id="oocl">Example problems from the <a href="https://openocl.org/" target="_blank">OpenOCL</a><sup><a href="#r_oocl">[10]</a></sup> library</h3><!--oocl-->
<ul>
<li>Ball and beam problem (<a href="#main" onclick="openFrame('examples/oocl-ball-and-beam.html');">oocl-ball-and-beam</a>)</li>
<li>Bouncing ball problem (<a href="#main" onclick="openFrame('examples/oocl-bouncing-ball.html');">oocl-bouncing-ball</a>)</li>
<li>Cartpole problem (<a href="#main" onclick="openFrame('examples/oocl-cartpole.html');">oocl-cartpole</a>)</li>
<li>Pendulum problem (<a href="#main" onclick="openFrame('examples/oocl-pendulum.html');">oocl-pendulum</a>)</li>
<li>Racecar problem (<a href="#main" onclick="openFrame('examples/oocl-racecar.html');">oocl-racecar</a>)</li>
</ul>
<h3 id="propt">Example problems from the <a href="http://tomdyn.com/" target="_blank">PROPT</a><sup><a href="#r_propt">[11]</a></sup> library</h3><!--propt-->
<ul>
<li>Acrobot (<a href="#main" onclick="openFrame('examples/propt-acrobot.html');">propt-acrobot</a>)</li>
<li>A Linear Problem with Bang Bang Control (<a href="#main" onclick="openFrame('examples/propt-bang-bang-free-time.html');">propt-bang-bang-free-time</a>)</li>
<li>Batch Fermentor (<a href="#main" onclick="openFrame('examples/propt-batch-fermentor.html');">propt-batch-fermentor</a>)</li>
<li>Batch Production (<a href="#main" onclick="openFrame('examples/propt-batch-production.html');">propt-batch-production</a>)</li>
<li>Lee-Ramirez bioreactor (<a href="#main" onclick="openFrame('examples/propt-bioreactor-lee.html');">propt-bioreactor-lee</a>)</li>
<li>Park-Ramirez bioreactor (<a href="#main" onclick="openFrame('examples/propt-bioreactor-park.html');">propt-bioreactor-park</a>)</li>
<li>The Brachistochrone Problem (<a href="#main" onclick="openFrame('examples/propt-brachistochrone-dae.html');">propt-brachistochrone-dae</a> | <a href="#main" onclick="openFrame('examples/propt-brachistochrone.html');">propt-brachistochrone</a>)</li>
<li>Bridge Crane System (<a href="#main" onclick="openFrame('examples/propt-bridge-crane-system.html');">propt-bridge-crane-system</a>)</li>
<li>Bryson Maxrange (<a href="#main" onclick="openFrame('examples/propt-bryson-max-range.html');">propt-bryson-max-range</a>)</li>
<li>Bryson-Denham Problem (<a href="#main" onclick="openFrame('examples/propt-bryson-denham-detailed.html');">propt-bryson-denham-detailed</a> | <a href="#main" onclick="openFrame('examples/propt-bryson-denham-short.html');">propt-bryson-denham-short</a> | <a href="#main" onclick="openFrame('examples/propt-bryson-denham.html');">propt-bryson-denham</a>)</li>
<li>Bryson-Denham Two-Phase Problem (<a href="#main" onclick="openFrame('examples/propt-bryson-denham-two-phase.html');">propt-bryson-denham-two-phase</a>)</li>
<li>Catalyst Mixing (<a href="#main" onclick="openFrame('examples/propt-catalyst-mixing.html');">propt-catalyst-mixing</a>)</li>
<li>Catalytic Cracking of Gas Oil (<a href="#main" onclick="openFrame('examples/propt-catalytic-cracking.html');">propt-catalytic-cracking</a>)</li>
<li>Flow in a Channel (<a href="#main" onclick="openFrame('examples/propt-channel-flow.html');">propt-channel-flow</a>)</li>
<li>Continuous State Constraint Problem (<a href="#main" onclick="openFrame('examples/propt-cont-state-constraint.html');">propt-cont-state-constraint</a>)</li>
<li>Coulomb Friction (<a href="#main" onclick="openFrame('examples/propt-coulomb-friction-a.html');">propt-coulomb-friction-a</a> | <a href="#main" onclick="openFrame('examples/propt-coulomb-friction-b.html');">propt-coulomb-friction-b</a>)</li>
<li>Curve Area Maximization (<a href="#main" onclick="openFrame('examples/propt-curve-area-maximization.html');">propt-curve-area-maximization</a>)</li>
<li>Denbigh’s System of Reactions (<a href="#main" onclick="openFrame('examples/propt-denbigh-system.html');">propt-denbigh-system</a>)</li>
<li>Dielectrophoresis Particle Control (<a href="#main" onclick="openFrame('examples/propt-dielectrophoresis-problem.html');">propt-dielectrophoresis-problem</a>)</li>
<li>Disturbance Control (<a href="#main" onclick="openFrame('examples/propt-disturbance-control.html');">propt-disturbance-control</a>)</li>
<li>Drug Displacement Problem (<a href="#main" onclick="openFrame('examples/propt-drug-displacement.html');">propt-drug-displacement</a>)</li>
<li>Optimal Drug Scheduling for Cancer Chemotherapy (<a href="#main" onclick="openFrame('examples/propt-drug-scheduling.html');">propt-drug-scheduling</a>)</li>
<li>Euler Buckling Problem (<a href="#main" onclick="openFrame('examples/propt-euler-buckling.html');">propt-euler-buckling</a>)</li>
<li>Flight Path Tracking (<a href="#main" onclick="openFrame('examples/propt-flight-path-tracking.html');">propt-flight-path-tracking</a>)</li>
<li>Food Sterilization (<a href="#main" onclick="openFrame('examples/propt-food-sterilization.html');">propt-food-sterilization</a>)</li>
<li>Free Floating Robot (<a href="#main" onclick="openFrame('examples/propt-free-floating-robot.html');">propt-free-floating-robot</a>)</li>
<li>Fuller Phenomenon (<a href="#main" onclick="openFrame('examples/propt-fuller-phenomenon.html');">propt-fuller-phenomenon</a>)</li>
<li>Genetic (<a href="#main" onclick="openFrame('examples/propt-genetic-a.html');">propt-genetic-a</a> | <a href="#main" onclick="openFrame('examples/propt-genetic-b.html');">propt-genetic-b</a>)</li>
<li>Global Dynamic System (<a href="#main" onclick="openFrame('examples/propt-global-dynamic-system.html');">propt-global-dynamic-system</a>)</li>
<li>Goddard Rocket (<a href="#main" onclick="openFrame('examples/propt-goddard-singular-a.html');">propt-goddard-singular-a</a> | <a href="#main" onclick="openFrame('examples/propt-goddard-singular-b.html');">propt-goddard-singular-b</a>)</li>
<li>Goddard Rocket, Maximum Ascent (<a href="#main" onclick="openFrame('examples/propt-goddard-rocket.html');">propt-goddard-rocket</a>)</li>
<li>Greenhouse Climate Control (<a href="#main" onclick="openFrame('examples/propt-greenhouse-control.html');">propt-greenhouse-control</a>)</li>
<li>Grusin’s Metric (<a href="#main" onclick="openFrame('examples/propt-grusins-metric.html');">propt-grusins-metric</a>)</li>
<li>Hang Glider Control (<a href="#main" onclick="openFrame('examples/propt-hang-glider.html');">propt-hang-glider</a>)</li>
<li>Hanging Chain (<a href="#main" onclick="openFrame('examples/propt-hanging-chain.html');">propt-hanging-chain</a>)</li>
<li>Hyper-Sensitive Optimal Control (<a href="#main" onclick="openFrame('examples/propt-hyper-sensitive.html');">propt-hyper-sensitive</a>)</li>
<li>Initial Value Problem (<a href="#main" onclick="openFrame('examples/propt-initial-value-problem.html');">propt-initial-value-problem</a>)</li>
<li>Isomerization of alpha pinene (<a href="#main" onclick="openFrame('examples/propt-isomerization-alpha.html');">propt-isomerization-alpha</a>)</li>
<li>Isoperimetric Constraint Problem (<a href="#main" onclick="openFrame('examples/propt-isoperimetric.html');">propt-isoperimetric</a>)</li>
<li>Jumbo Crane Container Control (<a href="#main" onclick="openFrame('examples/propt-jumbo-container-crane.html');">propt-jumbo-container-crane</a>)</li>
<li>Linear Tangent Steering Problem (<a href="#main" onclick="openFrame('examples/propt-lin-tan-ste.html');">propt-lin-tan-ste</a>)</li>
<li>Linear Gas Absorber (<a href="#main" onclick="openFrame('examples/propt-linear-gas-absorber.html');">propt-linear-gas-absorber</a>)</li>
<li>Linear Pendulum (<a href="#main" onclick="openFrame('examples/propt-linear-pendulum.html');">propt-linear-pendulum</a>)</li>
<li>Linear Problem with Bang Bang Control (<a href="#main" onclick="openFrame('examples/propt-linear-problem-bang.html');">propt-linear-problem-bang</a>)</li>
<li>LQR Problem (<a href="#main" onclick="openFrame('examples/propt-lqr-problem.html');">propt-lqr-problem</a>)</li>
<li>Marine Population Dynamics (<a href="#main" onclick="openFrame('examples/propt-marine-population.html');">propt-marine-population</a>)</li>
<li>Maximum Radius Orbit Transfer (<a href="#main" onclick="openFrame('examples/propt-maximum-orbit-transfer.html');">propt-maximum-orbit-transfer</a>)</li>
<li>Sequential Activation of Metabolic Pathways (<a href="#main" onclick="openFrame('examples/propt-metabolic-pathways.html');">propt-metabolic-pathways</a>)</li>
<li>Methanol to Hydrocarbons (<a href="#main" onclick="openFrame('examples/propt-methanol-to-hydrocarbons.html');">propt-methanol-to-hydrocarbons</a>)</li>
<li>Minimum Energy Orbit Transfer (<a href="#main" onclick="openFrame('examples/propt-min-energy-orbit-transfer.html');">propt-min-energy-orbit-transfer</a>)</li>
<li>Minimum Climb Time (<a href="#main" onclick="openFrame('examples/propt-minimum-climb-eng.html');">propt-minimum-climb-eng</a>)</li>
<li>Missile Intercept (<a href="#main" onclick="openFrame('examples/propt-missile-intercept.html');">propt-missile-intercept</a>)</li>
<li>Moonlander Example (<a href="#main" onclick="openFrame('examples/propt-moon-lander.html');">propt-moon-lander</a>)</li>
<li>Nagurka Problem (<a href="#main" onclick="openFrame('examples/propt-nagurka-problem.html');">propt-nagurka-problem</a>)</li>
<li>Nishida Problem (<a href="#main" onclick="openFrame('examples/propt-nishida-problem.html');">propt-nishida-problem</a>)</li>
<li>Nondifferentiable system (<a href="#main" onclick="openFrame('examples/propt-nondiff-system-a.html');">propt-nondiff-system-a</a> | <a href="#main" onclick="openFrame('examples/propt-nondiff-system-b.html');">propt-nondiff-system-b</a>)</li>
<li>Nonlinear Continuous Stirred Tank Reactor (<a href="#main" onclick="openFrame('examples/propt-nonlinear-cstr.html');">propt-nonlinear-cstr</a>)</li>
<li>Obstacle Avoidance (<a href="#main" onclick="openFrame('examples/propt-obstacle-avoidance.html');">propt-obstacle-avoidance</a>)</li>
<li>Oil Shale Pyrolysis (<a href="#main" onclick="openFrame('examples/propt-oil-pyrolysis.html');">propt-oil-pyrolysis</a>)</li>
<li>One Dimensional Rocket Ascent (<a href="#main" onclick="openFrame('examples/propt-one-dim-rocket.html');">propt-one-dim-rocket</a>)</li>
<li>Parametric Sensitivity Control (<a href="#main" onclick="openFrame('examples/propt-optimal-parametric-sensitivity.html');">propt-optimal-parametric-sensitivity</a>)</li>
<li>Orbit Raising Minimum Time (<a href="#main" onclick="openFrame('examples/propt-orbit-raising-min-time.html');">propt-orbit-raising-min-time</a>)</li>
<li>Path Tracking Robot (<a href="#main" onclick="openFrame('examples/propt-path-tracking-robot-two-phase.html');">propt-path-tracking-robot-two-phase</a> | <a href="#main" onclick="openFrame('examples/propt-path-tracking-robot.html');">propt-path-tracking-robot</a>)</li>
<li>Pendulum Gravity Estimation (<a href="#main" onclick="openFrame('examples/propt-pendulum-gravity.html');">propt-pendulum-gravity</a>)</li>
<li>Penicillin Plant (<a href="#main" onclick="openFrame('examples/propt-penicillin-plant.html');">propt-penicillin-plant</a>)</li>
<li>Plug-Flow Tubular Reactor (<a href="#main" onclick="openFrame('examples/propt-plug-flow-reactor.html');">propt-plug-flow-reactor</a>)</li>
<li>Quadratic constraint problem (<a href="#main" onclick="openFrame('examples/propt-quadratic-constraint.html');">propt-quadratic-constraint</a>)</li>
<li>Quadruple Integral (<a href="#main" onclick="openFrame('examples/propt-quadruple-integral.html');">propt-quadruple-integral</a>)</li>
<li>Radio telescope (<a href="#main" onclick="openFrame('examples/propt-radio-telescope.html');">propt-radio-telescope</a>)</li>
<li>Rayleigh Unconstrained (<a href="#main" onclick="openFrame('examples/propt-rayleigh-unconstrained.html');">propt-rayleigh-unconstrained</a>)</li>
<li>Rigid Body Rotation (<a href="#main" onclick="openFrame('examples/propt-rigid-body-rotation.html');">propt-rigid-body-rotation</a>)</li>
<li>Robot Arm Movement (<a href="#main" onclick="openFrame('examples/propt-robot-arm-movement.html');">propt-robot-arm-movement</a>)</li>
<li>Time-optimal Trajectories for Robot Manipulators (<a href="#main" onclick="openFrame('examples/propt-robot-manipulators.html');">propt-robot-manipulators</a>)</li>
<li>Satellite Control (<a href="#main" onclick="openFrame('examples/propt-satellite-control.html');">propt-satellite-control</a>)</li>
<li>Second Order System (<a href="#main" onclick="openFrame('examples/propt-second-order-system.html');">propt-second-order-system</a>)</li>
<li>Space Shuttle Reentry (<a href="#main" onclick="openFrame('examples/propt-shuttle-entry.html');">propt-shuttle-entry</a>)</li>
<li>Simple Bang Bang Problem (<a href="#main" onclick="openFrame('examples/propt-simple-bang-bang.html');">propt-simple-bang-bang</a>)</li>
<li>Singular Arc Problem (<a href="#main" onclick="openFrame('examples/propt-singular-arc.html');">propt-singular-arc</a>)</li>
<li>Singular Continuous Stirred Tank Reactor (<a href="#main" onclick="openFrame('examples/propt-singular-cstr.html');">propt-singular-cstr</a>)</li>
<li>Singular Control (<a href="#main" onclick="openFrame('examples/propt-singular-control-a.html');">propt-singular-control-a</a> | <a href="#main" onclick="openFrame('examples/propt-singular-control-b.html');">propt-singular-control-b</a> | <a href="#main" onclick="openFrame('examples/propt-singular-control-c.html');">propt-singular-control-c</a> | <a href="#main" onclick="openFrame('examples/propt-singular-control-d.html');">propt-singular-control-d</a> | <a href="#main" onclick="openFrame('examples/propt-singular-control-e.html');">propt-singular-control-e</a> | <a href="#main" onclick="openFrame('examples/propt-singular-control-f.html');">propt-singular-control-f</a>)</li>
<li>Spring Mass Damper (<a href="#main" onclick="openFrame('examples/propt-spring-system.html');">propt-spring-system</a>)</li>
<li>Stirred Tank (<a href="#main" onclick="openFrame('examples/propt-stirred-tank.html');">propt-stirred-tank</a>)</li>
<li>Temperature Control (<a href="#main" onclick="openFrame('examples/propt-temperature-control.html');">propt-temperature-control</a>)</li>
<li>A Simple Terminal Constraint Problem (<a href="#main" onclick="openFrame('examples/propt-terminal-constraint-a.html');">propt-terminal-constraint-a</a> | <a href="#main" onclick="openFrame('examples/propt-terminal-constraint-b.html');">propt-terminal-constraint-b</a>)</li>
<li>Third order system (<a href="#main" onclick="openFrame('examples/propt-third-order-system.html');">propt-third-order-system</a>)</li>
<li>Time Delay (<a href="#main" onclick="openFrame('examples/propt-time-delay-proxi-a.html');">propt-time-delay-proxi-a</a> | <a href="#main" onclick="openFrame('examples/propt-time-delay-proxi-b.html');">propt-time-delay-proxi-b</a> | <a href="#main" onclick="openFrame('examples/propt-time-delay-a.html');">propt-time-delay-a</a> | <a href="#main" onclick="openFrame('examples/propt-time-delay-b.html');">propt-time-delay-b</a>)</li>
<li>Transfer Min Swing (<a href="#main" onclick="openFrame('examples/propt-transfer-min-swing.html');">propt-transfer-min-swing</a>)</li>
<li>Tubular Reactor (<a href="#main" onclick="openFrame('examples/propt-tubular-reactor.html');">propt-tubular-reactor</a>)</li>
<li>Turbo Generator (<a href="#main" onclick="openFrame('examples/propt-turbo-generator.html');">propt-turbo-generator</a>)</li>
<li>Two Stage CSTR (<a href="#main" onclick="openFrame('examples/propt-two-stage-cstr.html');">propt-two-stage-cstr</a>)</li>
<li>Two-Link Robot (<a href="#main" onclick="openFrame('examples/propt-two-link-robot.html');">propt-two-link-robot</a>)</li>
<li>Two-Link Robotic Arm (<a href="#main" onclick="openFrame('examples/propt-two-link-robotic-arm.html');">propt-two-link-robotic-arm</a>)</li>
<li>Two-Phase Schwartz (<a href="#main" onclick="openFrame('examples/propt-two-phase-schwartz.html');">propt-two-phase-schwartz</a>)</li>
<li>Van der Pol Oscillator (<a href="#main" onclick="openFrame('examples/propt-vanDerPol.html');">propt-vanDerPol</a>)</li>
<li>Zermelo Ferry Trajectory (<a href="#main" onclick="openFrame('examples/propt-zermelo-ferry.html');">propt-zermelo-ferry</a>)</li>
<li>Zermelo Flight Trajectory (<a href="#main" onclick="openFrame('examples/propt-zermelo-flight.html');">propt-zermelo-flight</a>)</li>
</ul>
<h3 id="psopt">Example problems from the <a href="http://www.psopt.org/" target="_blank">PSOPT</a><sup><a href="#r_psopt">[12]</a></sup> library</h3><!--psopt-->
<ul>
<li>Alp rider problem (<a href="#main" onclick="openFrame('examples/psopt-alpine.html');">psopt-alpine</a>)</li>
<li>Lee-Ramirez bioreactor (<a href="#main" onclick="openFrame('examples/psopt-bioreactor.html');">psopt-bioreactor</a>)</li>
<li>Bouncing ball (<a href="#main" onclick="openFrame('examples/psopt-bouncing-ball.html');">psopt-bouncing-ball</a>)</li>
<li>Brachistochrone problem (<a href="#main" onclick="openFrame('examples/psopt-brac.html');">psopt-brac</a>)</li>
<li>Breakwell problem (<a href="#main" onclick="openFrame('examples/psopt-breakwell.html');">psopt-breakwell</a>)</li>
<li>Bryson Maximum Range Problem (<a href="#main" onclick="openFrame('examples/psopt-bryson-max-range.html');">psopt-bryson-max-range</a>)</li>
<li>Bryson-Denham problem (<a href="#main" onclick="openFrame('examples/psopt-bryson-denham.html');">psopt-bryson-denham</a>)</li>
<li>Catalyst mixing problem (<a href="#main" onclick="openFrame('examples/psopt-catmix.html');">psopt-catmix</a>)</li>
<li>Coulomb friction problem (<a href="#main" onclick="openFrame('examples/psopt-coulomb.html');">psopt-coulomb</a>)</li>
<li>Catalytic Cracking of Gas Oil (<a href="#main" onclick="openFrame('examples/psopt-cracking.html');">psopt-cracking</a> | <a href="#main" onclick="openFrame('examples/psopt-cracking2.html');">psopt-cracking2</a>)</li>
<li>Minimum Swing Control for Container Crane (<a href="#main" onclick="openFrame('examples/psopt-crane.html');">psopt-crane</a>)</li>
<li>DAE index 3 parameter estimation problem (<a href="#main" onclick="openFrame('examples/psopt-dae-i3.html');">psopt-dae-i3</a>)</li>
<li>Time delay problem (<a href="#main" onclick="openFrame('examples/psopt-delay.html');">psopt-delay</a>)</li>
<li>Geodesic problem (<a href="#main" onclick="openFrame('examples/psopt-geodesic.html');">psopt-geodesic</a>)</li>
<li>Hanging chain problem (<a href="#main" onclick="openFrame('examples/psopt-hanging-chain.html');">psopt-hanging-chain</a>)</li>
<li>Heat diffusion problem (<a href="#main" onclick="openFrame('examples/psopt-heat.html');">psopt-heat</a>)</li>
<li>Isoperimetric problem (<a href="#main" onclick="openFrame('examples/psopt-isoperimetric.html');">psopt-isoperimetric</a>)</li>
<li>Lambert problem (<a href="#main" onclick="openFrame('examples/psopt-lambert.html');">psopt-lambert</a>)</li>
<li>Parameter estimation for ODE with 2 parameters (<a href="#main" onclick="openFrame('examples/psopt-li-b.html');">psopt-li-b</a> | <a href="#main" onclick="openFrame('examples/psopt-li-a.html');">psopt-li-a</a>)</li>
<li>Linear tangent steering problem (<a href="#main" onclick="openFrame('examples/psopt-lts.html');">psopt-lts</a>)</li>
<li>Optimal control of a simplified Manutec R3 robot with three arms (<a href="#main" onclick="openFrame('examples/psopt-manutec.html');">psopt-manutec</a>)</li>
<li>Missile terminal burn manoeuvre (<a href="#main" onclick="openFrame('examples/psopt-missile.html');">psopt-missile</a>)</li>
<li>Moonlander problem (<a href="#main" onclick="openFrame('examples/psopt-moon.html');">psopt-moon</a>)</li>
<li>Dynamic MPEC problem (<a href="#main" onclick="openFrame('examples/psopt-mpec.html');">psopt-mpec</a>)</li>
<li>Bock’s notorious parameter estimation problem (<a href="#main" onclick="openFrame('examples/psopt-notorious.html');">psopt-notorious</a>)</li>
<li>Obstacle avoidance problem (<a href="#main" onclick="openFrame('examples/psopt-obstacle-a.html');">psopt-obstacle-a</a> | <a href="#main" onclick="openFrame('examples/psopt-obstacle-b.html');">psopt-obstacle-b</a>)</li>
<li>Predator-prey parameter estimation problem (<a href="#main" onclick="openFrame('examples/psopt-predator.html');">psopt-predator</a>)</li>
<li>Rayleigh problem (<a href="#main" onclick="openFrame('examples/psopt-rayleigh.html');">psopt-rayleigh</a>)</li>
<li>Reorientation of an asymmetric rigid body (<a href="#main" onclick="openFrame('examples/psopt-reorientation.html');">psopt-reorientation</a>)</li>
<li>Shuttle reentry problem (<a href="#main" onclick="openFrame('examples/psopt-shuttle-reentry.html');">psopt-shuttle-reentry</a>)</li>
<li>Singular problem (<a href="#main" onclick="openFrame('examples/psopt-singular.html');">psopt-singular</a>)</li>
<li>Time varying state constraint problem (<a href="#main" onclick="openFrame('examples/psopt-stc.html');">psopt-stc</a>)</li>
<li>Two link arm problem (<a href="#main" onclick="openFrame('examples/psopt-two-link-arm.html');">psopt-two-link-arm</a>)</li>
<li>Two-phase Schwartz problem (<a href="#main" onclick="openFrame('examples/psopt-two-phase-schwartz-a.html');">psopt-two-phase-schwartz-a</a> | <a href="#main" onclick="openFrame('examples/psopt-two-phase-schwartz-b.html');">psopt-two-phase-schwartz-b</a>)</li>
<li>Two-phase path tracking robot (<a href="#main" onclick="openFrame('examples/psopt-two-phase-robot-a.html');">psopt-two-phase-robot-a</a> | <a href="#main" onclick="openFrame('examples/psopt-two-phase-robot-b.html');">psopt-two-phase-robot-b</a>)</li>
<li>Two burn orbit transfer (<a href="#main" onclick="openFrame('examples/psopt-twoburn.html');">psopt-twoburn</a> | <a href="#main" onclick="openFrame('examples/psopt-twoburn2.html');">psopt-twoburn2</a>)</li>
<li>Zero Propellant Manoeuvre of the ISS (<a href="#main" onclick="openFrame('examples/psopt-zpm-a1.html');">psopt-zpm-a1</a> | <a href="#main" onclick="openFrame('examples/psopt-zpm-b1.html');">psopt-zpm-b1</a> | <a href="#main" onclick="openFrame('examples/psopt-zpm-b2.html');">psopt-zpm-b2</a>)</li>
</ul>
<h3 id="taco">Example problems from the <a href="http://mintoc.de/index.php/Category:AMPL/TACO" target="_blank">TACO</a><sup><a href="#r_taco">[13]</a></sup> library</h3><!--taco-->
<ul>
<li>Batch distillation model (<a href="#main" onclick="openFrame('examples/taco-batchdist.html');">taco-batchdist</a>)</li>
<li>The classical brachistochrone problem (<a href="#main" onclick="openFrame('examples/taco-brac.html');">taco-brac</a>)</li>
<li>Time Optimal Car (<a href="#main" onclick="openFrame('examples/taco-car.html');">taco-car</a>)</li>
<li>Continuously Stirred Tank Reactor (<a href="#main" onclick="openFrame('examples/taco-cstr.html');">taco-cstr</a>)</li>
<li>Simple nonlinear model predictive control toy problem (<a href="#main" onclick="openFrame('examples/taco-nmpc.html');">taco-nmpc</a>)</li>
<li>Apollo type vehicle reentry problem (<a href="#main" onclick="openFrame('examples/taco-reentry.html');">taco-reentry</a>)</li>
<li>Semibatch esterification problem (<a href="#main" onclick="openFrame('examples/taco-semibatch.html');">taco-semibatch</a>)</li>
</ul>
<h3 id="dynacont">DYNA example problems for continuous time</h3><!--dynac-->
<p>Note that some of the problems are from <a href="https://mintoc.de/index.php/Main_Page" target="_blank">mintOC.de</a><sup><a href="#r_mintoc">[14]</a></sup>.<!--dynac-->
<h4 class="compact">Optimal control</h4><!--dynac-->
<ul>
<li>An academic problem (<a href="#main" onclick="openFrame('examples/academic-a.html');">academic-a</a> | <a href="#main" onclick="openFrame('examples/academic-b.html');">academic-b</a>)</li>
<li>Autonomous Car Racing (<a href="#main" onclick="openFrame('examples/acados-racecar-a.html');">acados-racecar-a</a> | <a href="#main" onclick="openFrame('examples/acados-racecar-b.html');">acados-racecar-b</a>)</li>
<li>Aerial swarming model (<a href="#main" onclick="openFrame('examples/acados-swarming.html');">acados-swarming</a>)</li>
<li>An underwater vehicle problem (<a href="#main" onclick="openFrame('examples/aquanautics.html');">aquanautics</a>)</li>
<li>Atmospheric entry problem (<a href="#main" onclick="openFrame('examples/atmo-entry-nre.html');">atmo-entry-nre</a> | <a href="#main" onclick="openFrame('examples/atmo-entry-re.html');">atmo-entry-re</a>)</li>
<li>A system with autonomous switches (<a href="#main" onclick="openFrame('examples/autonomous-switch-b.html');">autonomous-switch-b</a>)</li>
<li>Bagley-Torvik equation (<a href="#main" onclick="openFrame('examples/bagley-torvik-a1.html');">bagley-torvik-a1</a> | <a href="#main" onclick="openFrame('examples/bagley-torvik-a2.html');">bagley-torvik-a2</a> | <a href="#main" onclick="openFrame('examples/bagley-torvik-b1.html');">bagley-torvik-b1</a> | <a href="#main" onclick="openFrame('examples/bagley-torvik-b2.html');">bagley-torvik-b2</a>)</li>
<li>Ball and beam problem (<a href="#main" onclick="openFrame('examples/ball-and-beam.html');">ball-and-beam</a>)</li>
<li>Batch reactor (<a href="#main" onclick="openFrame('examples/batch-reactor.html');">batch-reactor</a>)</li>
<li>Time Optimal Launch of a Titan-II Trajectory (<a href="#main" onclick="openFrame('examples/beluga-TitanII.html');">beluga-TitanII</a>)</li>
<li>Financial oscillator (<a href="#main" onclick="openFrame('examples/beluga-financial-oscillator.html');">beluga-financial-oscillator</a>)</li>
<li>High Thrust Orbit Raising (<a href="#main" onclick="openFrame('examples/beluga-high-thrust.html');">beluga-high-thrust</a>)</li>
<li>2D Hypersonic Planetary Entry (<a href="#main" onclick="openFrame('examples/beluga-hypersonic-2D.html');">beluga-hypersonic-2D</a>)</li>
<li>3D Hypersonic Planetary Entry (<a href="#main" onclick="openFrame('examples/beluga-hypersonic-3D.html');">beluga-hypersonic-3D</a>)</li>
<li>Hypersonic nose (<a href="#main" onclick="openFrame('examples/beluga-hypersonic-nose.html');">beluga-hypersonic-nose</a>)</li>
<li>Low Thrust Orbit Raising (<a href="#main" onclick="openFrame('examples/beluga-low-thrust.html');">beluga-low-thrust</a>)</li>
<li>One loop circuit (<a href="#main" onclick="openFrame('examples/beluga-one-loop-circuit.html');">beluga-one-loop-circuit</a>)</li>
<li>Optimal Aeroassisted Plane - Change Maximum Velocity with Heat Rate Limit (<a href="#main" onclick="openFrame('examples/betts-aotv-a.html');">betts-aotv-a</a>)</li>
<li>Optimal Aeroassisted Plane - Minimax Heat Rate (<a href="#main" onclick="openFrame('examples/betts-aotv-b.html');">betts-aotv-b</a>)</li>
<li>Minimum Time to Climb (<a href="#main" onclick="openFrame('examples/betts-clym.html');">betts-clym</a>)</li>
<li>Optimal Spacecraft Docking Maneuver (<a href="#main" onclick="openFrame('examples/betts-dock.html');">betts-dock</a>)</li>
<li>Free-Flying Robot (<a href="#main" onclick="openFrame('examples/betts-ffrb.html');">betts-ffrb</a>)</li>
<li>Goddard Rocket Problem (<a href="#main" onclick="openFrame('examples/betts-gdrd.html');">betts-gdrd</a>)</li>
<li>Multi-path Multi-phase Optimization (<a href="#main" onclick="openFrame('examples/betts-gsoc.html');">betts-gsoc</a>)</li>
<li>Optimal Low-Thrust Transfer Between Libration Points (<a href="#main" onclick="openFrame('examples/betts-lbr1-a.html');">betts-lbr1-a</a> | <a href="#main" onclick="openFrame('examples/betts-lbr1-b.html');">betts-lbr1-b</a> | <a href="#main" onclick="openFrame('examples/betts-lbr2-a.html');">betts-lbr2-a</a> | <a href="#main" onclick="openFrame('examples/betts-lbr2-b.html');">betts-lbr2-b</a> | <a href="#main" onclick="openFrame('examples/betts-lbri-b.html');">betts-lbri-b</a> | <a href="#main" onclick="openFrame('examples/betts-lbri-a.html');">betts-lbri-a</a>)</li>
<li>Racecar on an eight-shape circuit (<a href="#main" onclick="openFrame('examples/car-racing.html');">car-racing</a>)</li>
<li>Buffer Tank Case Study (<a href="#main" onclick="openFrame('examples/cc-buffer-tank.html');">cc-buffer-tank</a>)</li>
<li>A Differential Complementarity Linear System (<a href="#main" onclick="openFrame('examples/cc-dcls.html');">cc-dcls</a>)</li>
<li>Circuit with an ideal diode and two voltage sources (<a href="#main" onclick="openFrame('examples/cc-diode.html');">cc-diode</a>)</li>
<li>Optimization Problem Tank Cascade (<a href="#main" onclick="openFrame('examples/cc-tank-cascade1.html');">cc-tank-cascade1</a> | <a href="#main" onclick="openFrame('examples/cc-tank-cascade2.html');">cc-tank-cascade2</a>)</li>
<li>Keep-out zone chance constraint (<a href="#main" onclick="openFrame('examples/chc-keep-out-zone-a.html');">chc-keep-out-zone-a</a> | <a href="#main" onclick="openFrame('examples/chc-keep-out-zone-b.html');">chc-keep-out-zone-b</a>)</li>
<li>Minimum-energy trajectory with chance constraints (<a href="#main" onclick="openFrame('examples/chc-min-energy.html');">chc-min-energy</a>)</li>
<li>Chebyshev Differential Equation (<a href="#main" onclick="openFrame('examples/chebychev.html');">chebychev</a> | <a href="#main" onclick="openFrame('examples/chebychev2.html');">chebychev2</a>)</li>
<li>Control of the Circadian Rhythms (<a href="#main" onclick="openFrame('examples/circadian-rhythms-a.html');">circadian-rhythms-a</a> | <a href="#main" onclick="openFrame('examples/circadian-rhythms-b.html');">circadian-rhythms-b</a>)</li>
<li>Pneumonia and Meningitis Coinfection (<a href="#main" onclick="openFrame('examples/coinfection.html');">coinfection</a>)</li>
<li>Convert to AMPL (<a href="#main" onclick="openFrame('examples/convert-to-ampl.html');">convert-to-ampl</a>)</li>
<li>Bang-Bang Control Problem (<a href="#main" onclick="openFrame('examples/costate-example-c.html');">costate-example-c</a>)</li>
<li>Infinite Horizon Optimal Control Problem (<a href="#main" onclick="openFrame('examples/costate-example-f1.html');">costate-example-f1</a> | <a href="#main" onclick="openFrame('examples/costate-example-f2.html');">costate-example-f2</a>)</li>
<li>Infinite-Horizon One-Dimensional Nonlinear Problem (<a href="#main" onclick="openFrame('examples/costate-example-e1.html');">costate-example-e1</a> | <a href="#main" onclick="openFrame('examples/costate-example-e2.html');">costate-example-e2</a>)</li>
<li>Nonlinear One-Dimensional Finite-Horizon Problem (<a href="#main" onclick="openFrame('examples/costate-example-b.html');">costate-example-b</a>)</li>
<li>Nonlinear One-Dimensional Initial-Value Problem (<a href="#main" onclick="openFrame('examples/costate-example-a.html');">costate-example-a</a>)</li>
<li>Singular Arc Problem (<a href="#main" onclick="openFrame('examples/costate-example-d.html');">costate-example-d</a>)</li>
<li>Cubesat fuel cost optimal control (<a href="#main" onclick="openFrame('examples/cubesat-a.html');">cubesat-a</a>)</li>
<li>Cubesat time optimal control (<a href="#main" onclick="openFrame('examples/cubesat-b.html');">cubesat-b</a>)</li>
<li>Cubesat energy optimal pseudowheels (<a href="#main" onclick="openFrame('examples/cubesat-c.html');">cubesat-c</a>)</li>
<li>Cubesat energy optimal velocity pseudowheels (<a href="#main" onclick="openFrame('examples/cubesat-d.html');">cubesat-d</a>)</li>
<li>Damped Linear Oscillator (<a href="#main" onclick="openFrame('examples/damp-lin-oscil-c.html');">damp-lin-oscil-c</a> | <a href="#main" onclick="openFrame('examples/damp-lin-oscil-a.html');">damp-lin-oscil-a</a> | <a href="#main" onclick="openFrame('examples/damp-lin-oscil-e.html');">damp-lin-oscil-e</a> | <a href="#main" onclick="openFrame('examples/damp-lin-oscil-d.html');">damp-lin-oscil-d</a> | <a href="#main" onclick="openFrame('examples/damp-lin-oscil-b.html');">damp-lin-oscil-b</a>)</li>
<li>Debris Pickup Problem (<a href="#main" onclick="openFrame('examples/debris-pickup.html');">debris-pickup</a>)</li>
<li>Optimal and sub-optimal control in Dengue epidemics (<a href="#main" onclick="openFrame('examples/dengue.html');">dengue</a>)</li>
<li>Dengue in Cape Verde: vector control (<a href="#main" onclick="openFrame('examples/dengue-sir.html');">dengue-sir</a>)</li>
<li>Dengue in Cape Verde: vector control and vaccination (<a href="#main" onclick="openFrame('examples/dengue-svir.html');">dengue-svir</a>)</li>
<li>De Pillis chemotherapy model (<a href="#main" onclick="openFrame('examples/depillis-binary.html');">depillis-binary</a> | <a href="#main" onclick="openFrame('examples/depillis.html');">depillis</a>)</li>
<li>Robust PID Design (<a href="#main" onclick="openFrame('examples/design-pid-a-dist.html');">design-pid-a-dist</a> | <a href="#main" onclick="openFrame('examples/design-pid-a-step.html');">design-pid-a-step</a> | <a href="#main" onclick="openFrame('examples/design-pid-b-dist.html');">design-pid-b-dist</a> | <a href="#main" onclick="openFrame('examples/design-pid-b-step.html');">design-pid-b-step</a> | <a href="#main" onclick="openFrame('examples/design-pid-c-dist.html');">design-pid-c-dist</a> | <a href="#main" onclick="openFrame('examples/design-pid-c-step.html');">design-pid-c-step</a> | <a href="#main" onclick="openFrame('examples/design-pid-d-dist.html');">design-pid-d-dist</a> | <a href="#main" onclick="openFrame('examples/design-pid-d-step.html');">design-pid-d-step</a>)</li>
<li>Oligopoly model of advertising (<a href="#main" onclick="openFrame('examples/dg-advertising.html');">dg-advertising</a>)</li>
<li>Differential Game - Homicidal Chauffeur (<a href="#main" onclick="openFrame('examples/dg-homicidal-chauffeur.html');">dg-homicidal-chauffeur</a>)</li>
<li>A Pursuit-Evasion Game Involving Two Spacecraft (<a href="#main" onclick="openFrame('examples/dg-two-spacecraft.html');">dg-two-spacecraft</a>)</li>
<li>Differential Game - A Game of Two Cars (<a href="#main" onclick="openFrame('examples/dg-two-cars.html');">dg-two-cars</a> | <a href="#main" onclick="openFrame('examples/dg-two-cars2.html');">dg-two-cars2</a>)</li>
<li>A singular control problem (<a href="#main" onclick="openFrame('examples/diedam-sager.html');">diedam-sager</a>)</li>
<li>Inverted double pendulum on a cart (<a href="#main" onclick="openFrame('examples/double-pendulum-inverted.html');">double-pendulum-inverted</a> | <a href="#main" onclick="openFrame('examples/double-pendulum-inverted2.html');">double-pendulum-inverted2</a>)</li>
<li>Double Tank (<a href="#main" onclick="openFrame('examples/double-tank-binary.html');">double-tank-binary</a> | <a href="#main" onclick="openFrame('examples/double-tank.html');">double-tank</a>)</li>
<li>Double Tank Model Parameters Identification (<a href="#main" onclick="openFrame('examples/double-tank-id-a.html');">double-tank-id-a</a> | <a href="#main" onclick="openFrame('examples/double-tank-id-a2.html');">double-tank-id-a2</a>)</li>
<li>Drug displacement (<a href="#main" onclick="openFrame('examples/drug-displacement.html');">drug-displacement</a>)</li>
<li>Optimal steering for the Dubins car (<a href="#main" onclick="openFrame('examples/dubins.html');">dubins</a>)</li>
<li>The driver and the evader particles (<a href="#main" onclick="openFrame('examples/dycon-driver-evader.html');">dycon-driver-evader</a>)</li>
<li>Fractional heat equation (<a href="#main" onclick="openFrame('examples/dycon-fractional-heat-a.html');">dycon-fractional-heat-a</a> | <a href="#main" onclick="openFrame('examples/dycon-fractional-heat-b.html');">dycon-fractional-heat-b</a> | <a href="#main" onclick="openFrame('examples/dycon-fractional-heat-c.html');">dycon-fractional-heat-c</a>)</li>
<li>Controllability of the 2D heat equation (<a href="#main" onclick="openFrame('examples/dycon-heat-equation-2D.html');">dycon-heat-equation-2D</a>)</li>
<li>The optimal control of the Kuramoto adaptive coupling model (<a href="#main" onclick="openFrame('examples/dycon-kuramoto.html');">dycon-kuramoto</a>)</li>
<li>Robot (<a href="#main" onclick="openFrame('examples/dycon-robot.html');">dycon-robot</a>)</li>
<li>Rotors imbalance suppression by optimal control (<a href="#main" onclick="openFrame('examples/dycon-rotor-balance.html');">dycon-rotor-balance</a>)</li>
<li>Simultaneous control (<a href="#main" onclick="openFrame('examples/dycon-simultaneous-control.html');">dycon-simultaneous-control</a>)</li>
<li>Aircraft Balanced Field Length Calculation (<a href="#main" onclick="openFrame('examples/dymos-balanced-field.html');">dymos-balanced-field</a>)</li>
<li>Race Car Lap Optimization (<a href="#main" onclick="openFrame('examples/dymos-racecar.html');">dymos-racecar</a>)</li>
<li>Water rocket (<a href="#main" onclick="openFrame('examples/dymos-water-rocket.html');">dymos-water-rocket</a>)</li>
<li>Two-dimensional low-thrust Earth-to-Mars trajectory optimization (<a href="#main" onclick="openFrame('examples/earth-to-mars-a.html');">earth-to-mars-a</a>)</li>
<li>Two-dimensional solar sail Earth-to-Mars trajectory optimization (<a href="#main" onclick="openFrame('examples/earth-to-mars-b.html');">earth-to-mars-b</a>)</li>
<li>Electric Car (<a href="#main" onclick="openFrame('examples/electric-car.html');">electric-car</a>)</li>
<li>Electron Spin Flip in Minimum Time (<a href="#main" onclick="openFrame('examples/electron-spin-flip.html');">electron-spin-flip</a>)</li>
<li>E5 problem (<a href="#main" onclick="openFrame('examples/enright-hull-lindberg-c.html');">enright-hull-lindberg-c</a>)</li>
<li>Oregonator equation (<a href="#main" onclick="openFrame('examples/enright-hull-lindberg-b.html');">enright-hull-lindberg-b</a>)</li>
<li>Robertson equation (<a href="#main" onclick="openFrame('examples/enright-hull-lindberg-a.html');">enright-hull-lindberg-a</a>)</li>
<li>Fed-batch Reactor For Ethanol Production (<a href="#main" onclick="openFrame('examples/ethanol.html');">ethanol</a>)</li>
<li>Linearization of the F-16 model (<a href="#main" onclick="openFrame('examples/f16-nonlinear-linearization.html');">f16-nonlinear-linearization</a>)</li>
<li>Non-linear F-16 model (<a href="#main" onclick="openFrame('examples/f16-nonlinear.html');">f16-nonlinear</a>)</li>
<li>Vertical takeoff and vertical landing reusable rockets (<a href="#main" onclick="openFrame('examples/falcon9-launcher.html');">falcon9-launcher</a>)</li>
<li>Flying Capacitor Converters (<a href="#main" onclick="openFrame('examples/fcc-converter.html');">fcc-converter</a>)</li>
<li>A Batch Beer Fermentation Process (<a href="#main" onclick="openFrame('examples/fermentor-beer.html');">fermentor-beer</a>)</li>
<li>Four tank process (<a href="#main" onclick="openFrame('examples/four-tank.html');">four-tank</a> | <a href="#main" onclick="openFrame('examples/four-tank2.html');">four-tank2</a>)</li>
<li>A simple fractional order control problem (<a href="#main" onclick="openFrame('examples/fractional-a1.html');">fractional-a1</a> | <a href="#main" onclick="openFrame('examples/fractional-a2.html');">fractional-a2</a> | <a href="#main" onclick="openFrame('examples/fractional-b1.html');">fractional-b1</a> | <a href="#main" onclick="openFrame('examples/fractional-b2.html');">fractional-b2</a>)</li>
<li>Fractional bang-bang problem (<a href="#main" onclick="openFrame('examples/fractional-optctrl-b.html');">fractional-optctrl-b</a>)</li>
<li>Linear time-varying problem (<a href="#main" onclick="openFrame('examples/fractional-optctrl-a.html');">fractional-optctrl-a</a>)</li>
<li>Graham and Lathrop polynomials (<a href="#main" onclick="openFrame('examples/graham-lathrop.html');">graham-lathrop</a>)</li>
<li>Gravity Turn Maneuver (<a href="#main" onclick="openFrame('examples/gravity.html');">gravity</a>)</li>
<li>Helicopter model (<a href="#main" onclick="openFrame('examples/helicopter.html');">helicopter</a>)</li>
<li>An example from Herber’s PhD thesis (<a href="#main" onclick="openFrame('examples/herber.html');">herber</a>)</li>
<li>High-altitude long-endurance solar aircraft trajectories under station-keeping constraints (<a href="#main" onclick="openFrame('examples/high-altitude-solar-aircraft-a.html');">high-altitude-solar-aircraft-a</a> | <a href="#main" onclick="openFrame('examples/high-altitude-solar-aircraft-b.html');">high-altitude-solar-aircraft-b</a> | <a href="#main" onclick="openFrame('examples/high-altitude-solar-aircraft-c.html');">high-altitude-solar-aircraft-c</a>)</li>
<li>Human Immunodeficiency Virus (<a href="#main" onclick="openFrame('examples/hiv.html');">hiv</a>)</li>
<li>Huygens’s pendulums (<a href="#main" onclick="openFrame('examples/huygens.html');">huygens</a>)</li>
<li>Innate Immune Response (<a href="#main" onclick="openFrame('examples/immune-response.html');">immune-response</a>)</li>
<li>SEIR Model for the Control of Infectious Diseases (<a href="#main" onclick="openFrame('examples/infectious-diseases.html');">infectious-diseases</a>)</li>
<li>Swing-up problem for acrobot (<a href="#main" onclick="openFrame('examples/kelly-acrobot.html');">kelly-acrobot</a>)</li>
<li>A simple model of walking (<a href="#main" onclick="openFrame('examples/kelly-simple-walker.html');">kelly-simple-walker</a>)</li>
<li>A simple Lambert problem (<a href="#main" onclick="openFrame('examples/lambert.html');">lambert</a>)</li>
<li>Planetary descent of a spacecraft (<a href="#main" onclick="openFrame('examples/lander-12dof.html');">lander-12dof</a> | <a href="#main" onclick="openFrame('examples/lander-6dof.html');">lander-6dof</a> | <a href="#main" onclick="openFrame('examples/lander-basic.html');">lander-basic</a> | <a href="#main" onclick="openFrame('examples/lander-quadrotor.html');">lander-quadrotor</a> | <a href="#main" onclick="openFrame('examples/lander-reaction-wheel.html');">lander-reaction-wheel</a> | <a href="#main" onclick="openFrame('examples/lander-thrusters.html');">lander-thrusters</a>)</li>
<li>Car problem (<a href="#main" onclick="openFrame('examples/liu-chen-hu-b.html');">liu-chen-hu-b</a>)</li>
<li>Catalyst Mixing Problem (<a href="#main" onclick="openFrame('examples/liu-chen-hu-a.html');">liu-chen-hu-a</a>)</li>
<li>Parallel reaction in tubular reactor (<a href="#main" onclick="openFrame('examples/liu-chen-hu-c.html');">liu-chen-hu-c</a>)</li>
<li>Unconstrained mathematical system (<a href="#main" onclick="openFrame('examples/liu-chen-hu-d.html');">liu-chen-hu-d</a>)</li>
<li>Lotka Experimental Design (<a href="#main" onclick="openFrame('examples/lotka-design.html');">lotka-design</a>)</li>
<li>Lotka Volterra fishing problem (<a href="#main" onclick="openFrame('examples/lotka-volterra-fishing.html');">lotka-volterra-fishing</a>)</li>
<li>Infinite horizontal optimization (<a href="#main" onclick="openFrame('examples/mathoverflow-a.html');">mathoverflow-a</a>)</li>
<li>Mountain Car Problem (<a href="#main" onclick="openFrame('examples/mountain-car-a.html');">mountain-car-a</a> | <a href="#main" onclick="openFrame('examples/mountain-car-b1.html');">mountain-car-b1</a> | <a href="#main" onclick="openFrame('examples/mountain-car-b2.html');">mountain-car-b2</a>)</li>
<li>Multiple Satellite Trajectory Optimization (<a href="#main" onclick="openFrame('examples/multi-sat-traj-a.html');">multi-sat-traj-a</a> | <a href="#main" onclick="openFrame('examples/multi-sat-traj-b.html');">multi-sat-traj-b</a> | <a href="#main" onclick="openFrame('examples/multi-sat-traj-c.html');">multi-sat-traj-c</a> | <a href="#main" onclick="openFrame('examples/multi-sat-traj-d.html');">multi-sat-traj-d</a>)</li>
<li>Optimal control of acute myeloid leukaemia (<a href="#main" onclick="openFrame('examples/myeloid-leukaemia.html');">myeloid-leukaemia</a>)</li>
<li>Non-linear beam with bounded deflection (<a href="#main" onclick="openFrame('examples/non-linear-beam.html');">non-linear-beam</a>)</li>
<li>Novak-Tyson model (<a href="#main" onclick="openFrame('examples/novak-tyson.html');">novak-tyson</a>)</li>
<li>Optimal observer of a paper machine headbox (<a href="#main" onclick="openFrame('examples/optimal-observer-paper.html');">optimal-observer-paper</a>)</li>
<li>Elastic beam fixed on a moving cart and carrying lumped tip mass (<a href="#main" onclick="openFrame('examples/pde-beam-mass-cart-a.html');">pde-beam-mass-cart-a</a> | <a href="#main" onclick="openFrame('examples/pde-beam-mass-cart-b.html');">pde-beam-mass-cart-b</a> | <a href="#main" onclick="openFrame('examples/pde-beam-mass-cart-c.html');">pde-beam-mass-cart-c</a>)</li>
<li>Burgers’ equation (<a href="#main" onclick="openFrame('examples/pde-burgers.html');">pde-burgers</a>)</li>
<li>An optimal control problem arised in ecology (<a href="#main" onclick="openFrame('examples/pde-ecology.html');">pde-ecology</a> | <a href="#main" onclick="openFrame('examples/pde-ecology2.html');">pde-ecology2</a>)</li>
<li>Heat Diffusion Process with Inequality (<a href="#main" onclick="openFrame('examples/pde-heat-b.html');">pde-heat-b</a>)</li>
<li>Heat equation (<a href="#main" onclick="openFrame('examples/pde-heat-a.html');">pde-heat-a</a> | <a href="#main" onclick="openFrame('examples/pde-heat-a2.html');">pde-heat-a2</a>)</li>
<li>A Portfolio Optimization Problem (<a href="#main" onclick="openFrame('examples/pde-stochastic-portfolio.html');">pde-stochastic-portfolio</a>)</li>
<li>Pendulum robust control (<a href="#main" onclick="openFrame('examples/pendulum-robust-a.html');">pendulum-robust-a</a> | <a href="#main" onclick="openFrame('examples/pendulum-robust-b.html');">pendulum-robust-b</a>)</li>
<li>Fed-batch Fermenter For Penicillin Production (<a href="#main" onclick="openFrame('examples/penicillin.html');">penicillin</a>)</li>
<li>Microalgae photoacclimation as an optimal control problem of resource allocation (<a href="#main" onclick="openFrame('examples/photoacclimation-a.html');">photoacclimation-a</a> | <a href="#main" onclick="openFrame('examples/photoacclimation-b.html');">photoacclimation-b</a>)</li>
<li>Production of Secreted Protein in a Fed-batch Reactor (<a href="#main" onclick="openFrame('examples/protein-a.html');">protein-a</a> | <a href="#main" onclick="openFrame('examples/protein-b.html');">protein-b</a> | <a href="#main" onclick="openFrame('examples/protein-c.html');">protein-c</a>)</li>
<li>Trajectory Optimisation for a Quadrotor Helicopter (<a href="#main" onclick="openFrame('examples/quadrotor-helicopter-a.html');">quadrotor-helicopter-a</a> | <a href="#main" onclick="openFrame('examples/quadrotor-helicopter-b.html');">quadrotor-helicopter-b</a>)</li>
<li>Reachable set (<a href="#main" onclick="openFrame('examples/reachable-set-a.html');">reachable-set-a</a> | <a href="#main" onclick="openFrame('examples/reachable-set-b.html');">reachable-set-b</a> | <a href="#main" onclick="openFrame('examples/reachable-set-c.html');">reachable-set-c</a>)</li>
<li>A Continuous Tank Reactor (<a href="#main" onclick="openFrame('examples/reactor-simul.html');">reactor-simul</a>)</li>
<li>Optimal control of the heel angle of a rocket (<a href="#main" onclick="openFrame('examples/rocket-heel.html');">rocket-heel</a>)</li>
<li>Rubella Disease (<a href="#main" onclick="openFrame('examples/rubella.html');">rubella</a>)</li>
<li>Modelling and Optimal Control of a Sailboat (<a href="#main" onclick="openFrame('examples/sailboat-a.html');">sailboat-a</a> | <a href="#main" onclick="openFrame('examples/sailboat-b.html');">sailboat-b</a>)</li>
<li>Time optimal low-thrust planar transfer to a geosynchronous orbit (<a href="#main" onclick="openFrame('examples/satellite.html');">satellite</a>)</li>
<li>Designing optimal spacecraft formations (<a href="#main" onclick="openFrame('examples/satellite-swarms-a.html');">satellite-swarms-a</a> | <a href="#main" onclick="openFrame('examples/satellite-swarms-b.html');">satellite-swarms-b</a>)</li>
<li>A Stochastic Renewable Resource Valuation Problem (<a href="#main" onclick="openFrame('examples/sde-forestry-lsmc.html');">sde-forestry-lsmc</a> | <a href="#main" onclick="openFrame('examples/sde-forestry.html');">sde-forestry</a>)</li>
<li>Standard linear-quadratic stochastic regulator (<a href="#main" onclick="openFrame('examples/sde-lqsr.html');">sde-lqsr</a>)</li>
<li>A simplified Merton’s portfolio model (<a href="#main" onclick="openFrame('examples/sde-merton.html');">sde-merton</a>)</li>
<li>Nonlinear-quadratic stochastic regulator (<a href="#main" onclick="openFrame('examples/sde-nlqsr-a.html');">sde-nlqsr-a</a> | <a href="#main" onclick="openFrame('examples/sde-nlqsr-b.html');">sde-nlqsr-b</a> | <a href="#main" onclick="openFrame('examples/sde-nlqsr-b2.html');">sde-nlqsr-b2</a> | <a href="#main" onclick="openFrame('examples/sde-nlqsr-c.html');">sde-nlqsr-c</a> | <a href="#main" onclick="openFrame('examples/sde-nlqsr-d.html');">sde-nlqsr-d</a> | <a href="#main" onclick="openFrame('examples/sde-nlqsr-e.html');">sde-nlqsr-e</a>)</li>
<li>Silverbox Parameters Estimation (<a href="#main" onclick="openFrame('examples/silverbox-lse.html');">silverbox-lse</a> | <a href="#main" onclick="openFrame('examples/silverbox-mle-a.html');">silverbox-mle-a</a>)</li>
<li>Integration with a singularity (<a href="#main" onclick="openFrame('examples/singularity.html');">singularity</a>)</li>
<li>A nonlinear optimal control problem (<a href="#main" onclick="openFrame('examples/skandari-a.html');">skandari-a</a> | <a href="#main" onclick="openFrame('examples/skandari-b.html');">skandari-b</a> | <a href="#main" onclick="openFrame('examples/skandari-c.html');">skandari-c</a>)</li>
<li>Closed loop control for a sliding mass system (<a href="#main" onclick="openFrame('examples/sliding-mass.html');">sliding-mass</a>)</li>
<li>Soft Lunar Landing (<a href="#main" onclick="openFrame('examples/soft-lunar-landing.html');">soft-lunar-landing</a>)</li>
<li>System of ODEs with integral constraints (<a href="#main" onclick="openFrame('examples/stackexchange-a.html');">stackexchange-a</a>)</li>
<li>An optimal control problem (<a href="#main" onclick="openFrame('examples/stackexchange-b.html');">stackexchange-b</a> | <a href="#main" onclick="openFrame('examples/stackexchange-c1.html');">stackexchange-c1</a> | <a href="#main" onclick="openFrame('examples/stackexchange-c2.html');">stackexchange-c2</a>)</li>
<li>Optimal fishing plan (<a href="#main" onclick="openFrame('examples/stackexchange-d.html');">stackexchange-d</a>)</li>
<li>A minimum travel time problem (<a href="#main" onclick="openFrame('examples/stackexchange-e1.html');">stackexchange-e1</a> | <a href="#main" onclick="openFrame('examples/stackexchange-e2.html');">stackexchange-e2</a>)</li>
<li>Minimum travel time between two sets (<a href="#main" onclick="openFrame('examples/stackexchange-f1.html');">stackexchange-f1</a> | <a href="#main" onclick="openFrame('examples/stackexchange-f2.html');">stackexchange-f2</a>)</li>
<li>An optimal control problem (<a href="#main" onclick="openFrame('examples/stackexchange-g.html');">stackexchange-g</a>)</li>
<li>Optimizing the ratio between two differential equations (<a href="#main" onclick="openFrame('examples/stackexchange-h.html');">stackexchange-h</a>)</li>
<li>Nonlinear system with time-optimal control (<a href="#main" onclick="openFrame('examples/stackexchange-i.html');">stackexchange-i</a>)</li>
<li>UAV stochastic path planning problem (<a href="#main" onclick="openFrame('examples/sto-uav-a.html');">sto-uav-a</a> | <a href="#main" onclick="openFrame('examples/sto-uav-b.html');">sto-uav-b</a> | <a href="#main" onclick="openFrame('examples/sto-uav-c.html');">sto-uav-c</a>)</li>
<li>UGV stochastic path planning problem (<a href="#main" onclick="openFrame('examples/sto-ugv1.html');">sto-ugv1</a> | <a href="#main" onclick="openFrame('examples/sto-ugv2.html');">sto-ugv2</a>)</li>
<li>Timing a stoplight just right (<a href="#main" onclick="openFrame('examples/stoplight.html');">stoplight</a> | <a href="#main" onclick="openFrame('examples/stoplight2.html');">stoplight2</a>)</li>
<li>Regulation of a synchronous machine (<a href="#main" onclick="openFrame('examples/synchro-machine-a.html');">synchro-machine-a</a> | <a href="#main" onclick="openFrame('examples/synchro-machine-b.html');">synchro-machine-b</a> | <a href="#main" onclick="openFrame('examples/synchro-machine-c.html');">synchro-machine-c</a>)</li>
<li>Two coupled synchronous machines (<a href="#main" onclick="openFrame('examples/synchro-machine-d.html');">synchro-machine-d</a>)</li>
<li>Time Optimal Car (<a href="#main" onclick="openFrame('examples/time-optimal-car-a.html');">time-optimal-car-a</a> | <a href="#main" onclick="openFrame('examples/time-optimal-car-b.html');">time-optimal-car-b</a>)</li>
<li>A PID Transfer function (<a href="#main" onclick="openFrame('examples/transfer-fun-h.html');">transfer-fun-h</a>)</li>
<li>Optimal PID (<a href="#main" onclick="openFrame('examples/transfer-fun-i.html');">transfer-fun-i</a>)</li>
<li>Transfer function (<a href="#main" onclick="openFrame('examples/transfer-fun-a.html');">transfer-fun-a</a> | <a href="#main" onclick="openFrame('examples/transfer-fun-b.html');">transfer-fun-b</a> | <a href="#main" onclick="openFrame('examples/transfer-fun-b2.html');">transfer-fun-b2</a> | <a href="#main" onclick="openFrame('examples/transfer-fun-c.html');">transfer-fun-c</a> | <a href="#main" onclick="openFrame('examples/transfer-fun-d.html');">transfer-fun-d</a> | <a href="#main" onclick="openFrame('examples/transfer-fun-e.html');">transfer-fun-e</a> | <a href="#main" onclick="openFrame('examples/transfer-fun-f.html');">transfer-fun-f</a> | <a href="#main" onclick="openFrame('examples/transfer-fun-g.html');">transfer-fun-g</a>)</li>
<li>Governance of a two-link manipulator (<a href="#main" onclick="openFrame('examples/two-link-manipulator.html');">two-link-manipulator</a>)</li>
<li>Electric power generation with underwater kite systems (<a href="#main" onclick="openFrame('examples/underwater-kite.html');">underwater-kite</a>)</li>
<li>Van der Pol (<a href="#main" onclick="openFrame('examples/vanderpol.html');">vanderpol</a>)</li>
<li>Optimal Control of Wave Energy Converters (<a href="#main" onclick="openFrame('examples/wec-a1.html');">wec-a1</a> | <a href="#main" onclick="openFrame('examples/wec-a2.html');">wec-a2</a> | <a href="#main" onclick="openFrame('examples/wec-b1.html');">wec-b1</a>)</li>
<li>Open loop control scheme for a wind turbine generator (<a href="#main" onclick="openFrame('examples/wtgen.html');">wtgen</a>)</li>
<li>Greenhouse Climate Control (<a href="#main" onclick="openFrame('examples/yop-greenhouse.html');">yop-greenhouse</a>)</li>
</ul>
<h4 class="compact">Simulation</h4><!--simc-->
<ul>
<li>Simulation of a Jojo (<a href="#main" onclick="openFrame('examples/sim-acado-jojo.html');">sim-acado-jojo</a>)</li>
<li>The Aizawa attractor (<a href="#main" onclick="openFrame('examples/sim-aizawa.html');">sim-aizawa</a>)</li>
<li>The bouncing ball problem (<a href="#main" onclick="openFrame('examples/sim-bball.html');">sim-bball</a>)</li>
<li>The non-linear Coupled Pendulum (<a href="#main" onclick="openFrame('examples/sim-coupled-pendulum.html');">sim-coupled-pendulum</a>)</li>
<li>Implementation of a digital regulator (<a href="#main" onclick="openFrame('examples/sim-digital-regulator-a.html');">sim-digital-regulator-a</a> | <a href="#main" onclick="openFrame('examples/sim-digital-regulator-a2.html');">sim-digital-regulator-a2</a> | <a href="#main" onclick="openFrame('examples/sim-digital-regulator-a3.html');">sim-digital-regulator-a3</a> | <a href="#main" onclick="openFrame('examples/sim-digital-regulator-b.html');">sim-digital-regulator-b</a> | <a href="#main" onclick="openFrame('examples/sim-digital-regulator-b2.html');">sim-digital-regulator-b2</a> | <a href="#main" onclick="openFrame('examples/sim-digital-regulator-c.html');">sim-digital-regulator-c</a> | <a href="#main" onclick="openFrame('examples/sim-digital-regulator-d.html');">sim-digital-regulator-d</a>)</li>
<li>Evolution of an epidemic of bubonic plague (<a href="#main" onclick="openFrame('examples/sim-epidemic.html');">sim-epidemic</a>)</li>
<li>Optimization of fedbatch bioreactors by adaptive extremum seeking control (<a href="#main" onclick="openFrame('examples/sim-fedbatch-bioreactor-a.html');">sim-fedbatch-bioreactor-a</a> | <a href="#main" onclick="openFrame('examples/sim-fedbatch-bioreactor-b.html');">sim-fedbatch-bioreactor-b</a>)</li>
<li>Fitzhugh-Nagumo problem (<a href="#main" onclick="openFrame('examples/sim-fitzhugh-nagumo.html');">sim-fitzhugh-nagumo</a>)</li>
<li>Four tank process (<a href="#main" onclick="openFrame('examples/sim-four-tank.html');">sim-four-tank</a>)</li>
<li>Low-Thrust Orbit Transfer Example (<a href="#main" onclick="openFrame('examples/sim-gpops-low-thrust-orbit.html');">sim-gpops-low-thrust-orbit</a>)</li>
<li>Huygens’s pendulums (<a href="#main" onclick="openFrame('examples/sim-huygens.html');">sim-huygens</a>)</li>
<li>Infinite Horizon Optimal Control Problem (<a href="#main" onclick="openFrame('examples/sim-infinite-horizon.html');">sim-infinite-horizon</a>)</li>
<li>The Lorenz model (<a href="#main" onclick="openFrame('examples/sim-lorenz.html');">sim-lorenz</a>)</li>
<li>Lotka-Volterra problem (<a href="#main" onclick="openFrame('examples/sim-lotka-volterra.html');">sim-lotka-volterra</a>)</li>
<li>MPC control of a citation aircraft (<a href="#main" onclick="openFrame('examples/sim-mpc-aircraft-a.html');">sim-mpc-aircraft-a</a> | <a href="#main" onclick="openFrame('examples/sim-mpc-aircraft-b.html');">sim-mpc-aircraft-b</a>)</li>
<li>MPC control of a paper machine headbox (<a href="#main" onclick="openFrame('examples/sim-mpc-paper-a.html');">sim-mpc-paper-a</a> | <a href="#main" onclick="openFrame('examples/sim-mpc-paper-b.html');">sim-mpc-paper-b</a> | <a href="#main" onclick="openFrame('examples/sim-mpc-paper-c.html');">sim-mpc-paper-c</a> | <a href="#main" onclick="openFrame('examples/sim-mpc-paper-d.html');">sim-mpc-paper-d</a>)</li>
<li>NMPC control scheme for a wind turbine generator (<a href="#main" onclick="openFrame('examples/sim-mpc-wtgen.html');">sim-mpc-wtgen</a>)</li>
<li>Novak-Tyson model (<a href="#main" onclick="openFrame('examples/sim-novak-tyson.html');">sim-novak-tyson</a>)</li>
<li>Pleiades problem (<a href="#main" onclick="openFrame('examples/sim-pleiades.html');">sim-pleiades</a>)</li>
<li>Optimal Continuous Control of Primary Coolant Temperature in a Nuclear Plant (<a href="#main" onclick="openFrame('examples/sim-pwr-d.html');">sim-pwr-d</a>)</li>
<li>Optimal Discrete Control of Primary Coolant Temperature in a Nuclear Plant (<a href="#main" onclick="openFrame('examples/sim-pwr-e.html');">sim-pwr-e</a>)</li>
<li>Regulation of the Steam Generator of a Nuclear Power Plant (<a href="#main" onclick="openFrame('examples/sim-pwr-a.html');">sim-pwr-a</a> | <a href="#main" onclick="openFrame('examples/sim-pwr-b.html');">sim-pwr-b</a> | <a href="#main" onclick="openFrame('examples/sim-pwr-c.html');">sim-pwr-c</a>)</li>
<li>The Rabinovich-Fabrikant equations (<a href="#main" onclick="openFrame('examples/sim-rabinovich-fabrikant.html');">sim-rabinovich-fabrikant</a>)</li>
<li>Rigid Body problem (<a href="#main" onclick="openFrame('examples/sim-rigid-body.html');">sim-rigid-body</a>)</li>
<li>The Rossler equations (<a href="#main" onclick="openFrame('examples/sim-rossler.html');">sim-rossler</a>)</li>
<li>A Mean-Reverting Square-Root Process (<a href="#main" onclick="openFrame('examples/sim-sde-mrsrp.html');">sim-sde-mrsrp</a>)</li>
<li>Consensus-based global optimization (<a href="#main" onclick="openFrame('examples/sim-sde-gloptim-a.html');">sim-sde-gloptim-a</a> | <a href="#main" onclick="openFrame('examples/sim-sde-gloptim-b.html');">sim-sde-gloptim-b</a> | <a href="#main" onclick="openFrame('examples/sim-sde-gloptim-c.html');">sim-sde-gloptim-c</a>)</li>
<li>Simple stochastic differential equation (<a href="#main" onclick="openFrame('examples/sim-sde-wiener.html');">sim-sde-wiener</a>)</li>
<li>The London Brent crude oil spot price (<a href="#main" onclick="openFrame('examples/sim-sde-london-brent.html');">sim-sde-london-brent</a>)</li>
<li>The NBP natural gas spot price (<a href="#main" onclick="openFrame('examples/sim-sde-nbp-a.html');">sim-sde-nbp-a</a> | <a href="#main" onclick="openFrame('examples/sim-sde-nbp-b.html');">sim-sde-nbp-b</a>)</li>
<li>Vasicek Short Rate Model (<a href="#main" onclick="openFrame('examples/sim-sde-short-rate.html');">sim-sde-short-rate</a>)</li>
<li>A problem from StackExchange (<a href="#main" onclick="openFrame('examples/sim-stackexchange-a.html');">sim-stackexchange-a</a>)</li>
<li>Stiff (<a href="#main" onclick="openFrame('examples/sim-stiff-a.html');">sim-stiff-a</a>)</li>
<li>The Prothero-Robinson stiff ODE model (<a href="#main" onclick="openFrame('examples/sim-stiff-b.html');">sim-stiff-b</a>)</li>
<li>A Portfolio Simulation Problem (<a href="#main" onclick="openFrame('examples/sim-stochastic-portfolio.html');">sim-stochastic-portfolio</a>)</li>
<li>Simulation of the Stochastic Optimal Control of a Sailboat (<a href="#main" onclick="openFrame('examples/sim-stochastic-sailing-a.html');">sim-stochastic-sailing-a</a> | <a href="#main" onclick="openFrame('examples/sim-stochastic-sailing-b.html');">sim-stochastic-sailing-b</a>)</li>
<li>Three Body problem (<a href="#main" onclick="openFrame('examples/sim-three-body.html');">sim-three-body</a>)</li>
<li>Transfer function (<a href="#main" onclick="openFrame('examples/sim-transfer-fun-a.html');">sim-transfer-fun-a</a> | <a href="#main" onclick="openFrame('examples/sim-transfer-fun-b.html');">sim-transfer-fun-b</a>)</li>
<li>Vaccine (<a href="#main" onclick="openFrame('examples/sim-vaccine.html');">sim-vaccine</a>)</li>
</ul>
<h3 id="dynadisc">DYNA example problems for discrete time</h3><!--dynad-->
<h4>Optimal control</h4><!--dynad-->
<ul>
<li>A system with autonomous switches (<a href="#main" onclick="openFrame('examples/autonomous-switch-a.html');">autonomous-switch-a</a>)</li>
<li>Optimal Growth Model (<a href="#main" onclick="openFrame('examples/compecon-demdp07-b.html');">compecon-demdp07-b</a> | <a href="#main" onclick="openFrame('examples/compecon-demdp07-c.html');">compecon-demdp07-c</a>)</li>
<li>Optimization of a digital regulator (<a href="#main" onclick="openFrame('examples/digital-regulator-a.html');">digital-regulator-a</a> | <a href="#main" onclick="openFrame('examples/digital-regulator-b.html');">digital-regulator-b</a>)</li>
<li>The consumption-saving problem (<a href="#main" onclick="openFrame('examples/dolo-consumption-saving-a.html');">dolo-consumption-saving-a</a> | <a href="#main" onclick="openFrame('examples/dolo-consumption-saving-b.html');">dolo-consumption-saving-b</a>)</li>
<li>Double Tank Model Parameters Identification (<a href="#main" onclick="openFrame('examples/double-tank-id-b.html');">double-tank-id-b</a>)</li>
<li>A Hydropower Planning Model (<a href="#main" onclick="openFrame('examples/hydro-planning-b-sim-a.html');">hydro-planning-b-sim-a</a> | <a href="#main" onclick="openFrame('examples/hydro-planning-b-sim-b.html');">hydro-planning-b-sim-b</a>)</li>
<li>A two reach river pollution control (<a href="#main" onclick="openFrame('examples/river.html');">river</a>)</li>
<li>Standard linear-quadratic stochastic regulator (<a href="#main" onclick="openFrame('examples/sde-lqsr2.html');">sde-lqsr2</a>)</li>
<li>Silverbox Parameters Estimation (<a href="#main" onclick="openFrame('examples/silverbox-mle-b.html');">silverbox-mle-b</a> | <a href="#main" onclick="openFrame('examples/silverbox-mle-c.html');">silverbox-mle-c</a>)</li>
</ul>
<h4 class="compact">Simulation</h4><!--simd-->
<ul>
<li>Optimal Growth Model - Simulation (<a href="#main" onclick="openFrame('examples/sim-compecon-demdp07-a.html');">sim-compecon-demdp07-a</a>)</li>
<li>Discrete simulation of a continuous transfer function (<a href="#main" onclick="openFrame('examples/sim-continuous.html');">sim-continuous</a>)</li>
<li>Digital regulator for a system (<a href="#main" onclick="openFrame('examples/sim-ddigital-regulator-a.html');">sim-ddigital-regulator-a</a> | <a href="#main" onclick="openFrame('examples/sim-ddigital-regulator-a2.html');">sim-ddigital-regulator-a2</a> | <a href="#main" onclick="openFrame('examples/sim-ddigital-regulator-b.html');">sim-ddigital-regulator-b</a> | <a href="#main" onclick="openFrame('examples/sim-ddigital-regulator-b2.html');">sim-ddigital-regulator-b2</a>)</li>
<li>Simple discrete stochastic equation (<a href="#main" onclick="openFrame('examples/sim-dse-wiener.html');">sim-dse-wiener</a>)</li>
<li>A two reach river pollution control (<a href="#main" onclick="openFrame('examples/sim-river.html');">sim-river</a>)</li>
<li>Tinkerbell map (<a href="#main" onclick="openFrame('examples/sim-tinkerbell.html');">sim-tinkerbell</a>)</li>
</ul>
<h3 id="dynanone">DYNA other example problems</h3><!--dynan-->
<h4>Optimal control</h4><!--dynan-->
<ul>
<li>Deterministic Brock-Mirman Growth Model Using a Chebyshev Polynomial Approximation (<a href="#main" onclick="openFrame('examples/brockmirman-a.html');">brockmirman-a</a>)</li>
<li>Stochastic Brock-Mirman Growth Model Using a Chebyshev Polynomial Approximation (<a href="#main" onclick="openFrame('examples/brockmirman-b.html');">brockmirman-b</a>)</li>
<li>N-Sector Stochastic Brock-Mirman Growth Model Using a Chebyshev Polynomial Approximation (<a href="#main" onclick="openFrame('examples/brockmirman-c.html');">brockmirman-c</a> | <a href="#main" onclick="openFrame('examples/brockmirman-d.html');">brockmirman-d</a>)</li>
<li>N-Sector Stochastic Brock-Mirman Growth Model Using a Smolyak Approximation (<a href="#main" onclick="openFrame('examples/brockmirman-e.html');">brockmirman-e</a> | <a href="#main" onclick="openFrame('examples/brockmirman-e2.html');">brockmirman-e2</a>)</li>
<li>Timber Harvesting (<a href="#main" onclick="openFrame('examples/compecon-demdp01-a.html');">compecon-demdp01-a</a> | <a href="#main" onclick="openFrame('examples/compecon-demdp01-b.html');">compecon-demdp01-b</a> | <a href="#main" onclick="openFrame('examples/compecon-demdp01-c.html');">compecon-demdp01-c</a>)</li>
<li>Optimal Growth Model (<a href="#main" onclick="openFrame('examples/compecon-demdp07-a.html');">compecon-demdp07-a</a>)</li>
<li>Renewable Resource Model (<a href="#main" onclick="openFrame('examples/compecon-demdp08.html');">compecon-demdp08</a>)</li>
<li>The consumption-saving problem (<a href="#main" onclick="openFrame('examples/dolo-consumption-saving-c.html');">dolo-consumption-saving-c</a> | <a href="#main" onclick="openFrame('examples/dolo-consumption-saving-d.html');">dolo-consumption-saving-d</a>)</li>
<li>A Hydropower Planning Model (<a href="#main" onclick="openFrame('examples/hydro-planning-a.html');">hydro-planning-a</a> | <a href="#main" onclick="openFrame('examples/hydro-planning-b.html');">hydro-planning-b</a> | <a href="#main" onclick="openFrame('examples/hydro-planning-b2.html');">hydro-planning-b2</a>)</li>
<li>Stochastic Optimal Control of a Sailboat (<a href="#main" onclick="openFrame('examples/stochastic-sailing.html');">stochastic-sailing</a>)</li>
</ul>
<h4 class="compact">Simulation</h4><!--simn-->
<ul>
</ul>
<h3 id="tutor">DYNA tutorial library</h3><!--tutor-->
<ul>
<li>Closed Loop Control for a Sliding Mass System (<a href="#main" onclick="openFrame('examples/tutor-a.html');">tutor-a</a>)</li>
<li>Car Problem (<a href="#main" onclick="openFrame('examples/tutor-b.html');">tutor-b</a>)</li>
<li>Goddard Rocket (<a href="#main" onclick="openFrame('examples/tutor-c.html');">tutor-c</a>)</li>
<li>Infinite Horizon Optimal Control Problem (<a href="#main" onclick="openFrame('examples/tutor-d.html');">tutor-d</a>)</li>
<li>Minimum Time-to-Climb of a Supersonic Aircraft (<a href="#main" onclick="openFrame('examples/tutor-e.html');">tutor-e</a>)</li>
<li>Methanol to Hydrocarbons Conversion (<a href="#main" onclick="openFrame('examples/tutor-f.html');">tutor-f</a>)</li>
<li>Optimal Control of a Jojo (<a href="#main" onclick="openFrame('examples/tutor-g.html');">tutor-g</a>)</li>
<li>Binary Variant of the Van der Pol Oscillator (<a href="#main" onclick="openFrame('examples/tutor-h.html');">tutor-h</a>)</li>
<li>Heat Equation (<a href="#main" onclick="openFrame('examples/tutor-i.html');">tutor-i</a>)</li>
<li>A Two Reach River Pollution Control (<a href="#main" onclick="openFrame('examples/tutor-j.html');">tutor-j</a>)</li>
<li>Three Body problem (<a href="#main" onclick="openFrame('examples/tutor-k-dae-multi-phase.html');">tutor-k-dae-multi-phase</a> | <a href="#main" onclick="openFrame('examples/tutor-k-dae.html');">tutor-k-dae</a> | <a href="#main" onclick="openFrame('examples/tutor-k-ode.html');">tutor-k-ode</a>)</li>
</ul>
<h3 id="gams">DYNA tutorial models translated to GAMS</h3>
<ul>
<li>Closed Loop Control for a Sliding Mass System (
<a href="#main" onclick="openFrame('examples/tutor-a.gms.html');">tutor-a.gms</a>
| <a href="#main" onclick="openFrame('examples/tutor-a.lst.html');">tutor-a.lst</a>)</li>
<li>Car Problem (
<a href="#main" onclick="openFrame('examples/tutor-b.gms.html');">tutor-b.gms</a>
| <a href="#main" onclick="openFrame('examples/tutor-b.lst.html');">tutor-b.lst</a>)</li>
<li>Goddard Rocket (
<a href="#main" onclick="openFrame('examples/tutor-c.gms.html');">tutor-c.gms</a>
| <a href="#main" onclick="openFrame('examples/tutor-c.lst.html');">tutor-c.lst</a>)</li>
<li>Infinite Horizon Optimal Control Problem (
<a href="#main" onclick="openFrame('examples/tutor-d.gms.html');">tutor-d.gms</a>
| <a href="#main" onclick="openFrame('examples/tutor-d.lst.html');">tutor-d.lst</a>)</li>
<li>Minimum Time-to-Climb of a Supersonic Aircraft (<a href="#main" onclick="openFrame('examples/tutor-e.gms.html');">tutor-e.gms</a>)</li>
<li>Methanol to Hydrocarbons Conversion (
<a href="#main" onclick="openFrame('examples/tutor-f.gms.html');">tutor-f.gms</a>
| <a href="#main" onclick="openFrame('examples/tutor-f.lst.html');">tutor-f.lst</a>)</li>
<li>Optimal Control of a Jojo (
<a href="#main" onclick="openFrame('examples/tutor-g.gms.html');">tutor-g.gms</a>
| <a href="#main" onclick="openFrame('examples/tutor-g.lst.html');">tutor-g.lst</a>)</li>
<li>Binary Variant of the Van der Pol Oscillator (
<a href="#main" onclick="openFrame('examples/tutor-h.gms.html');">tutor-h.gms</a>
| <a href="#main" onclick="openFrame('examples/tutor-h.lst.html');">tutor-h.lst</a>)</li>
<li>Heat Equation (
<a href="#main" onclick="openFrame('examples/tutor-i.gms.html');">tutor-i.gms</a>
| <a href="#main" onclick="openFrame('examples/tutor-i.lst.html');">tutor-i.lst</a>)</li>
<li>A Two Reach River Pollution Control (
<a href="#main" onclick="openFrame('examples/tutor-j.gms.html');">tutor-j.gms</a>
| <a href="#main" onclick="openFrame('examples/tutor-j.lst.html');">tutor-j.lst</a>)</li>
<li>Three Body problem (<a href="#main" onclick="openFrame('examples/tutor-k-dae-multi-phase.gms.html');">tutor-k-dae-multi-phase.gms</a> | <a href="#main" onclick="openFrame('examples/tutor-k-dae.gms.html');">tutor-k-dae.gms</a> | <a href="#main" onclick="openFrame('examples/tutor-k-ode.gms.html');">tutor-k-ode.gms</a>)</li>
</ul>
<h3 id="xref">Cross-reference of DYNA features with example models</h3>
<p>DYNA features are <a href="#main" onclick="openFrame('xref.html');">cross-referenced</a> with the aforementioned example models
to illustrate how to use them.
<h3 id="bib">Bibliography sources</h3>
<p>Most of the models described here above are drawn from the literature on optimal control and parameter estimation.
A <a href="#main" onclick="openFrame('biblio.html');">master list of bibliography sources</a> is available for your convenience.
<h3>References</h3>
<ol>
<li id="r_acado">B. Houska, H.J. Ferreau and M. Diehl,
<em>ACADO Toolkit - An open-source framework for automatic control and dynamic optimization</em>,
Optimal Control Applications and Methods, 32(3):298-312, 2011.
<li id="r_apm">J.D. Hedengren, R. Asgharzadeh Shishavan, K.M. Powell and T.F. Edgar,
<em>Nonlinear Modeling, Estimation and Predictive Control in APMonitor</em>,
Computers and Chemical Engineering, 70:133-148, 2014.
<li id="r_bocop">F. Bonnans, P. Martinon, V. Grélard,
<em>Bocop - A collection of examples</em>,
[Research Report] RR-8053, INRIA, 2012. (<a href="https://hal.inria.fr/hal-00726992" target="_blank">hal-00726992</a>)
<li id="r_cops">E.D. Dolan, J.J. Moré and T.S. Munson,
<em>Benchmarking Optimization Software with COPS 3.0</em>,
Argonne National Laboratory, Technical Report ANL/MCS-TM-273, February 2004.
<li id="r_dido">M. Ross,
<em>User’s Manual For DIDO (Ver. PR.1β): A MATLAB™ Application Package for Solving Optimal Control Problems</em>,
Naval Postgraduate School, Monterey, CA, Tech. Rep. 0401.0, February 2004.
<li id="r_dynopt">M. Čižniar, M. Fikar, M.A. Latifi,
<em>MATLAB™ Dynamic Optimisation Code DYNOPT User’s Guide</em>,
Technical Report, KIRP FCHPT STU Bratislava, Slovak Republic, 2006.
<li id="r_gpops">M.A. Patterson, A.V. Rao,
<em>GPOPS-II: A MATLAB™ Software for Solving Multiple-Phase Optimal Control Problems Using
hp-Adaptive Gaussian Quadrature Collocation Methods and Sparse Nonlinear Programming</em>,
ACM Transactions on Mathematical Software (TOMS), Volume 41 Issue 1, October 2014.
<li id="r_iclocs">P. Falugi, E. Kerrigan, E. van Wyk,
<em>Imperial College London Optimal Control Software User Guide (ICLOCS)</em>,
Department of Electrical and Electronic Engineering, Imperial College London, London England, UK, 6 May 2010.
<li id="r_muscod">H.G. Bock, K.J. Plitt,
<em>A Multiple Shooting Algorithm for Direct Solution of Optimal Control Problems</em>,
IFAC Proceedings, 17(2):1603-1608, 1984.
<li id="r_oocl">J. Koenemann, G. Licitra, M. Alp, M. Diehl,
<em>OpenOCL - Open Optimal Control Library</em>,
Robotics Science and Systems, workshop submission, extended abstract, June 2019.
<li id="r_propt">P.E. Rutquist, M.M. Edvall,
<em>PROPT - MATLAB™ Optimal Control Software
- One Of A Kind, Lightning Fast Solutions To Your Optimal Control Problems!</em>,
TOMLAB Optimization, April 26, 2010.
<li id="r_psopt">V.M. Becerra,
<em>Solving complex optimal control problems at no cost with PSOPT</em>,
Proc. IEEE Multi-conference on Systems and Control, Yokohama, Japan, pp. 1391-1396, September 7-10, 2010.
<li id="r_taco">C. Kirches, S. Leyffer,
<em>TACO -- A Toolkit for AMPL Control Optimization</em>,
Mathematical Programming Computation, 5:227-265, 2013.
<li id="r_mintoc">S. Sager,
<em>A benchmark library of mixed-integer optimal control problems</em>,
Springer, Mixed Integer Nonlinear Programming, 2012.
</ol>
</div>
</div>
</section>
</div>
<!-- Footer -->
<div id="footer">
<!-- Copyright -->
<ul class="copyright">
<li>© Alain J. Michiels. All rights reserved.</li>
<li>Original design: <a href="http://html5up.net">HTML5 UP</a></li>
<li>Banner: <a href="https://www.flickr.com/people/44494372@N05">NASA on The Commons</a></li>
</ul>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
<script type="text/javascript">
function openFrame(z) {
document.getElementById('myIframe').src = z
}
</script>
</body>
</html>