代做MEC208 Instrumentation and Control System S2, 2023-2024代写Matlab语言

Department of Mechatronics and Robotics

MEC208 Instrumentation and Control System S2, 2023-2024

Computer Lab (Lab 2):

Control System CAD and CAS using MATLAB

Introduction

This laboratory work/assignment carries  15%  of MEC208  module  mark. The  work is  about learning the engineering software tool to conduct classical control system design and analysis. Among the several options available, MATLAB is chosen as the main software. To help with your learning, the document first sets out the “Examples” that show some of the very typical commands of the Control System toolbox of MATLAB. You are strongly encouraged to practice them yourself and explore other control design functions mentioned in lecture notes and other resources (e.g., the Help Files of MATLAB).

Once you are familiar with the software environment, you can then start to attempt and solve the control problems. You will need to use the theoretical understanding of Classic Control Theory that you acquired so far, and do appropriate problem analysis, mathematical derivation, and deploy suitable numerical tools/functions. At the start of every question, you are encouraged to briefly explain your approach; for sub-parts that need your analysis, please elaborate them concisely.

You are required to submit a well-formatted Lab Report before the deadline (as above). The university’s late submission policy applies to submissions after the deadline. Please refer to LMO module page for the submission steps.

Lastly, and importantly, you are reminded about the university’s academic integrity policy. If you undertake the preparation with other students, or if you use sources from the internet or books, you must acknowledge these in your report by writing a short statement at the beginning of the report.

Aims, Learning Outcomes and Outline

This laboratory work aims to enable the student to:

.    Understand the concept of open-loop and closed-loop control systems.

.    Understand the  mathematical modelling of dynamic  systems  and different formats of system models.

.    Learn computer aided system analysis and design.

.    Understand the system stability and how to determine if a system is stable.

Having successfully completed the work, you will be able to:

.    Use computer software to assist in dynamical control system design.

.    Analyze first- and second-order system responses, and transfer function through Laplace transform.

.    Determine system performance and stability with Root Locus Analysis.

.    Design feedback controller to stabilize overall system and to meet design specification.

Report Format

The format of the lab/assignment report should be of the following:

.    The report should be of single columnfont size  11, font style “Times New Roman”. Please be reminded that handwritten reports will NOT be accepted.

.    All figures and plots must be clearly labelled.

.    In your report, you are expected to explain concisely your approach (i.e., with full sentence and proper grammar, but please avoid unnecessarily long explanation).

.    In your answer for each question, do also include all MATLAB code/script that you used to obtain the answers or plots (note: do not separately submit those raw .m files; answer for each question should contain some MATLAB scripts). These codes/scripts should be copied properly into the report and should remain standalone. For example, if you include the code for Question 2a, you must make sure that the codes in this part alone (not linked to  other  questions)  can  be  copied  by  the  marker  into  MATLAB  for  a  quick, successful verification.

.    For analytical questions, whenever necessary, do also include your analysis and derivation.

Marks will be given on the following basis:

.    The 9 questions in the “Computer Lab Work” section carry a total of 100 marks. Each question carries 6 to 16 marks, depending on the complexity of the questions.

.    Sub-marks  will  be  awarded to technically  correct  analyses  and comments, MATLAB scripts,  mathematical  derivation  (as  necessitated  by  the  questions),  graphs/plots  (and annotations of the plots), and/or numerical answers. All analysis and comments  should have proper sentence structure and correct grammar.

Examples

This part is to introduce about how to start using the Control System Toolbox in MATLAB. You may go through the examples (in this section, and in other online resources) before you start working on the assignment tasks.

Example 1: Input a system described by a transfer function

To construct a system model in MATLAB, the command “tf” can be used. For example, to obtain the following input transfer function:


