File: sysgroup.m

package info (click to toggle)
octave-control 1.0.11-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,628 kB
  • ctags: 160
  • sloc: makefile: 64; sh: 4
file content (194 lines) | stat: -rw-r--r-- 5,182 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
## Copyright (C) 1996, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006,
##               2007 Auburn University.  All rights reserved.
##
##
## This program is free software; you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 3 of the License, or (at
## your option) any later version.
##
## This program is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program; see the file COPYING.  If not, see
## <http://www.gnu.org/licenses/>.

## -*- texinfo -*-
## @deftypefn {Function File} {@var{sys} =} sysgroup (@var{asys}, @var{bsys})
## Combines two systems into a single system.
##
## @strong{Inputs}
## @table @var
## @item asys
## @itemx bsys
## System data structures.
## @end table
##
## @strong{Output}
## @table @var
## @item sys
## @math{sys = @r{block diag}(asys,bsys)}
## @end table
## @example
## @group
##          __________________
##          |    ________    |
## u1 ----->|--> | asys |--->|----> y1
##          |    --------    |
##          |    ________    |
## u2 ----->|--> | bsys |--->|----> y2
##          |    --------    |
##          ------------------
##               Ksys
## @end group
## @end example
## The function also rearranges the internal state-space realization of @var{sys}
## so that the continuous states come first and the discrete states come last.
## If there are duplicate names, the second name has a unique suffix appended
## on to the end of the name.
## @end deftypefn

## Author: A. S. Hodel <a.s.hodel@eng.auburn.edu>
## Created: August 1995
## modified by John Ingram July 1996
## A. S. Hodel: modified for variable number of arguments 1999

function sys = sysgroup (varargin)

  if (nargin < 1)
    print_usage ();
  endif

  ## collect all arguments
  arglist = {};
  for kk = 1:nargin
    arglist(kk) = varargin{kk};
    if (! isstruct (arglist{kk}))
      error ("sysgroup: argument %d is not a data structure", kk);
    endif
  endfor

  if (nargin == 2)
    ## the usual case; group the two systems together
    Asys = arglist{1};
    Bsys = arglist{2};

    ## extract information from Asys, Bsys to consruct sys
    Asys = sysupdate (Asys, "ss");
    Bsys = sysupdate (Bsys, "ss");
    [n1, nz1, m1, p1] = sysdimensions (Asys);
    [n2, nz2, m2, p2] = sysdimensions (Bsys);
    [Aa, Ab, Ac, Ad, Atsam, An, Anz, Ast, Ain, Aout, Ayd] = sys2ss (Asys);
    [Ba, Bb, Bc, Bd, Btsam, Bn, Bnz, Bst, Bin, Bout, Byd] = sys2ss (Bsys);
    nA = An + Anz;
    nB = Bn + Bnz;

    if (p1*m1*p2*m2 == 0)
      error ("sysgroup: argument lacks inputs and/or outputs");

    elseif (Atsam + Btsam > 0 && Atsam * Btsam == 0)
      warning ("sysgroup: creating combination of continuous and discrete systems")

    elseif (Atsam != Btsam)
      error ("sysgroup: Asys.tsam=%e, Bsys.tsam =%e", Atsam, Btsam);
    endif

    if (nA*nB > 0)
      A12 = zeros (nA, nB);
    else
      A12 = [];
    endif
    A = [Aa, A12; A12', Ba];

    if (nA*m2 > 0)
      B12 = zeros (nA, m2);
    else
      B12 = [];
    endif
    if (nB*m1 > 0)
      B21 = zeros (nB, m1);
    else
      B21 = [];
    endif
    if (isempty(Ab))
      Ab = [];
    endif
    if (isempty (Bb))
      Bb = [];
    endif
    B = [Ab, B12; B21, Bb];

    if (p1*nB > 0)
      C12 = zeros (p1, nB);
    else
      C12 = [];
    endif
    if (p2*nA > 0)
      C21 = zeros (p2, nA);
    else
      C21 = [];
    endif
    C = [Ac, C12; C21, Bc];

    if (p1*m2 > 0)
      D12 = zeros (p1, m2);
    else
      D12 = [];
    endif
    if (p2*m1 > 0)
      D21 = zeros (p2, m1);
    else
      D21 = [];
    endif
    D = [Ad, D12; D21, Bd];
    tsam = max (Atsam, Btsam);

    ## construct combined signal names; stnames must check for pure gain blocks
    if (isempty (Ast))
      stname = Bst;
    elseif (isempty (Bst))
      stname = Ast;
    else
      stname= __sysconcat__ (Ast, Bst);
    endif
    inname = __sysconcat__ (Ain, Bin);
    outname = __sysconcat__ (Aout, Bout);

    ## Sort states into continuous first, then discrete
    dstates = ones (1, (nA+nB));
    if (An)
      dstates(1:(An)) = zeros (1, An);
    endif
    if (Bn)
      dstates((nA+1):(nA+Bn)) = zeros (1, Bn);
    endif
    [tmp, pv] = sort (dstates);
    A = A(pv,pv);
    B = B(pv,:);
    C = C(:,pv);
    stname = stname (pv);

    ## check for duplicate signal names
    inname = __sysgroupn__ (inname, "input");
    stname = __sysgroupn__ (stname, "state");
    outname = __sysgroupn__ (outname, "output");

    ## mark discrete outputs
    outlist = find ([Ayd, Byd]);

    ## build new system
    sys = ss (A, B, C, D, tsam, An+Bn, Anz+Bnz, stname, inname, outname);

  else
    ## multiple systems (or a single system); combine together one by one
    sys = arglist{1};
    for kk = 2:length(arglist)
      printf ("sysgroup: kk=%d\n", kk);
      sys = sysgroup (sys, arglist{kk});
    endfor
  endif

endfunction