ann_elucubrations

Sorting my notes about artificial neural networks

View the Project on GitHub

System Identification of a Second Order Linear Time Invariant (LTI) Plant

Full State Access

We recall that the state space representation for a discrete time second order LTI plant is :

or

We notice that this is also the equation for a single layer ANN with 3 inputs, 2 outputs, no bias and a linear activation function.

sklearn code

SO LTI test trajectory
Fig1. - SO LTI test trajectory, Full State Plant Identification.

keras code

SO LTI test trajectory
Fig1. - SO LTI test trajectory, Full State Plant Identification.

Input/Output Access

As our plant is linear, can be written

which leads to the following transfer function

sklearn code

SO LTI test trajectory
Fig1. - SO LTI test trajectory, Input/Output Plant Identification with sklearn.

keras code

SO LTI test trajectory
Fig1. - SO LTI test trajectory, Input/Output Plant Identification with KERAS.

Control Affine Form, Full State Identification

keras code

SO LTI test trajectory
Fig1. - SO LTI test trajectory, Input/Output Control Affine Plant Identification.

Control Affine Form, Input/Output Identification

keras code

SO LTI test trajectory
Fig1. - SO LTI test trajectory, Input/Output Control Affine Plant Identification.