Hi I have this block diagram:
Now, I want to reduce it to such a block diagram:
How do I find H ? I am looking for a general method, of how to approach such problems.
Here is what H should be:
Hi I have this block diagram:
Now, I want to reduce it to such a block diagram:
How do I find H ? I am looking for a general method, of how to approach such problems.
Here is what H should be:
Deriving the expression for $H$ is relatively straightforward, if you understand how to manipulate block diagrams. The discussion below outlines the general approach (but you should probably google for a more academic description) and can be applied to either SISO or MIMO block diagrams. However, for the latter, you need to make sure that you maintain the correct order of multiplication (generally, for matrices, $AB \neq BA$).
Define the input and output signals of interest. In this case, by comparing both block diagrams:
Derive the relation between input $u$ and output $x$ based on the block diagram. The most straightforward approach is to trace the signal path through the block diagram in reverse (i.e. from $x$ to $u$). This results in:
$$ x = K(r - W_2u - Gx)$$
$$ x = (I + GK)^{-1}K\cdot r - (I + GK)^{-1}KW_2 \cdot u$$
$$ H = -(I+GK)^{-1}KW_2 $$
The above equation assumes that the block diagram describes a MIMO system. In case the system is SISO (and only in that case) this is equivalent to:
$$ H = W_2\frac{-K}{1+GK} $$