How to sketch the phase trajectory of the system denoted by the block diagram

361 Views Asked by At

How to sketch the phase trajectory of the system denoted by the block diagram?

enter image description here

I built the following Simulink model

enter image description here

but I couldn't figure out what to represent the rate feedback $s+a$ with.

Using the above incomplete Simulink model I generated the following phase portrait, using arbitrary initial conditions.

enter image description here

1

There are 1 best solutions below

0
On BEST ANSWER

If you integrate $u$ twice you would get $\theta$, so in other words the second time derivative of $\theta$, denoted with $\ddot{\theta}$, would be equal to $u$. From the block diagram it can be seen that $u$ can be calculated with $u=\mathrm{sgn}((s+a)(\theta_d-\theta))$. By using that $\theta_d=0$ and $s\,\theta=\dot{\theta}$ then the previous expression can also be written as $u = \mathrm{sgn}(- \dot{\theta} - a\,\theta)$, so you have the second order differential equation

$$ \ddot{\theta} = \mathrm{sgn}(- \dot{\theta} - a\,\theta). $$

This is equivalent to the following system of first order differential equations with $x = \begin{bmatrix}\theta & \dot{\theta}\end{bmatrix}^\top$

$$ \dot{x} = \begin{bmatrix} x_2 \\ \mathrm{sgn}(- x_2 - a\,x_1) \end{bmatrix}. $$