» sys1=tf([1 1 1], [1 2 0 5 2]) Transfer function: s^2 + s + 1 --------------------- s^4 + 2 s^3 + 5 s + 2 >> sys1=tf([1 1], [1 2 3 3 10]) Transfer function: s + 1 ------------------------------ s^4 + 2 s^3 + 3 s^2 + 3 s + 10 >> sys2=tf([10], [ 1 0 3]) Transfer function: 10 ------- s^2 + 3 >> sys=sys1*sys2 Transfer function: 10 s + 10 ----------------------------------------------- s^6 + 2 s^5 + 6 s^4 + 9 s^3 + 19 s^2 + 9 s + 30


Example 2: Find the system’s zeros and poles

The commands used for this task are “pole” and “zero” . From the signs of system poles, you can determine if the system is stable. For example, given the system G(s):

Using MATLAB, the system’s poles can be obtained as follows:

>> pole(sys) ans = -0.5000 + 0.8660i -0.5000 - 0.8660i >>


Given another example with system zeros:

>> sys=tf([2 1 3],[1 2 5 6 7]) Transfer function: 2 s^2 + s + 3 ----------------------------- s^4 + 2 s^3 + 5 s^2 + 6 s + 7 >> zero(sys) ans = -0.2500 + 1.1990i -0.2500 - 1.1990i >>

Example 3: Obtain the system model in pole-zero format

It is at times helpful to control designers to express a system into a form of first/second-order components. For example, given G(s) below, one can express it to pole-zero format as follows:

>> sys=tf([1], [1 1 3 2 6]) Transfer function: 1 --------------------------- s^4 + s^3 + 3 s^2 + 2 s + 6 >> zpk(sys) Zero/pole/gain: 1 ---------------------------------------------- (s^2 + 1.969s + 2.609) (s^2 - 0.9693s + 2.3) >>

There are many other control-related numerical tools in MATALB. See some of the listed examples in Part II.

Example 4: Obtain impulse, step, and ramp input responses

The commands used for obtaining the time responses against unit-step and unit-impulse inputs are, respectively, “step()” and “impulse()” . Taking the following system as the example, its step and impulse responses can be obtained as follows:



>> sys1=tf([1], [1 2 3 5]) Transfer function: 1 --------------------- s^3 + 2 s^2 + 3 s + 5 >> step(sys1) >> impulse(sys1)


To obtain necessary system ramp input response, the following can be done. Note that the title change is to avoid confusion.

>> sys2=tf([1], [1 0]) Transfer function: 1 s >> step(sys1*sys2) >> title('Ramp Response')

Example 5: Obtain the equivalent/effective transfer function of a closed-loop system

The relevant command is “feedback” . You can obtain the description of this command from MATLAB help, i.e., using command “>>help feedback” . For example, given that a system has a forward-path transfer function G(s)

and feedback-path transfer function H(s)

The closed-loop transfer function of the feedback system is obtainable through the following commands:


>> sys1=tf([1],[1 1 1]) >> sys2=tf([1],[1 1]) >>sys_closed_loop=feedback(sys1,sys2,-1) Transfer function: s + 1 --------------------- s^3 + 2 s^2 + 2 s + 2 >>


At this stage of learning, you should be able to obtain the closed-loop transfer function through analytical means. You are encouraged to check whether the numerical tools actually give you the correct answer. At times, through cross-checking, you may find that there are some minor mistakes in your own derivation or MATLAB scripts. You may also attempt the simulation questions at the end of each chapter in the course textbook.

Optional

Before attempting the questions, apart from the numerical tools introduced above, it maybe helpful to you to spend some time understanding other numerical tools/functions (not in any particular order) available to you in the Control System Toolbox of MATLAB.

tf

step

impulse

ramp

partfrac

ilaplace

plot

feedback

series

pzmap

pole

zero

ss

tf2ss

lsim

expm

hold on

hold off

Others  (check  in MATLAB documentation;   there   are many more …)

Computer Lab Work (10 questions)

Problem 1 [6 marks]

Obtain the state variable model/representation for the following transfer functions with unity feedback using your own choice of MATLAB functions:

Problem 2 [8 marks]

Consider the block diagram in Figure P2.

 

