Skip to content

Latest commit

 

History

History
102 lines (77 loc) · 4.91 KB

KapXI.md

File metadata and controls

102 lines (77 loc) · 4.91 KB
layout mathjax title description is_project_page
post
true
Kapitel XI: Robot Control
Useful Equations and Textbook Exercise Attempts
false

Homepage Previous Next

Useful Notes and Equations

note_1.png

Useful Equations:


Textbook Exercises Attempts

Exercise 11.2 The $$2%$$ settling time of an underdamped second-order system is approximately $$t = \frac{4}{\zeta \omega_{n}}$$, for $$e^{-\zeta \omega_{n} t}=0.02$$. What is the $$5%$$ settling time?

By definition, the percentage settling time is defined as $$N%t = -\frac{\ln\left(N/100 \right)}{\zeta \omega_{n}}$$. Therefore, $$5%t = -\frac{\ln\left(5/100 \right)}{t} \approx \frac{3}{\zeta \omega_{n}} $$.

Exercise 11.3 Solve for any constants and give the specific equation for an underdamped second-order system with $$\omega_n = 4$$, $$\zeta = 0.2$$, $$\theta_{e}(0) = 1$$, and $$\dot{\theta_{e}}(0) = 0$$. Calculate the damped natural frequency, approximate overshoot, and $$2%$$ settling time. Plot the solution on a computer and measure the exact overshoot and settling time.

$$ \begin{align} \begin{split} \omega_d &= \omega_n \sqrt{1-\zeta^2}\\ &= 4 \sqrt{1-0.2^2} \\ &= 3.9192 \\ \end{split} \end{align} $$

$$ \begin{align} \begin{split} \text{overshoot} &= \text{exp}\left( \frac{-\pi \zeta}{\sqrt{1-\zeta^2}} \right) \\ &= 0.5266 \\ &= 52.66% \\ \end{split} \end{align} $$

$$ \begin{align} \begin{split} 2%t &= -\frac{\text{ln}(0.02)}{\zeta \omega_n} \\ &= 4.8900,\text{rad/s} \\ \end{split} \end{align} $$

fig_1.png

Exercise 11.4 Solve for any constants and give the specific equation for an underdamped second-order system with $$\omega_n = 10$$, $$\zeta = 0.1$$, $$\theta_e (0) = 0$$, and $$\dot{\theta_e} (0) = 1$$. Calculate the damped natural frequency. Plot the solution on a computer.

$$\omega_d = \omega_n \sqrt{1-\zeta^2} = 9.94987,\text{rad/s}$$

fig_2.png

Exercise 11.5 Consider a pendulum in a gravitational field with $$g = 10 ;\text{m/s}^2$$. The pendulum consists of a $$2$$ kg mass at the end of a $$1$$ m massless rod. The pendulum joint has a viscous-friction coefficient of $$b = 0.1,\text{Nms/rad}$$.

  • (a) Write the equation of motion of the pendulum in terms of $$\theta$$, where $$\theta=0$$ corresponds to the “hanging down” configuration.
  • (b) Linearize the equation of motion about the stable “hanging down” equilibrium. To do this, replace any trigonometric terms in $$\theta$$ with the linear term in the Taylor expansion. Give the effective mass and spring constants $$m$$ and $$k$$ in the linearized dynamics $$m \ddot{\theta} + b\dot{\theta}+k\theta =0$$. At the stable equilibrium, what is the damping ratio? Is the system underdamped, critically damped, or overdamped? If it is underdamped, what is the damped natural frequency? What is the time constant of convergence to the equi- librium and the $$2%$$ settling time?
  • (c) Now write the linearized equations of motion for $$\theta=0$$ at the balanced upright configuration. What is the e↵ective spring constant $$k$$?
  • (d) You add a motor at the joint of the pendulum to stabilize the upright position, and you choose a P controller $$\tau = K_p \theta$$. For what values of $$K_p$$ is the upright position stable?
  • (a) $$\ddot{\theta} + 10 \text{sin}(\theta) = 0$$

fig_3.png

  • (b) $$1\cdot \ddot{\theta} + 0 \cdot \dot{\theta} + 10\cdot \theta = 0$$ By observation, we get $$m=1$$, $$b = 0$$, $$k=10$$. The natural frequency is $$\omega_n = \sqrt{\frac{k}{m}} = \sqrt{\frac{10}{1}} = \sqrt{10}$$. From $$2\zeta \omega_n = 0$$, the damping ratio is obtained as $$\zeta = 0$$. Since $$\zeta < 0$$, the system is underdamped. The damped natural frequency is $$\omega_d = \omega_n \sqrt{1-\zeta^2} = \sqrt{10}$$. The $$2%$$ settling time is $$2%t = -\frac{ln(0.02)}{\zeta \omega_n} \approx \frac{4}{0} = \infty$$.

  • (c) Don't know how to do.

  • (d) Don't know how to do.


Back To Top