Add content folder

This commit is contained in:
2020-04-20 18:58:10 +02:00
parent 49f9a7b10b
commit df7ff35ac4
80 changed files with 20016 additions and 0 deletions

View File

@@ -0,0 +1,126 @@
+++
title = "Control Bootcamp"
author = ["Thomas Dehaeze"]
draft = false
+++
Tags
:
<https://www.youtube.com/playlist?list=PLMrJAkhIeNNR20Mz-VpzgfQs5zrYi085m>
## Overview {#overview}
## Linear Systems {#linear-systems}
## Stability and Eigenvalues {#stability-and-eigenvalues}
## Linearizing Around a Fixed Point {#linearizing-around-a-fixed-point}
## Controllability {#controllability}
## Controllability, Reachability, and Eigenvalue Placement {#controllability-reachability-and-eigenvalue-placement}
## Controllability and the Discrete-Time Impulse Response {#controllability-and-the-discrete-time-impulse-response}
## Degrees of Controllability and Gramians {#degrees-of-controllability-and-gramians}
## Controllability and the PBH Test {#controllability-and-the-pbh-test}
## Cayley-Hamilton Theorem {#cayley-hamilton-theorem}
## Reachability and Controllability with Cayley-Hamilton {#reachability-and-controllability-with-cayley-hamilton}
## Inverted Pendulum on a Cart {#inverted-pendulum-on-a-cart}
## Eigenvalue Placement for the Inverted Pendulum on a Cart {#eigenvalue-placement-for-the-inverted-pendulum-on-a-cart}
## Linear Quadratic Regulator (LQR) Control for the Inverted Pendulum on a Cart {#linear-quadratic-regulator--lqr--control-for-the-inverted-pendulum-on-a-cart}
## Motivation for Full-State Estimation {#motivation-for-full-state-estimation}
## Observability {#observability}
## Full-State Estimation {#full-state-estimation}
## Kalman Filter {#kalman-filter}
## Observability Example in Matlab {#observability-example-in-matlab}
## Observability Example in Matlab (Part 2) {#observability-example-in-matlab--part-2}
## Kalman Filter Example in Matlab {#kalman-filter-example-in-matlab}
## Linear Quadratic Gaussian (LQG) {#linear-quadratic-gaussian--lqg}
## LQG Example in Matlab {#lqg-example-in-matlab}
## Introduction to Robust Control {#introduction-to-robust-control}
## Three Equivalent Representations of Linear Systems {#three-equivalent-representations-of-linear-systems}
## Example Frequency Response (Bode Plot) for Spring-Mass-Damper {#example-frequency-response--bode-plot--for-spring-mass-damper}
## Laplace Transforms and the Transfer Function {#laplace-transforms-and-the-transfer-function}
## Benefits of Feedback on Cruise Control Example {#benefits-of-feedback-on-cruise-control-example}
## Benefits of Feedback on Cruise Control Example (Part 2) {#benefits-of-feedback-on-cruise-control-example--part-2}
## Cruise Control Example with Proportional-Integral (PI) control {#cruise-control-example-with-proportional-integral--pi--control}
## Sensitivity and Complementary Sensitivity {#sensitivity-and-complementary-sensitivity}
## Sensitivity and Complementary Sensitivity (Part 2) {#sensitivity-and-complementary-sensitivity--part-2}
## Loop shaping {#loop-shaping}
## Loop Shaping Example for Cruise Control {#loop-shaping-example-for-cruise-control}
## Sensitivity and Robustness {#sensitivity-and-robustness}
## Limitations on Robustness {#limitations-on-robustness}
## Cautionary Tale About Inverting the Plant Dynamics {#cautionary-tale-about-inverting-the-plant-dynamics}
## Control systems with non-minimum phase dynamics {#control-systems-with-non-minimum-phase-dynamics}
<./biblio/references.bib>

View File

