SDT-base Contents   Functions      PDF Index |
Purpose
Transformations between the residue res and state-space ss forms.
Syntax
SYS = res2ss(RES) SYS = res2ss(RES,'AllIO') [a,b,c,d] = res2ss(res,po,idopt) RES = ss2res(SYS) [res,po,idopt] = ss2res(a,b,c,d)
Description
The functions res2ss and ss2res provide transformations between the complex / normal mode residue forms res (see section 5.6) and the state space forms (see section 5.4). You can use either high level calls with data structures or low level calls providing each argument
ci=demosdt('demo gartid est') SYS = res2ss(ci.Stack{'IdMain'}); RES = ss2res(SYS); ID=ci.Stack{'IdMain'}; [a,b,c,d] = res2ss(ID.res,ID.po,ID.idopt);
Important properties and limitations of these transformations are
Asymptotic corrections (see idopt.ResidualTerms) other than the constant and s−2 are not included.
Theory
For control design or simulation based on identification results, the minimal model resulting from id_rm is usually sufficient (there is no need to refer to the normal modes). The state-space form is then the reference model form.
As shown in section 2.9.1, the residue matrix can be decomposed into a dyad formed of a column vector (the modal output), and a row vector (the modal input). From these two matrices, one derives the [B] and [C] matrices of a real parameter state-space description of the system with a bloc diagonal [A] matrix
(10.68) |
where the blocks of matrices B1, B2, C1, C2 are given by
(10.69) |
Form the state space model thus obtained, FRFs in the xf format can be readily obtained using qbode. If the state space model is not needed, it is faster to use res2xf to generate these FRFs.
See also
demo_fe, res2xf, res2nor, qbode, id_rm, id_rc