The system shown in Figure P5.48 will have its transient response altered by adding a tachometer. Design K and K2 in the system to yield a damping ratio of 0.69. The natural frequency ofthe system before the addition ofthe tachometer is 10 rad/s.
CS 1110 Van Loan and Lee Spring 2016 May 3, 2016 Object-Oriented Programming (OOP) o see ThinkPython chapter 18 o examples used involve playing cards decks vs. hands can do certain things with both but also some methods won’t be shared o def __str__(self) a special method that “pretty prints” o Inheritance in defining a class instead of having “class Child(object)” if you have “class Child(Parent)” the new class (Child) inherits, or is able to use all the methods from the other class (Parent) any method from Parent that is redefined in Child is overridden