Output Director

Block-library: DUBSI

     block

The Output Director block 'directs' an inputsignal to either the first, or the second output, depending on a threshold value. It is comparable to the Switch block in Simulink, except that this block switches between two output ports, rather than between two input ports.

If the input signals are called u1 and u2, and the output signals are called y1 and y2, then the following equations define the switching logic:

   if u1 is greater than or equal to the threshold, then

        y1 = u2
        y2 = 0

   else

        y1 = 0
        y2 = u2

In other words: u1 is the test signal that determines the output path for u2. The threshold value must be entered by the user as block parameter for the block Output Director.

The block Circuit Selector from the same blocklibrary provides a similar solution for the selection and deselection of two mutually dependent circuits.

April 15, 2003