(a) Use an m-file to reduce the block diagram in Figure P2, obtain the equivalent closed-loop transfer function of the above system.

(b) Use the numerical tools available, generate a pole-zero map in the graphical form and calculate the poles and zeros of the closed-loop transfer function. Comment on the overall system stability.


Problem 3 [10 marks]

Consider the system

(a) Using the tf function, determine the transfer function Y(S)/u(S).

(b) Assume u(t) is a  10-magnitude pulse input  of duration 5 seconds from the start of 0 seconds (and its magnitude becomes zero after that), plot the response of the system with initial condition x(0) =  [1      2     0]T , for 0  ≤ t ≤ 50.

(c) Then, determine x(t) at t   =  20 s for the same initial condition and input as in part (b). Compare and comment on the state and output of the system with the initial condition defined in part (b) for cases with and without the input excitation.

Problem 4 [10 marks]

Consider the closed-loop system shown in Figure P4. The controller gain K can be modified to meet the design specifications.


where

(a) Derive the closed-loop transfer function 

(b) Using MATLAB, plot the step response of the closed-loop system for K  = 5, 10, and 50. (c) When the controller gain is K  = 10, determine the steady-state value of y(t) when the disturbance is a unit step, that is, when Td (S) =  1/S and R(S) = 0.


Problem 5 [16 marks]

Consider the following transfer function:

where   and 

(a) Given  that  C(s)  is  a  continuous-time  PID  controller  with  proportional,  integral  and derivative gains of 1, 5, and 0.1, respectively. Identify the dominant complex poles and complex zeros (if any) of the system. Then, calculate the dominant complex poles ’ natural frequency, damping factor, characteristic rise time (5 to 95%), peak time, percent overshoot and 2% settling time.

(b) Plot and clearly label the unit-step response of Y(s).

(c) Obtain from the figure in part (b) the exact rise time, peak time, percent overshoot, and 2% settling time of the output response. Compare and comment on the difference, if any, between the answers in part (c) and part (a).

Problem 6 [10 marks]

The forward-path of a closed-loop transfer function with unity feedback is given by

(a) Obtain the response of the closed-loop transfer function T(s) to a unit-step input.

(b) Determine the step response of the system after adding zeros at 0, -0.5, - 1.5, and -2.5,

respectively, to G(s). Compare the results with the original step response in part (a), what conclusions can be drawn regarding the effect of adding a zero at different locations with respect to the to a second-order system?

Problem 7 [12 marks]

A magnetically levitated high-speed train travels/floats above its rail system, leaving air gap between them. The train system is depicted graphically in Figure P7(a). The air gap control system has a unity feedback system.


The goal is to select K so that the response for a unit-step input is reasonably damped. Sketch the root locus and select K so that the Ts  ≤ 3 s and P.  O. ≤ 20%. Determine the actual unit-step response for the selected K. Determine from the plot the settling time and the percent overshoot and explain their difference(s), if any, with the theoretical expectation/calculation.

Problem 8 [12 marks]

Figure P8 shows a closed-loop system with a tunable feedback parameter k, where k is a positive number.

(a) Draw a root locus diagram to reflect the effect of changing k. Then, determine the range of possible k values that can produce a pair of dominant oscillatory/complex poles with the characteristic damping factor more than 0.4 and the characteristic 2% settling time less than 3 s.

(b) Analyze the plot in part (a) and propose the final value of k that can produce a quicker possible response. Then, plot the unit-step response of the output y(t), and comment on the effect of third pole onto the overall behavior of the system.

Problem 9 [16 marks]

As the control engineer in Xiaomi’s electric vehicle (EV) company, you are assigned tasks to analyze and propose a solution to the new model SU7’s linear speed dynamics (note: for simplicity, only one dimension is considered here) with its front and rear wheels powered by two closed-loop controlled  interior  permanent  magnet  motors.  The  overall  vehicle  linear  speed  dynamics  is depicted graphically in Figure P9. V Tef (s)  is the speed reference input, Td  is the disturbance input, and V(s) is the vehicle linear speed. You are expected to justify, in the form. of textual description, your design solution using the control system understanding from the module (especially the system modelling and control part), mathematical derivation, simulation result, or any other means deemed appropriate.

