(Solved): Derive the open loop and close loop transfer function model of the Qube Servo 2 system and create a ...
Derive the open loop and close loop transfer function model of the Qube Servo 2 system and create a Simulink model for the same. Calculate the natural frequency and damping ratio from the derived transfer function. Estimate the natural frequency and damping ratio from the Qube Servo 2 system from the step response. The governing equations of the Qube Servo 2 system is given below: vm(t)−Rmim(t)−kmθ˙m(t)=0Jeqθθ¨t)=τm(t)τm(t)=ktim(t) The parameters required for calculation are given in the file 'parameters.m' Apply Laplace transform and derive the open loop transfer function: P(s)=U(s)θ(s). (U=vm) To form the second order system, we should create a closed loop system by providing feedback with a gain of C(s)=1. Figure 2: Closed loop system
Derive the closed loop transfer function, Gclose=U(s)θ(s) for the model shown above. With the closed loop transfer function obtained, you will be able to calculate the natural frequency ωn and damping ratio ζ of the system. The Simulink model of the closed loop system should be: You can simulate the step response of the system by applying a step input of magnitude 3 , starting at t=1s.
\% Resistance (ohm) Rm=8.4;% Inductance (H)Lm=1.16e−3; \% Current-torque ( N-m/A) kt=0.042; % Back-emf constant (V-s/rad) km=0.042; % Rotor inertia (kg−m∧2)Jr=4e−6;% Hub mass (kg)mh=0.0106;%9g% Hub radius (m)rh=22.2/1000/2;% diameter 22.2mm% Hub inertia (kg−m∧2)Jh=0.5∗mh∗rh∧2; % Disc mass (kg)md=0.053; % Disc radius (m)rd=49.5/1000/2;% diameter =49.5mm% Disc moment of inertia (kg−m∧2)Jd=0.5∗md∗r∧2; % Equivalent moment of inertia (kg−m∧2)Jeq=Jr+Jh+Jd;