On 16 Feb 2005 10:40:07 -0800, "
[email protected]" <
[email protected]>
wrote:
>reading my old copy of 'Modern Control Engineering' by Ogata, 1970,
>(ok, no longer 'modern'), pg 117 describes a method of multivariable
>control using a 'transfer matrix' of Laplace transfer functions where
>Gij(s) is the transfer function from ith input to jth output.
>
>Would this be practical to actually implement?
Since all of the denominators would be identical, (the characteristic
equation), then no, it would not be efficient to duplicate that for
each of the numerators, unless you had a lot of pole/zero
cancellations.
>Assuming I could model
>each Gij(s) as a simple 2nd order function, and only need 10Hz
>response, and have 5 inputs (thermocouples) and 5 outputs (heaters),
>could one DSP physically handle the Z transform matrix inversions in
>10Hz realtime?
10Hz on a DSP? 5x5 matrix inversion? no problem.
>Or, is there a simpler way?
By your description I'm assuming maybe the input is really five
temperature errors calculated from 5 reference values and 5
thermocouples and that this is a control system. In a State Space
format, the matrices are of size A (2x2), B (2x5), C(5x2), D(5x5). and
it probably implements a PI type of control with feedforward if the D
term is nonzero. I'm guessing at the details because you haven't
provided them. But there isn't any reason why you couldn't implement
this as a discrete state space controller. Depending upon the
precison that you need, at 10 Hz, you could run this on an 4-10MHz
8-bit PIC. You don't need a DSP to implement this control.