functionconversionToZerosAndPolesMIMO
Compute a zeros-and-poles description of a MIMO system from state space description
Extends from Modelica.Icons.Function (Icon for functions).
Information
This example demonstrates the conversion of a state space representation of a MIMO system into a zeros and poles representation.
Inputs
| Type | Name | Default | Description |
|---|---|---|---|
| Boolean | systemOnFile | false | True, if state space system is defined on file |
| String | fileName | "NoName" | file where matrix [A, B; C, D] is stored |
| String | matrixName | "ABCD" | Name of the state space system matrix |
| Real[:,size(A, 1)] | A | [-1.0, 0.0, 0.0; 0.0, -2.0, 0.0; 0.0, 0.0, -3.0] | |
| Real[size(A, 2),:] | B | [0.0, 1.0; 1.0, 1.0; -1.0, 0.0] | |
| Real[:,size(A, 1)] | C | [0.0, 1.0, 1.0; 1.0, 1.0, 1.0] | |
| Real[size(C, 1),size(B, 2)] | D | [1.0, 0.0; 0.0, 1.0] |
Outputs
| Type | Name | Default | Description |
|---|---|---|---|
| Boolean | ok |