Damping
Damping
Damping
To study and identify the damping in second order system using MATLAB.
Total Marks
In this lab, we will explore how to identify damping in a second-order system using Matlab. The
damping ratio is a measure of how quickly an oscillating system will return to its equilibrium
position. We will be using Matlab to simulate the response of a second-order system to a step
input and then use the response data to calculate the damping ratio.
Step()
step(sys) plots the step response of the dynamic system model sys.
step(sys,Tfinal) simulates the step response from t = 0 to the final time t = Tfinal.
step(sys,t) uses the user-supplied time vector t for simulation.
[y t] = Step(sys) returns the output response y and the time vector t used for simulation (if not
supplied as an argument to step). No plot is drawn on the screen.
step(sys1,sys2,...,sysN) plots the step responses of several models sys1,..., sysN on a single figure
Stepinfo()
We use stepinfo() function to compute performance characteristics of the system from time response of
a step input signal.
S = stepinfo(sys) computes the step-response characteristics for a dynamic system model sys.
S = stepinfo(y,t) computes step-response characteristics from an array of step-response data y
and corresponding time vector t
S = stepinfo(___,'SettlingTimeThreshold',ST) lets you specify the threshold ST used in the
definition of settling time. The default value is ST = 0.02 (2%).
S = stepinfo(___,'RiseTimeLimits',RT) lets you specify the lower and upper thresholds used in
the definition of rise time. By default, the rise time is defined as the time the response takes to
rise from 10 to 90% of the steady-state value (RT = [0.1 0.9]).
TIME RESPONSE PERFORMANCE SPECIFICATIONS
RiseTime — Time it takes for the response to rise from 10% to 90% of the steady-state response.
SettlingTime — Time it takes for the error |y(t) - yfinal| between the response y(t) and the steady-state
response yfinal to fall to within 2% of yfinal.
Natural Frequency, ωn
The natural frequency of a second-order system is the frequency of oscillation of the system without
damping. For example, the frequency of oscillation of a series RLC circuit with the resistance shorted
would be the natural frequency.
The damping ratio is a dimensionless measure describing how oscillations in a system decay after a
disturbance. The damping ratio is a system parameter, denoted by ζ (zeta), that can vary from
undamped (ζ = 0), underdamped (ζ < 1) through critically damped (ζ = 1) to overdamped (ζ > 1).
Now Calculate the damping factors for each of the systems given below and predict their output.
You can calculate the damping ratio using the formula given as
Note damp() function calculates damping ratio only to maximum value of 1. This is because a second-
order system’s underdamped step response is characterized by damped oscillations. Our definition is
derived from the need to quantitatively describe this damped oscillation regardless of the time scale.
Thus, a system whose transient response goes through three cycles in a millisecond before reaching the
steady state would have the same measure as a system that went through three cycles in a millennium
before reaching the steady state.
Lab Task 1:
Simulate the Task and Write the parameter in the table.
LAB TASK