@@ -0,0 +1,183 @@
+++
title = "Data-Driven Dynamical Systems with Machine Learning"
author = ["Thomas Dehaeze"]
draft = false
+++
Tags
:
## Data-Driven Control {#data-driven-control}
### Overview {#overview}
#### Challenges {#challenges}
With modern control (LQR, LQG, H-Infinity), we work with linear system (or linearized systems) and we develop a control law that minimize some cost function.
Challenging systems where modern control is not efficient:
- Non-linear systems
- System with unknown dynamics
- High dimensional systems
- Limited measurements or control inputs
For these kinds of systems, data-driven control seems to be a good alternative.
#### What is control? {#what-is-control}
It's an optimization constrained by dynamics of the system.
The optimization is easy when the system is linear and the cost function is quadratic.
When the system is non-linear or when the cost function is non quadratic, the optimization becomes complicated (non closed form). Then the optimization should be rerun on the fly, which is what is done with MPC (model predictive control).
#### What is Machine-Learning? {#what-is-machine-learning}
Machine-learning is powerful non-linear optimization based on data.
#### Outline of this lecture {#outline-of-this-lecture}
##### Data Driven Models {#data-driven-models}
For the problem of unknown dynamics, we can use data driven models.
The goal is to collect data to generate of model of the system.
##### Machine Learning Control {#machine-learning-control}
When we use the control inputs, the system changes and the system model might be not valid anymore.
The idea is to use data driven machine learning directly to learn a good controller.
##### Sensor and actuator placement {#sensor-and-actuator-placement}
Use powerful optimization techniques from machine learning to learn what are good sensors and actuators.
### Linear System Identification {#linear-system-identification}
### The Goal of Balanced Model Reduction {#the-goal-of-balanced-model-reduction}
### Change of Variables in Control Systems {#change-of-variables-in-control-systems}
### Change of Variables in Control Systems (Correction) {#change-of-variables-in-control-systems--correction}
### Balancing Example {#balancing-example}
### Balancing Transformation {#balancing-transformation}
### Balanced Truncation {#balanced-truncation}
### Balanced Truncation Example {#balanced-truncation-example}
### Error Bounds for Balanced Truncation {#error-bounds-for-balanced-truncation}
### Balanced Proper Orthogonal Decomposition {#balanced-proper-orthogonal-decomposition}
### BPOD and Output Projection {#bpod-and-output-projection}
### Balanced Truncation and BPOD Example {#balanced-truncation-and-bpod-example}
### Eigensystem Realization Algorithm {#eigensystem-realization-algorithm}
### ERA and the Discrete-Time Impulse Response {#era-and-the-discrete-time-impulse-response}
### Eigensystem Realization Algorithm Procedure {#eigensystem-realization-algorithm-procedure}
### Balanced Models with ERA {#balanced-models-with-era}
### Observer Kalman Filter Identification {#observer-kalman-filter-identification}
### ERA\_OKID Example in Matlab {#era-okid-example-in-matlab}
## System Identification {#system-identification}
### Full-State Models with Control {#full-state-models-with-control}
### Regression Models {#regression-models}
### Dynamic Mode Decomposition with Control {#dynamic-mode-decomposition-with-control}
### DMD Control Example {#dmd-control-example}
### Koopman with Control {#koopman-with-control}
### Sparse Nonlinear Models with Control {#sparse-nonlinear-models-with-control}
### Model Predictive Control {#model-predictive-control}
### Sparse Identification of Nonlinear Dynamics for Model Predictive Control {#sparse-identification-of-nonlinear-dynamics-for-model-predictive-control}
## Machine Learning Control {#machine-learning-control}
### Overview {#overview}
### Genetic Algorithms {#genetic-algorithms}
### Tuning a PID Controller with Genetic Algorithms {#tuning-a-pid-controller-with-genetic-algorithms}
### Tuning a PID Controller with Genetic Algorithms (Part 2) {#tuning-a-pid-controller-with-genetic-algorithms--part-2}
### Genetic Programming {#genetic-programming}
### Genetic Programming Control {#genetic-programming-control}
## Extremum Seeking Control {#extremum-seeking-control}
### Introduction {#introduction}
### Matlab {#matlab}
### Simulink {#simulink}
### Challenging Example {#challenging-example}
### Applications {#applications}
<./biblio/references.bib>