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 /

Connecting in ParallelArbitrary Interconnections

6.1.3 Closing Feedback Loop

Feedback interconnections of the types shown in Figure 6.4 are performed with the function FeedbackConnect. The function may just close the loop (Figure 6.4a), or may include a second system (typically a controller) in the feedback (Figure 6.4b). Either negative (default), positive, or mixed feedback can be formed. The connection specifications may be omitted if all corresponding inputs and outputs are to be used. The inputs and outputs of the aggregate are the ones of the first system. The states come from all subsystems.

Figure 6.4. Feedback interconnections.

Closing the feedback loop.

Feedback interconnections with second system.

The type descriptor for FeedbackConnect should be one of the reserved words Positive or Negative.

Consider a second-order system with two inputs and two outputs.

In[23]:=

Out[23]=

This forms the negative feedback by connecting corresponding outputs and inputs.

In[24]:=

Out[24]=

We can use built-in Mathematica functions to simplify the result.

In[25]:=

Out[25]=

This forms the closed loop for the first two inputs and outputs of the transfer function tf.

In[26]:=

Out[26]=

In[27]:=

Out[27]=

Now we plug the system ss in the positive feedback loop for ss1 (assuming, for simplicity, that there is no direct transmission term in ss).

In[28]:=

Out[28]=

In[29]:=

Out[29]=

This connects ss1 and ss according to Figure 6.5 (under the same simplifying assumption).

Figure 6.5. Example of feedback interconnection.

In[30]:=

Out[30]=

The connection functions described in this section accept transfer functions in arbitrary (rather than rational polynomial) form as long as no type conversion or subsystem selection has to be made.

This is the serial connection of two systems described by the transfer functions g[s] and h[s].

In[31]:=

Out[31]=

Here are the same systems connected in parallel.

In[32]:=

Out[32]=

This is the negative feedback connection.

In[33]:=

Out[33]=

Connecting in ParallelArbitrary Interconnections