Legacy Documentation

Control System Professional (1995)

This is documentation for an obsolete product.
Current products and services

 Documentation /  Control Systems Professional /  System Interconnections /  Elementary Interconnections /

OverviewConnecting in Parallel

6.1.1 Connecting in Series

SeriesConnect finds the description of an aggregate system composed of two subsystems connected in series, as shown in Figure 6.1. The aggregate has inputs of system , outputs of system , and states of both systems, Note that not all outputs of the first system should necessarily be connected to inputs of the second system.

Figure 6.1. Series interconnection.

Series connection of two systems.

Load the application.

In[1]:=

Here are two systems in state-space form.

In[2]:=

Out[2]=

In[3]:=

Out[3]=

This connects the systems in series.

In[4]:=

Out[4]=

The result is, of course, the familiar StateSpace object.

In[5]:=

Out[5]//StandardForm=

Now the second output of the first system is connected to the first input of the second system. Another output and input remain loose.

In[6]:=

Out[6]=

Now all the outputs and inputs are connected again, but this time in the reverse order.

In[7]:=

Out[7]=

Here is an integrator given in transfer function form.

In[8]:=

Out[8]=

This attaches the integrator to the first output of system ss1. Notice that SeriesConnect returns the result in state-space form as soon as one of the input systems is given in that form.

In[9]:=

Out[9]=

Here both input systems are in transfer function form, and so is the result.

In[10]:=

Out[10]=

This is a slightly more complicated connection—the integrator is connected to the third output of the transfer function system tf.

In[11]:=

Out[11]=

In[12]:=

Out[12]=

SeriesConnect can cascade only two systems. However, the Mathematica language makes extensions to any number of systems fairly straightforward.

Here is a function that connects any number of matching subsystems in series.

In[13]:=

Using the new function, this command cascades a set of four abstract systems. Notice that the aggregate remains partially unevaluated until the systems are specified.

In[14]:=

Out[14]=

This built-in function reveals the structure of the cascade.

In[15]:=

Out[15]//TreeForm=

We prepare a set of first-order systems with simple poles to be used instead of the abstract systems.

In[16]:=

Out[16]=

Now the cascade can be found in closed form. The cascade is shown in Figure 6.2.

In[17]:=

Out[17]=

Figure 6.2. Cascade of first-order systems.

OverviewConnecting in Parallel