(a) Parameters of the vehicle speed dynamic are estimated, through experiments, as  A = 2 and B = 3. Your task is to propose a suitable form of controller Gc (s) that can eliminate the steady-state vehicle speed error due to step input. Explain your answer with sufficient evidence and suggest suitable Gc(s) gain/parameter value(s) to ensure a fast closed-loop response with damping coefficient being in between 0.3 to 0.4 values. Plot the unit-step input response of the closed-loop system.

(b) Later, the company owner requests that the vehicle’s linear ramp performance should be similar to that by Porsche Taycan Turbo S, which achieves 100 km/h from 0 km/h through linear speed ramping (means constant acceleration) at 2.6 seconds. Discuss whether the proposed controller Gc (s) by you in part (a) can fulfill the requirement. Explain and justify your  answer  with   sufficient  evidence.  Then,  propose  modification  to  the  proposed controller Gc (s) in part (a) to make it better.

 

 

 

 

热门主题

课程名

omp9727 ddes9903 mgt253 fc021 int2067/int5051 bsb151 babs2202 mis2002s phya21 18-213 cege0012 math39512 math38032 mech5125 mdia1002 cisc102 07 mgx3110 cs240 11175 fin3020s eco3420 ictten622 comp9727 cpt111 de114102d mgm320h5s bafi1019 efim20036 mn-3503 comp9414 math21112 fins5568 comp4337 bcpm000028 info6030 inft6800 bcpm0054 comp(2041|9044) 110.807 bma0092 cs365 math20212 ce335 math2010 ec3450 comm1170 cenv6141 ftec5580 ecmt1010 csci-ua.0480-003 econ12-200 ectb60h3f cs247—assignment ib3960 tk3163 ics3u ib3j80 comp20008 comp9334 eppd1063 acct2343 cct109 isys1055/3412 econ7230 msinm014/msing014/msing014b math2014 math350-real eec180 stat141b econ2101 fit2004 comp643 bu1002 cm2030 mn7182sr ectb60h3s ib2d30 ohss7000 fit3175 econ20120/econ30320 acct7104 compsci 369 math226 127.241 info1110 37007 math137a mgt4701 comm1180 fc300 ectb60h3 llp120 bio99 econ7030 csse2310/csse7231 comm1190 125.330 110.309 csc3100 bu1007 comp 636 qbus3600 compx222 stat437 kit317 hw1 ag942 fit3139 115.213 ipa61006 econ214 envm7512 6010acc fit4005 fins5542 slsp5360m 119729 cs148 hld-4267-r comp4002/gam cava1001 or4023 cosc2758/cosc2938 cse140 fu010055 csci410 finc3017 comp9417 fsc60504 24309 bsys702 mgec61 cive9831m pubh5010 5bus1037 info90004 p6769 bsan3209 plana4310 caes1000 econ0060 ap/adms4540 ast101h5f plan6392 625.609.81 csmai21 fnce6012 misy262 ifb106tc csci910 502it comp603/ense600 4035 csca08 8iar101 bsd131 msci242l csci 4261 elec51020 blaw1002 ec3044 acct40115 csi2108–cryptographic 158225 7014mhr econ60822 ecn302 philo225-24a acst2001 fit9132 comp1117b ad654 comp3221 st332 cs170 econ0033 engr228-digital law-10027u fit5057 ve311 sle210 n1608 msim3101 badp2003 mth002 6012acc 072243a 3809ict amath 483 ifn556 cven4051 2024 comp9024 158.739-2024 comp 3023 ecs122a com63004 bms5021 comp1028
联系我们
EMail: 99515681@qq.com
QQ: 99515681
留学生作业帮-留学生的知心伴侣!
工作时间:08:00-21:00
python代写
微信客服:codinghelp
站长地图