Computer Exercise Modeling and control of a magnetic suspension system N S. magnetic. gravity. Figure 1: Sketch of the magnetic levitation system.

Size: px
Start display at page:

Download "Computer Exercise Modeling and control of a magnetic suspension system N S. magnetic. gravity. Figure 1: Sketch of the magnetic levitation system."

Transcription

1 Control Systems Automatic I Computer Exercise Modeling and control of a magnetic suspension system magnetic N S x gravity N Figure 1: Sketch of the magnetic levitation system. Scope of the project and system description Magnetic levitation has become highly applicable in magnetic bearings, modern transport systems, e.g., magnetically levitated trains and moving of metallic objects in the steel industry using so-called magnetic floaters. Practical magnetic levitation systems are inherently unstable and hence need the design of a feedback control law in order to produce a desired levitation level. During this project, we will examine a simple magnetic suspension system and simulate 1

2 and control it using Matlab / Simulink. This will be done in a sequence of steps. First, based on the physics of the system, a nonlinear model will be derived by applying Newton s law. Then you will be asked to compute a linearized model and study stability. Finally, you will synthesize a linear controller and simulate the closed-loop behaviour of the linearized model and of the nonlinear model. As pictured on the figure, a magnetic suspension is made of a solenoid in which runs an exciting current i. Solenoids provide a simple means to generate strong magnetic fields. From Biot-Savart s law, the current passing through a solenoid generates a magnetic field and subsequently an electromagnetic force. In this way, an electric current is converted into mechanical motion. For a given exciting current, the electromagnetic force is not constant but depends on the distance x to the magnetic kernel, more precisely the dependence is in 1 x 2. In the given set-up, a ferro-magnetic sphere lies close to the solenoid. If it is close enough to the coil, the electromagnetic force overcomes gravity and the sphere is attracted to the coil. On the contrary, if the sphere is far enough from the solenoid, gravity prevails and the magnet falls down. The system presented on the figure is radially symmetric, then we are only considering motion along the vertical axis, with the purpose of stabilizing the magnetic sphere around a reference position. The exciting current is an input to the system that can be adjusted to control the vertical location of the magnetic sphere. Model of the magnetic suspension system The first step for deriving a model of the magnetic suspension system is to calculate an expression of the magnetic force produced by the current running into the wired coil. We will do so by using the magnetic potential energy that is stored in the solenoid. The energy stored in an inductor is given by where W (x, i) = 1 2 L(x)i 2, (1) L(x) = L 0 + L x a. (2) The inductance thus depends on the distance x from the kernel. Here, a is a characteristic length. 1. Derive the equation for the magnetic force F applied to the sphere as a function of the distance x. You are given that F (x, i) = W (x, i) x 2

3 The minus sign corresponds to the convention we used for the direction of the forces as shown in the figure on the first page. Substituting equation (2) in (1) and performing the partial differentiation w.r.t. we acquire: W (x, i) F (x, i) = x L 1 a = 1 2 (1 + x i 2 a )2 L 1 = 2a(1 + x i 2 a )2 x 2. Sketch F (x, i cnst ) as a function of x. Explain in a few words your observations. The sketch is depicted in Figure 2. As expected, the electromagnetic force goes down with the square of the distance from the solenoid. The maximum force is applied when x = 0, or when the ball has touched the coil as depicted in Figure. Figure 2: Electromagnetic force on the sphere. 3. By applying Newton s law, derive the differential equation modeling the evolution of the location of the sphere x(t). To what class of differential equations does it belong to? 3

4 Writing down Newton s first law and using the sign conventions depicted in the figure, we have: F = F grav F mag L 1 mẍ(t) = mg ( ) 2 i 2 (t) 2a 1 + x(t) a What we get is a second order nonlinear differential equation. 4. By applying the change of coordinates x = 1 + x a, transform the differential equation that you have obtained into (3). Note: after the change of coordinates, x is relabeled back to x in Eq. (3). Note also that x is dimensionless in the new coordinate frame. Making the above substitution, written also as x(t) = a x(t) a we obtain L 1 a x(t) = g 2ma x 2 (t) i 2 (t) ẍ(t) = 1 ( g L 1 i 2 ) (t) a 2ma x 2, (3) (t) where we changed the notation back to x from x. 5. Now you need to identify the right parameter a of (3). For this, you are provided with a locked Simulink model that you need to download from the course website. This is an identification experiment, so the locked block is similar to a real physical systems that you model using (3), but for which you do not know the parameter a. To identify this parameter, the idea is to send input signals into the locked block and your model, compare the outputs and make them match by playing with a. Your task is schematically depicted in Figure 5. First you need to build a model of the nonlinear equation (3), and then you can run the identification experiment. Reasonable values for the input current is i = 0.3 and the initial (normalized) distance of the ball is x 0 = 10. The values for the other parameters are L 1 = 2 H and m = 100 g. Hint : the parameter a should be between 2mm and 6mm. For the comparison, we simulate both the given system model and the nonlinear model we derived. We define the error as the difference of the corresponding outputs of the 4

5 Real!system! Input!! Model!!! a /! a Figure 3: Identification setup. two models. The procedure for identifying the missing parameter a is basically a trialand-error. After a few efforts, it turns out that the value a = 4mm results to perfect fitting of the two responses (see first scope in Figure 5). A Simulink diagram for the aforementioned comparison is presented in Figure 5. The second scope in Figure 5 indicates the sensitivity of the system s response to the value of the parameter a. In that case, we used a value of a = 3.8mm instead of the correct one and the error is already large due to this small mismatch. Finally, note that identifying the parameter a was relatively straightforward in this case due to the fact that it was the only unknown and we already had an estimate of the region within which it resides. In practice though we might have to identify more than one uncertain parameters of a model. In these cases more sophisticated system identification and/or optimization methods are used. 6. Consider a numerical instance with, i = 300 ma. Plot the acceleration L 1 2ma x as a 2 function of x for x varying from 3 up to 8, using a grid of 100 points. On the same figure, plot the gravitational acceleration g. What do you observe? At what distance away from the inductor will the sphere start falling towards the ground? Consider the gravitational acceleration as g = 9.88 m s. 2 i 2 At any distance x > , the gravitational acceleration will become bigger than the one caused by the magnet and the sphere will start falling towards the ground. This result is depicted in Figure 6, along with the Matlab code given below. 1 i = 0.3; m = 0.1; L1 = 2; a = 0.004; g = 9.88; 2 x =linspace(3, 8); 3 acc_mag (2*m*a*x.^2)); 5

6 In1 Out1 Step Scope System b Constant 1 s Integrator 1 s Integrator1 Gain1 Divide c Nonlinear Model Math Function u 2 Math Function1 u 2 Figure 4: Comparison of real system and nonlinear model for parameter identification. Figure 5: Model matching error for a = 4mm and a = 3.8mm. 6

7 Accelerations as a function of the distance x x (dimensionless quantity) Figure 6: Intersection point of gravitational (green) and magnetic (blue) acceleration. 7

8 4 plot(x, acc_mag(x)); hold on; plot(x, g, 'g','linewidth',2); 5 lgd1 = title('accelerations as a function of the distance $x$'); 6 lgd2 = xlabel('$x$ (dimensionless quantity)'); ylabel('accelerations'); 7 lgd3 = legend('$\alpha_{\mathrm{magnetic}}$','g'); 8 set(lgd1,'interpreter','latex'); 9 set(lgd2,'interpreter','latex'); 10 set(lgd3,'interpreter','latex'); pt = fzero(@(x) acc_mag(x) g, 5); % Find intersection point 13 coord = [pt, acc_mag(pt)] % The coordinates Linearization The nonlinear model (3) translates to ẍ = c x 2 i 2 + b, (4) where c = L 2ma 2 and b = g/a. In order to apply linear control theory (which is the exclusive topic of this course) you need to linearize the nonlinear model (4) at an equilibrium point. An equilibrium point is characterized by ẋ = 0 and ẍ = 0. To each value of the current i e, there corresponds an equilibrium point x e. 7. Your first task is to compute 1 the equilibrium current i e given that you want to control the ball in the vicinity of an equilibrium x e = 10. Setting the acceleration ẍ = 0 in (4) yields 0 = c xe 2 ie 2 + b i e = ±x e b c (5) The equlibrium current (we consider positive current values) is i e = A. 8. Next, you need to linearize the model in the neighborhood of the equilibrium (x e, i e ). To this end, define f (x, i) := c x i 2 + b to be the right hand side of (4). The linearized 2 equation (4) will have the form δẍ = f δx + f x i (6) (xe,ie)δi, (xe,i e) 1 This task may be nontrivial for more complex systems; in that case the matlab function trim may help. 8

9 where δx = x x e and δi = i i e. Note that the origin of the coordinate frame is shifted to the equilibrium for the linear model. Linearization of the system corresponds to forming the Taylor expansion of the nonlinear function around the given (equilibrium) point and keeping only the linear term, discarding higher order ones. In this sense, we can write f (x, i) f (x e, i e ) + f (x x e ) + f x i i e ) + O (xe,ie)(i 2 (x, i) (7) (xe,i e) The first term of the above equation vanishes from the definition of the equilibrium point, hence we are left with equation (6). Hence we have to compute the partial derivatives appearing above. These are easily derived as f x = 2ci e 2 (xe,ie) xe 3 f = 2ci e i xe 2 (xe,i e) The quality of the approximation of the nonlinear model with the linear one depends heavily on the nonlinearities that appear in the original system. Accordingly, the linear model might perform reasonably only in the very close proximity of the equilibrium point (x e, i e ). 9. The linearized model is now a second order ordinary differential equation of the form δẍ = a 0 δx + b 0 δi, where a 0 and b 0 are equal to the partial derivatives found in (6). From a linear control perspective δi is now the input of the system and δx the output of the system. Find the transfer function from δi to δx, that is, a function of the form G(s) = Y (s) U(s), where Y (s) is the Laplace transform of δx and U(s) the Laplace transform of δi. 9

10 Taking the Laplace transform of second order ODE, and after using the notation introduced above, we have s 2 Y (s) = a 0 Y (s) + b 0 U(s) Y (s) U(s) = b 0 s 2 a 0 Y (s) U(s) = s 2 494, (8) using the numbers computed above. Note that the transfer function has zero initial condition, since the linearized system is shifted to the origin, as mentioned above. 10. Create a simulink model for both the linear, and the nonlinear models of your systems. Validate your model by comparing the trajectories of the nonlinear system and the linear system starting from initial conditions close to the equilibrium (x e, i e ). What do you conclude about the region of validity of your linear model? Hint: Do not forget to add the the equilibrium value of the state when simulating the system. The Simulink model is depicted in Figure 10. Observe that we have to ensure that the input of the linear model δi = i i e is kept small, i.e., we operate close to the equilibrium point. Accordingly, the output of the linear system is δx = x x e, thus we have to add the equilibrium position x e when we compare the response with that of the nonlinear model. In the simulated case we used i = 0.7A. The responses of the two models are depicted in Figure 10. Note that the simulation time is very small (0.1 s) and the two responses have already started to deviate. This is a result of the highly unstable nonlinear model which renders the linearization valid for only a small region around the equilibrium. 11. Optional: repeat point 8 but now use Matlab to do the linearization for you. The following code 2 returns directly the transfer function of the linearized model: [A,B,C,D] = linmod('levitation',xe,ie); sys_lin = tf(ss(a,b,c,d)); where levitation is the following Simulink diagram and xe and ie are the equilibrium values obtained in point 7. 2 Note that the function linmod returns the so-called state-space representation of the system given by matrices A, B, C and D; this representation is then converted to a transfer function by tf. State-space representation is not covered in this course and is the topic of a follow-up more advanced control course. 10

11 b Constant 1 s Integrator 1 s Integrator1 Math Gain1 c Divide Function u 2 Scope1 Math Function1 u 2 Step i_e b_0 s 2+ a_0 Transfer Fcn Constant2 x_e Constant1 Figure 7: Linear and nonlinear model simulation. Figure 8: Linear and nonlinear model comparison. 11

12 The constants b and c are the constants from Equation (4). Executing the commands above, we end up with a state-space and a transfer function representation of the linearized model around (x e, i e ). The state-space matrices are [ ] 0 1 A =, Controller [ 0 B = ], C = [ 1 0 ], D = 0 The resulting transfer function is the one given in equation (8). After the modeling and the linearization, you should have the linear and the non-linear models of the system. The objective of this section is to design controller based on the linear model by using Ziegler-Nichols second method and Model-Matching method, and to apply the controllers to both the linear and the non-linear models. Figure 9 shows the top-level block diagram of the closed-loop system, where C(s) denotes the controller and G(s) denotes the linear model of the system. Recall the results from the precious steps. The linear model of the system is: G(s) = Y (s) U(s) = s 2 494, (9) and the equilibrium is i e = and x e =

13 Figure 9: The top-level block diagram of the closed-loop system 13. Your first task is to use Ziegler-Nichols method to design a PID controller and apply it to both the linear and non-linear models. Note that the Z-N rule assumes that the system has a transfer function of the following form Ke st s+a. However, our system G(s) is a second order system. So the parameters given by the Z-N rule might not be perfect. In this case, you need to tune the PID parameters manually. Hint: For the first step of Z-N method, you can choose K pc ( 1, 0.5). For the second step, you can use the Matlab commands feedback() and step() to check whether the performance of the closed-loop system is good enough. If it is not, try to increase the values of T d and T i. : Firstly, we pick K pc = 0.75 and apply it as a proportional controller to the linear system. The plot is depicted in Figure 10, along with the Matlab code given below. Figure 10: The step response of the closed-loop system with K pc =

14 1 g = 9.88; a = 0.004; m = 0.1; L = 2; 2 b = g/a; 3 c = L/(2*m*a^2); 4 5 xe = 10; 6 ie = sqrt(b/c)*abs(xe); 7 8 a0 = 2*c*ie^2/xe^3; 9 b0 = 2*c*ie/xe^2; 10 sys_lin = tf(b0,[1 0 a0]); Kpc = 0.75; 13 sys_cl1 = feedback(sys_lin*kpc,1); 14 step(sys_cl1); The frequency of oscillation can be measured T c = By applying the second step of Z-N method, the PID parameters are set to be K p = 0.6 K pc, T i = 0.5 T c, T d = T c. (10) Figure 11: The closed-loop performance with K p = 0.6 K pc, T i = 0.5 T c, T d = T c. The closed-loop performance with the parameters in (10) is shown in Figure 11. Recall 14

15 the hint given in question (13). The performance can be improved by increasing T i and T d. Then we set: T i = T c, T d = T c. (11) The step response of the closed-loop system with the tuned parameters in (11) is depicted in Figure 12. The Matlab code can be found below. Figure 12: The closed-loop performance with tuned parameters, K p = 0.6 K pc, T i = T c, T d = T c. 1 Kpc = 0.75; Tc = ; 2 Kp = 0.6 * Kpc; Ti = 0.5 * Tc*2; Td = * Tc*4; 3 Ki = Kp / Ti; 4 Kd = Kp * Td; 5 Tf = controller_pid = pid(kp,ki,kd,tf); 7 8 sys_cl2 = sys_lin*pid_c/(1+sys_lin*controller_pid); 9 step(sys_cl2); 14. Recall the simulink file, which was created in the linearisation step. Create a model for the PID controller and apply it to both the linear and non-linear models. (Hint: use 15

16 the blocks integrator and derivative, and don t forget to subtract the equilibrium offset x e from the output, and add i e to the input when you apply the controller to the non-linear model). Note that in practice we usually place the derivative block directly after the system and take the output of the system as the input of the derivative. The reason for this is that, if the derivative block is placed after the reference signal, which in our case is a step signal, we will have a impulse signal for the derivative block (recall that the derivative of step signal is an impulse), which is often unexpected in a real system. The structure of the PID controller is shown in Figure 13. : Figure 13: A practical structure of PID controller The Simulink diagram in Figure 14 depicts the structure of the closed-loop systems for both the linear and non-linear models. Figure 15 shows the step response of the closed-loop systems w.r.t different reference, where the yellow curve represents the performance of the linear model and the purple curve depicts the performance of the non-linear model. It is obvious that by increasing the reference, the difference between these two systems becomes bigger. When the reference is greater than 2.65, the PID controller cannot stabilize the non-linear system any more. The reason is that the greater the value of the reference is, the bigger the distance between the state of the non-linear model and the equilibrium will be. Then the linear model cannot approximate the non-linear model. Of course the PID controller designed on the linear model won t work any more. 15. Optional Design a PID controller using Model-Matching method. Suppose the desired system is: τ(s) = 1 τ m s + 1. (12) where τ m = 0.1. Compute the controller and find the parameters K P, K I and K D. Apply the PID controller to the linear model and compare the behaviour of the closed- 16

17 Figure 14: The Simulink diagram for both linear and non-linear models loop system with the desired system. (Hint: you can use the Matlab commands pid(), feedback() and step().). Is the closed-loop system stable? If not, why? : The parameters are equal to: K p = 0, K i = a 0 b 0 τ m, K d = 1 b 0 τ m. (13) By the theory, we know that the PID controller with the parameters in (13) should be able to stabilize the linear system. However, by applying the PID controller to the linear system in Matlab (The code is given below.), we can observe that the closed-loop system s T f s+1, is unstable. The reason is that Matlab uses an approximate derivative D Mat (s) = where T f is filter time constant. So actually we are using an approximate PID controller to stabilize our system. It yields that we can not guarantee that in any case all the unstable poles of the original system can be cancelled by the approximate PID controller. Then the closed-loop system can be unstable. 1 tau_m = 0.1; 2 sys_desired = tf([1],[tau_m 1]); 3 17

18 4 Kp = 0; 5 Ki = a0/b0/tau_m; 6 Kd = 1/b0/tau_m; 7 8 Tf = controller_pid = pid(kp,ki,kd,tf); 10 controller_t = tf([1 0 a0],[b0*tao 0]); 11 CL_PID = sys_lin*controller_pid/(1+sys_lin*controller_pid); 12 CL_T = sys_lin*controller_t/(1+sys_lin*controller_t); figure(1); 15 step(sys_desired); 16 figure(2); 17 step(cl_pid); 18 figure(3); 19 step(cl_t); 18

19 (a) r = 0.5 (b) r = 2.6 (c) r = Figure 15: The step response of the closed-loop system w.r.t difference r.

CONTROL SYSTEMS LABORATORY ECE311 LAB 1: The Magnetic Ball Suspension System: Modelling and Simulation Using Matlab

CONTROL SYSTEMS LABORATORY ECE311 LAB 1: The Magnetic Ball Suspension System: Modelling and Simulation Using Matlab CONTROL SYSTEMS LABORATORY ECE311 LAB 1: The Magnetic Ball Suspension System: Modelling and Simulation Using Matlab 1 Introduction and Purpose The purpose of this experiment is to familiarize you with

More information

DISTURBANCE ATTENUATION IN A MAGNETIC LEVITATION SYSTEM WITH ACCELERATION FEEDBACK

DISTURBANCE ATTENUATION IN A MAGNETIC LEVITATION SYSTEM WITH ACCELERATION FEEDBACK DISTURBANCE ATTENUATION IN A MAGNETIC LEVITATION SYSTEM WITH ACCELERATION FEEDBACK Feng Tian Department of Mechanical Engineering Marquette University Milwaukee, WI 53233 USA Email: feng.tian@mu.edu Kevin

More information

YTÜ Mechanical Engineering Department

YTÜ Mechanical Engineering Department YTÜ Mechanical Engineering Department Lecture of Special Laboratory of Machine Theory, System Dynamics and Control Division Coupled Tank 1 Level Control with using Feedforward PI Controller Lab Date: Lab

More information

Lab 5a: Magnetic Levitation (Week 1)

Lab 5a: Magnetic Levitation (Week 1) ME C134 / EE C128 Fall 2017 Lab 5a Lab 5a: Magnetic Levitation (Week 1) Magnetism, as you recall from physics class, is a powerful force that causes certain items to be attracted to refrigerators. Dave

More information

Wide Range Stabilization Of A Magnetic Levitation System Using Analog Fuzzy Supervisory Phase Lead Compensated Controller

Wide Range Stabilization Of A Magnetic Levitation System Using Analog Fuzzy Supervisory Phase Lead Compensated Controller 11 International Conference on Modeling, Simulation and Control IPCSIT vol.1 (11) (11) IACSIT Press, Singapore Wide Range Stabilization f A Magnetic Levitation System Using Analog Fuzzy Supervisory Phase

More information

Exercise 8: Level Control and PID Tuning. CHEM-E7140 Process Automation

Exercise 8: Level Control and PID Tuning. CHEM-E7140 Process Automation Exercise 8: Level Control and PID Tuning CHEM-E740 Process Automation . Level Control Tank, level h is controlled. Constant set point. Flow in q i is control variable q 0 q 0 depends linearly: R h . a)

More information

Inter-Ing 2005 INTERDISCIPLINARITY IN ENGINEERING SCIENTIFIC CONFERENCE WITH INTERNATIONAL PARTICIPATION, TG. MUREŞ ROMÂNIA, NOVEMBER 2005.

Inter-Ing 2005 INTERDISCIPLINARITY IN ENGINEERING SCIENTIFIC CONFERENCE WITH INTERNATIONAL PARTICIPATION, TG. MUREŞ ROMÂNIA, NOVEMBER 2005. Inter-Ing 5 INTERDISCIPLINARITY IN ENGINEERING SCIENTIFIC CONFERENCE WITH INTERNATIONAL PARTICIPATION, TG. MUREŞ ROMÂNIA, 1-11 NOVEMBER 5. FUZZY CONTROL FOR A MAGNETIC LEVITATION SYSTEM. MODELING AND SIMULATION

More information

Lecture 5 Classical Control Overview III. Dr. Radhakant Padhi Asst. Professor Dept. of Aerospace Engineering Indian Institute of Science - Bangalore

Lecture 5 Classical Control Overview III. Dr. Radhakant Padhi Asst. Professor Dept. of Aerospace Engineering Indian Institute of Science - Bangalore Lecture 5 Classical Control Overview III Dr. Radhakant Padhi Asst. Professor Dept. of Aerospace Engineering Indian Institute of Science - Bangalore A Fundamental Problem in Control Systems Poles of open

More information

Index. Index. More information. in this web service Cambridge University Press

Index. Index. More information.  in this web service Cambridge University Press A-type elements, 4 7, 18, 31, 168, 198, 202, 219, 220, 222, 225 A-type variables. See Across variable ac current, 172, 251 ac induction motor, 251 Acceleration rotational, 30 translational, 16 Accumulator,

More information

Übersetzungshilfe / Translation aid (English) To be returned at the end of the exam!

Übersetzungshilfe / Translation aid (English) To be returned at the end of the exam! Prüfung Regelungstechnik I (Control Systems I) Prof. Dr. Lino Guzzella 3.. 24 Übersetzungshilfe / Translation aid (English) To be returned at the end of the exam! Do not mark up this translation aid -

More information

EECS C128/ ME C134 Final Wed. Dec. 14, am. Closed book. One page, 2 sides of formula sheets. No calculators.

EECS C128/ ME C134 Final Wed. Dec. 14, am. Closed book. One page, 2 sides of formula sheets. No calculators. Name: SID: EECS C128/ ME C134 Final Wed. Dec. 14, 211 81-11 am Closed book. One page, 2 sides of formula sheets. No calculators. There are 8 problems worth 1 points total. Problem Points Score 1 16 2 12

More information

Massachusetts Institute of Technology Department of Mechanical Engineering Dynamics and Control II Design Project

Massachusetts Institute of Technology Department of Mechanical Engineering Dynamics and Control II Design Project Massachusetts Institute of Technology Department of Mechanical Engineering.4 Dynamics and Control II Design Project ACTIVE DAMPING OF TALL BUILDING VIBRATIONS: CONTINUED Franz Hover, 5 November 7 Review

More information

H-infinity Model Reference Controller Design for Magnetic Levitation System

H-infinity Model Reference Controller Design for Magnetic Levitation System H.I. Ali Control and Systems Engineering Department, University of Technology Baghdad, Iraq 6043@uotechnology.edu.iq H-infinity Model Reference Controller Design for Magnetic Levitation System Abstract-

More information

NONLINEAR CONTROL OF A MAGNETIC LEVITATION SYSTEM USING FEEDBACK LINEARIZATION

NONLINEAR CONTROL OF A MAGNETIC LEVITATION SYSTEM USING FEEDBACK LINEARIZATION NONLINEAR CONTROL OF A MAGNETIC LEVITATION SYSTEM USING FEEDBACK LINEARIZATION *Raghuwansh Singh ABSTRACT The given problem is modeling and testing a magnetic levitation of system which will levitate a

More information

Inter-Ing 2005 INTERDISCIPLINARITY IN ENGINEERING SCIENTIFIC CONFERENCE WITH INTERNATIONAL PARTICIPATION, TG. MUREŞ ROMÂNIA, NOVEMBER 2005.

Inter-Ing 2005 INTERDISCIPLINARITY IN ENGINEERING SCIENTIFIC CONFERENCE WITH INTERNATIONAL PARTICIPATION, TG. MUREŞ ROMÂNIA, NOVEMBER 2005. Inter-Ing 5 INTERDISCIPLINARITY IN ENGINEERING SCIENTIFIC CONFERENCE WITH INTERNATIONAL PARTICIPATION, TG. MUREŞ ROMÂNIA, 1-11 NOVEMBER 5. DESIGN OF A SIMPLE DIGITAL CONTROLLER FOR A MAGNETIC LEVITATION

More information

Prüfung Regelungstechnik I (Control Systems I) Übersetzungshilfe / Translation aid (English) To be returned at the end of the exam!

Prüfung Regelungstechnik I (Control Systems I) Übersetzungshilfe / Translation aid (English) To be returned at the end of the exam! Prüfung Regelungstechnik I (Control Systems I) Prof. Dr. Lino Guzzella 29. 8. 2 Übersetzungshilfe / Translation aid (English) To be returned at the end of the exam! Do not mark up this translation aid

More information

Analysis and Design of Control Systems in the Time Domain

Analysis and Design of Control Systems in the Time Domain Chapter 6 Analysis and Design of Control Systems in the Time Domain 6. Concepts of feedback control Given a system, we can classify it as an open loop or a closed loop depends on the usage of the feedback.

More information

(Refer Slide Time: 00:32)

(Refer Slide Time: 00:32) Nonlinear Dynamical Systems Prof. Madhu. N. Belur and Prof. Harish. K. Pillai Department of Electrical Engineering Indian Institute of Technology, Bombay Lecture - 12 Scilab simulation of Lotka Volterra

More information

Here are some internet links to instructional and necessary background materials:

Here are some internet links to instructional and necessary background materials: The general areas covered by the University Physics course are subdivided into major categories. For each category, answer the conceptual questions in the form of a short paragraph. Although fewer topics

More information

1 x(k +1)=(Φ LH) x(k) = T 1 x 2 (k) x1 (0) 1 T x 2(0) T x 1 (0) x 2 (0) x(1) = x(2) = x(3) =

1 x(k +1)=(Φ LH) x(k) = T 1 x 2 (k) x1 (0) 1 T x 2(0) T x 1 (0) x 2 (0) x(1) = x(2) = x(3) = 567 This is often referred to as Þnite settling time or deadbeat design because the dynamics will settle in a Þnite number of sample periods. This estimator always drives the error to zero in time 2T or

More information

Übersetzungshilfe / Translation aid (English) To be returned at the end of the exam!

Übersetzungshilfe / Translation aid (English) To be returned at the end of the exam! Prüfung Regelungstechnik I (Control Systems I) Prof. Dr. Lino Guzzella 9. 8. 2 Übersetzungshilfe / Translation aid (English) To be returned at the end of the exam! Do not mark up this translation aid -

More information

SRV02-Series Rotary Experiment # 1. Position Control. Student Handout

SRV02-Series Rotary Experiment # 1. Position Control. Student Handout SRV02-Series Rotary Experiment # 1 Position Control Student Handout SRV02-Series Rotary Experiment # 1 Position Control Student Handout 1. Objectives The objective in this experiment is to introduce the

More information

Lab 3: Quanser Hardware and Proportional Control

Lab 3: Quanser Hardware and Proportional Control Lab 3: Quanser Hardware and Proportional Control The worst wheel of the cart makes the most noise. Benjamin Franklin 1 Objectives The goal of this lab is to: 1. familiarize you with Quanser s QuaRC tools

More information

EEL2216 Control Theory CT1: PID Controller Design

EEL2216 Control Theory CT1: PID Controller Design EEL6 Control Theory CT: PID Controller Design. Objectives (i) To design proportional-integral-derivative (PID) controller for closed loop control. (ii) To evaluate the performance of different controllers

More information

Theoretical physics. Deterministic chaos in classical physics. Martin Scholtz

Theoretical physics. Deterministic chaos in classical physics. Martin Scholtz Theoretical physics Deterministic chaos in classical physics Martin Scholtz scholtzzz@gmail.com Fundamental physical theories and role of classical mechanics. Intuitive characteristics of chaos. Newton

More information

AP Physics C Mechanics Objectives

AP Physics C Mechanics Objectives AP Physics C Mechanics Objectives I. KINEMATICS A. Motion in One Dimension 1. The relationships among position, velocity and acceleration a. Given a graph of position vs. time, identify or sketch a graph

More information

System Modeling: Motor position, θ The physical parameters for the dc motor are:

System Modeling: Motor position, θ The physical parameters for the dc motor are: Dept. of EEE, KUET, Sessional on EE 3202: Expt. # 2 2k15 Batch Experiment No. 02 Name of the experiment: Modeling of Physical systems and study of their closed loop response Objective: (i) (ii) (iii) (iv)

More information

Modeling and Experimentation: Compound Pendulum

Modeling and Experimentation: Compound Pendulum Modeling and Experimentation: Compound Pendulum Prof. R.G. Longoria Department of Mechanical Engineering The University of Texas at Austin Fall 2014 Overview This lab focuses on developing a mathematical

More information

Lab 6a: Pole Placement for the Inverted Pendulum

Lab 6a: Pole Placement for the Inverted Pendulum Lab 6a: Pole Placement for the Inverted Pendulum Idiot. Above her head was the only stable place in the cosmos, the only refuge from the damnation of the Panta Rei, and she guessed it was the Pendulum

More information

Introduction to centralized control

Introduction to centralized control Industrial Robots Control Part 2 Introduction to centralized control Independent joint decentralized control may prove inadequate when the user requires high task velocities structured disturbance torques

More information

Course Summary. The course cannot be summarized in one lecture.

Course Summary. The course cannot be summarized in one lecture. Course Summary Unit 1: Introduction Unit 2: Modeling in the Frequency Domain Unit 3: Time Response Unit 4: Block Diagram Reduction Unit 5: Stability Unit 6: Steady-State Error Unit 7: Root Locus Techniques

More information

YTÜ Mechanical Engineering Department

YTÜ Mechanical Engineering Department YTÜ Mechanical Engineering Department Lecture of Special Laboratory of Machine Theory, System Dynamics and Control Division Coupled Tank 1 Level Control with using Feedforward PI Controller Lab Report

More information

DOUBLE ARM JUGGLING SYSTEM Progress Presentation ECSE-4962 Control Systems Design

DOUBLE ARM JUGGLING SYSTEM Progress Presentation ECSE-4962 Control Systems Design DOUBLE ARM JUGGLING SYSTEM Progress Presentation ECSE-4962 Control Systems Design Group Members: John Kua Trinell Ball Linda Rivera Introduction Where are we? Bulk of Design and Build Complete Testing

More information

557. Radial correction controllers of gyroscopic stabilizer

557. Radial correction controllers of gyroscopic stabilizer 557. Radial correction controllers of gyroscopic stabilizer M. Sivčák 1, J. Škoda, Technical University in Liberec, Studentská, Liberec, Czech Republic e-mail: 1 michal.sivcak@tul.cz; jan.skoda@pevnosti.cz

More information

Übersetzungshilfe / Translation aid (English) To be returned at the end of the exam!

Übersetzungshilfe / Translation aid (English) To be returned at the end of the exam! Prüfung Regelungstechnik I (Control Systems I) Prof. Dr. Lino Guzzella 5. 2. 2 Übersetzungshilfe / Translation aid (English) To be returned at the end of the exam! Do not mark up this translation aid -

More information

Index Terms Magnetic Levitation System, Interval type-2 fuzzy logic controller, Self tuning type-2 fuzzy controller.

Index Terms Magnetic Levitation System, Interval type-2 fuzzy logic controller, Self tuning type-2 fuzzy controller. Comparison Of Interval Type- Fuzzy Controller And Self Tuning Interval Type- Fuzzy Controller For A Magnetic Levitation System Shabeer Ali K P 1, Sanjay Sharma, Dr.Vijay Kumar 3 1 Student, E & CE Department,

More information

Lecture 14 - Using the MATLAB Control System Toolbox and Simulink Friday, February 8, 2013

Lecture 14 - Using the MATLAB Control System Toolbox and Simulink Friday, February 8, 2013 Today s Objectives ENGR 105: Feedback Control Design Winter 2013 Lecture 14 - Using the MATLAB Control System Toolbox and Simulink Friday, February 8, 2013 1. introduce the MATLAB Control System Toolbox

More information

Introduction to centralized control

Introduction to centralized control ROBOTICS 01PEEQW Basilio Bona DAUIN Politecnico di Torino Control Part 2 Introduction to centralized control Independent joint decentralized control may prove inadequate when the user requires high task

More information

Control Using Sliding Mode Of the Magnetic Suspension System

Control Using Sliding Mode Of the Magnetic Suspension System International Journal of Electrical & Computer Sciences IJECS-IJENS Vol:10 No:03 1 Control Using Sliding Mode Of the Magnetic Suspension System Yousfi Khemissi Department of Electrical Engineering Najran

More information

State Feedback MAE 433 Spring 2012 Lab 7

State Feedback MAE 433 Spring 2012 Lab 7 State Feedback MAE 433 Spring 1 Lab 7 Prof. C. Rowley and M. Littman AIs: Brandt Belson, onathan Tu Princeton University April 4-7, 1 1 Overview This lab addresses the control of an inverted pendulum balanced

More information

Inductors Maxwell s equations

Inductors Maxwell s equations Lecture 19 Chapter 34 Physics II Inductors Maxwell s equations Course website: http://faculty.uml.edu/andriy_danylov/teaching/physicsii Inductors Inductors (solenoids) store potential energy in a form

More information

Chapter 13 Digital Control

Chapter 13 Digital Control Chapter 13 Digital Control Chapter 12 was concerned with building models for systems acting under digital control. We next turn to the question of control itself. Topics to be covered include: why one

More information

CL Digital Control

CL Digital Control CL 692 - Digital Control Kannan M. Moudgalya Department of Chemical Engineering Associate Faculty Member, Systems and Control IIT Bombay Autumn 26 CL 692 Digital Control, IIT Bombay 1 c Kannan M. Moudgalya,

More information

PHYSICS. Chapter 29 Lecture FOR SCIENTISTS AND ENGINEERS A STRATEGIC APPROACH 4/E RANDALL D. KNIGHT

PHYSICS. Chapter 29 Lecture FOR SCIENTISTS AND ENGINEERS A STRATEGIC APPROACH 4/E RANDALL D. KNIGHT PHYSICS FOR SCIENTISTS AND ENGINEERS A STRATEGIC APPROACH 4/E Chapter 29 Lecture RANDALL D. KNIGHT Chapter 29 The Magnetic Field IN THIS CHAPTER, you will learn about magnetism and the magnetic field.

More information

Inverted Pendulum. Objectives

Inverted Pendulum. Objectives Inverted Pendulum Objectives The objective of this lab is to experiment with the stabilization of an unstable system. The inverted pendulum problem is taken as an example and the animation program gives

More information

Process Control Exercise 2

Process Control Exercise 2 Process Control Exercise 2 1 Distillation Case Study Distillation is a method of separating liquid mixtures by means of partial evaporation. The volatility α of a compound determines how enriched the liquid

More information

University of Utah Electrical & Computer Engineering Department ECE 3510 Lab 9 Inverted Pendulum

University of Utah Electrical & Computer Engineering Department ECE 3510 Lab 9 Inverted Pendulum University of Utah Electrical & Computer Engineering Department ECE 3510 Lab 9 Inverted Pendulum p1 ECE 3510 Lab 9, Inverted Pendulum M. Bodson, A. Stolp, 4/2/13 rev, 4/9/13 Objectives The objective of

More information

Lecture 12. Upcoming labs: Final Exam on 12/21/2015 (Monday)10:30-12:30

Lecture 12. Upcoming labs: Final Exam on 12/21/2015 (Monday)10:30-12:30 289 Upcoming labs: Lecture 12 Lab 20: Internal model control (finish up) Lab 22: Force or Torque control experiments [Integrative] (2-3 sessions) Final Exam on 12/21/2015 (Monday)10:30-12:30 Today: Recap

More information

Multivariable Control Laboratory experiment 2 The Quadruple Tank 1

Multivariable Control Laboratory experiment 2 The Quadruple Tank 1 Multivariable Control Laboratory experiment 2 The Quadruple Tank 1 Department of Automatic Control Lund Institute of Technology 1. Introduction The aim of this laboratory exercise is to study some different

More information

ME scope Application Note 28

ME scope Application Note 28 App Note 8 www.vibetech.com 3/7/17 ME scope Application Note 8 Mathematics of a Mass-Spring-Damper System INTRODUCTION In this note, the capabilities of ME scope will be used to build a model of the mass-spring-damper

More information

Improving the Control System for Pumped Storage Hydro Plant

Improving the Control System for Pumped Storage Hydro Plant 011 International Conference on Computer Communication and Management Proc.of CSIT vol.5 (011) (011) IACSIT Press, Singapore Improving the Control System for Pumped Storage Hydro Plant 1 Sa ad. P. Mansoor

More information

Introduction to Controls

Introduction to Controls EE 474 Review Exam 1 Name Answer each of the questions. Show your work. Note were essay-type answers are requested. Answer with complete sentences. Incomplete sentences will count heavily against the grade.

More information

MAE143A Signals & Systems, Final Exam - Wednesday March 16, 2005

MAE143A Signals & Systems, Final Exam - Wednesday March 16, 2005 MAE13A Signals & Systems, Final Exam - Wednesday March 16, 5 Instructions This quiz is open book. You may use whatever written materials you choose including your class notes and the textbook. You may

More information

FARADAY S AND LENZ LAW B O O K P G

FARADAY S AND LENZ LAW B O O K P G FARADAY S AND LENZ LAW B O O K P G. 4 3 6-438 MOTIONAL EMF AND MAGNETIC FLUX (DERIVIATION) Motional emf = vbl Let a conducting rod being moved through a magnetic field B During time t 0 the rod has been

More information

Systems Analysis and Control

Systems Analysis and Control Systems Analysis and Control Matthew M. Peet Arizona State University Lecture 6: Generalized and Controller Design Overview In this Lecture, you will learn: Generalized? What about changing OTHER parameters

More information

Task 1 (24%): PID-control, the SIMC method

Task 1 (24%): PID-control, the SIMC method Final Exam Course SCE1106 Control theory with implementation (theory part) Wednesday December 18, 2014 kl. 9.00-12.00 SKIP THIS PAGE AND REPLACE WITH STANDARD EXAM FRONT PAGE IN WORD FILE December 16,

More information

Physics Lecture 01: MON 25 AUG

Physics Lecture 01: MON 25 AUG Physics 2113 Jonathan Dowling Isaac Newton (1642 1727) Physics 2113 Lecture 01: MON 25 AUG CH13: Gravitation I Version: 8/24/14 Michael Faraday (1791 1867) Who am I & Why am I Here? Office hours: Nicholson

More information

Nonlinear System Analysis

Nonlinear System Analysis Nonlinear System Analysis Lyapunov Based Approach Lecture 4 Module 1 Dr. Laxmidhar Behera Department of Electrical Engineering, Indian Institute of Technology, Kanpur. January 4, 2003 Intelligent Control

More information

MASSACHUSETTS INSTITUTE OF TECHNOLOGY DEPARTMENT OF PHYSICS. DOCTORAL GENERAL EXAMINATION PART 1 August 27, 2012 SOLUTIONS

MASSACHUSETTS INSTITUTE OF TECHNOLOGY DEPARTMENT OF PHYSICS. DOCTORAL GENERAL EXAMINATION PART 1 August 27, 2012 SOLUTIONS MASSACHUSETTS INSTITUTE OF TECHNOLOGY DEPARTMENT OF PHYSICS EDUCATION OFFICE PHONE (617)-253-4842 ROOM 4-352 FAX (617)-258-8319 DOCTORAL GENERAL EXAMINATION PART 1 August 27, 2012 SOLUTIONS 1 GROUP I Solutions

More information

Module 03 Modeling of Dynamical Systems

Module 03 Modeling of Dynamical Systems Module 03 Modeling of Dynamical Systems Ahmad F. Taha EE 3413: Analysis and Desgin of Control Systems Email: ahmad.taha@utsa.edu Webpage: http://engineering.utsa.edu/ taha February 2, 2016 Ahmad F. Taha

More information

Computer Algebra for Physics Examples

Computer Algebra for Physics Examples Computer Algebra for Physics Examples Electrostatics, Magnetism, Circuits and Mechanics of Charged Particles Part Magnetic Field Leon Magiera and Josef Böhm III. Magnetic Field A magnetic field can be

More information

The GENESIS Project FIELD OF NEGATIVE ENERGY INTRODUCTION

The GENESIS Project FIELD OF NEGATIVE ENERGY INTRODUCTION The GENESIS Project REVISED Edition INTRODUCTION Existing physics tells us that fading oxilations faces the same direction as time-flow. To prevent fading radically, we have to find a time-flow formulation

More information

is to accounting. Arithmetic provides the notation

is to accounting. Arithmetic provides the notation 221. 20-5 Mathematics - Course 221 THE DERIVATIVE IN SCIENCE AND TECHNOLOGY I Some Common Differential Equations CalculUs is to modern science and technology as arithmetic is to accounting. Arithmetic

More information

Part II. Advanced PID Design Methods

Part II. Advanced PID Design Methods Part II Advanced PID Design Methods 54 Controller transfer function C(s) = k p (1 + 1 T i s + T d s) (71) Many extensions known to the basic design methods introduced in RT I. Four advanced approaches

More information

Faraday s Law of Induction I

Faraday s Law of Induction I Faraday s Law of Induction I Physics 2415 Lecture 19 Michael Fowler, UVa Today s Topics Magnetic Permeability Faraday s Law of Induction Lenz s Law Paramagnets and Diamagnets Electromagnets Electromagnets

More information

AP Physics C. Magnetism - Term 4

AP Physics C. Magnetism - Term 4 AP Physics C Magnetism - Term 4 Interest Packet Term Introduction: AP Physics has been specifically designed to build on physics knowledge previously acquired for a more in depth understanding of the world

More information

CHAPTER 10: STABILITY &TUNING

CHAPTER 10: STABILITY &TUNING When I complete this chapter, I want to be able to do the following. Determine the stability of a process without control Determine the stability of a closed-loop feedback control system Use these approaches

More information

Automatic Control (TSRT15): Lecture 4

Automatic Control (TSRT15): Lecture 4 Automatic Control (TSRT15): Lecture 4 Tianshi Chen Division of Automatic Control Dept. of Electrical Engineering Email: tschen@isy.liu.se Phone: 13-282226 Office: B-house extrance 25-27 Review of the last

More information

Linearize a non-linear system at an appropriately chosen point to derive an LTI system with A, B,C, D matrices

Linearize a non-linear system at an appropriately chosen point to derive an LTI system with A, B,C, D matrices Dr. J. Tani, Prof. Dr. E. Frazzoli 151-0591-00 Control Systems I (HS 2018) Exercise Set 2 Topic: Modeling, Linearization Discussion: 5. 10. 2018 Learning objectives: The student can mousavis@ethz.ch, 4th

More information

The ELECTROMAGNETIC FIELD

The ELECTROMAGNETIC FIELD The ELECTROMAGNETIC FIELD In the year 2003, it is still the case that the most important single scientific development for our world has been the understanding of the EM field. Although many played a role

More information

1 P a g e h t t p s : / / w w w. c i e n o t e s. c o m / Physics (A-level)

1 P a g e h t t p s : / / w w w. c i e n o t e s. c o m / Physics (A-level) 1 P a g e h t t p s : / / w w w. c i e n o t e s. c o m / Capacitance (Chapter 18): Physics (A-level) Every capacitor has two leads, each connected to a metal plate, where in between there is an insulating

More information

Feedback Control of Linear SISO systems. Process Dynamics and Control

Feedback Control of Linear SISO systems. Process Dynamics and Control Feedback Control of Linear SISO systems Process Dynamics and Control 1 Open-Loop Process The study of dynamics was limited to open-loop systems Observe process behavior as a result of specific input signals

More information

CHAPTER 5 ROBUSTNESS ANALYSIS OF THE CONTROLLER

CHAPTER 5 ROBUSTNESS ANALYSIS OF THE CONTROLLER 114 CHAPTER 5 ROBUSTNESS ANALYSIS OF THE CONTROLLER 5.1 INTRODUCTION Robust control is a branch of control theory that explicitly deals with uncertainty in its approach to controller design. It also refers

More information

CALIFORNIA INSTITUTE OF TECHNOLOGY Control and Dynamical Systems

CALIFORNIA INSTITUTE OF TECHNOLOGY Control and Dynamical Systems CDS 101 1. For each of the following linear systems, determine whether the origin is asymptotically stable and, if so, plot the step response and frequency response for the system. If there are multiple

More information

MCE693/793: Analysis and Control of Nonlinear Systems

MCE693/793: Analysis and Control of Nonlinear Systems MCE693/793: Analysis and Control of Nonlinear Systems Systems of Differential Equations Phase Plane Analysis Hanz Richter Mechanical Engineering Department Cleveland State University Systems of Nonlinear

More information

MAGNETIC EFFECTS OF CURRENT AND MAGNETISM

MAGNETIC EFFECTS OF CURRENT AND MAGNETISM UNIT III MAGNETIC EFFECTS OF CURRENT AND MAGNETISM Weightage 8 Marks Concept of magnetic field and Oersted s experiment Biot-savart law and its application to current carrying circular loop. Ampere s law

More information

11/13/2018. The Hall Effect. The Hall Effect. The Hall Effect. Consider a magnetic field perpendicular to a flat, currentcarrying

11/13/2018. The Hall Effect. The Hall Effect. The Hall Effect. Consider a magnetic field perpendicular to a flat, currentcarrying The Hall Effect Consider a magnetic field perpendicular to a flat, currentcarrying conductor. As the charge carriers move at the drift speed v d, they will experience a magnetic force F B = ev d B perpendicular

More information

Consider a magnetic field perpendicular to a flat, currentcarrying

Consider a magnetic field perpendicular to a flat, currentcarrying The Hall Effect Consider a magnetic field perpendicular to a flat, currentcarrying conductor. As the charge carriers move at the drift speed v d, they will experience a magnetic force F B = ev d B perpendicular

More information

Outline. Classical Control. Lecture 5

Outline. Classical Control. Lecture 5 Outline Outline Outline 1 What is 2 Outline What is Why use? Sketching a 1 What is Why use? Sketching a 2 Gain Controller Lead Compensation Lag Compensation What is Properties of a General System Why use?

More information

CHARGED PARTICLES IN FIELDS

CHARGED PARTICLES IN FIELDS The electron beam used to study motion of charged particles in electric and/or magnetic fields. CHARGED PARTICLES IN FIELDS Physics 41/61 Fall 01 1 Introduction The precise control of charged particles

More information

Lecture 9. Introduction to Kalman Filtering. Linear Quadratic Gaussian Control (LQG) G. Hovland 2004

Lecture 9. Introduction to Kalman Filtering. Linear Quadratic Gaussian Control (LQG) G. Hovland 2004 MER42 Advanced Control Lecture 9 Introduction to Kalman Filtering Linear Quadratic Gaussian Control (LQG) G. Hovland 24 Announcement No tutorials on hursday mornings 8-9am I will be present in all practical

More information

Lecture 5: Linear Systems. Transfer functions. Frequency Domain Analysis. Basic Control Design.

Lecture 5: Linear Systems. Transfer functions. Frequency Domain Analysis. Basic Control Design. ISS0031 Modeling and Identification Lecture 5: Linear Systems. Transfer functions. Frequency Domain Analysis. Basic Control Design. Aleksei Tepljakov, Ph.D. September 30, 2015 Linear Dynamic Systems Definition

More information

Properties of Open-Loop Controllers

Properties of Open-Loop Controllers Properties of Open-Loop Controllers Sven Laur University of Tarty 1 Basics of Open-Loop Controller Design Two most common tasks in controller design is regulation and signal tracking. Regulating controllers

More information

The Two Ball Newton s Cradle. Glendinning, Paul. MIMS EPrint: Manchester Institute for Mathematical Sciences School of Mathematics

The Two Ball Newton s Cradle. Glendinning, Paul. MIMS EPrint: Manchester Institute for Mathematical Sciences School of Mathematics The Two Ball Newton s Cradle Glendinning, Paul 11 MIMS EPrint: 11.65 Manchester Institute for Mathematical Sciences School of Mathematics The University of Manchester Reports available from: And by contacting:

More information

Design of Close loop Control for Hydraulic System

Design of Close loop Control for Hydraulic System Design of Close loop Control for Hydraulic System GRM RAO 1, S.A. NAVEED 2 1 Student, Electronics and Telecommunication Department, MGM JNEC, Maharashtra India 2 Professor, Electronics and Telecommunication

More information

First-Order Differential Equations

First-Order Differential Equations CHAPTER 1 First-Order Differential Equations 1. Diff Eqns and Math Models Know what it means for a function to be a solution to a differential equation. In order to figure out if y = y(x) is a solution

More information

Control Systems I. Lecture 7: Feedback and the Root Locus method. Readings: Jacopo Tani. Institute for Dynamic Systems and Control D-MAVT ETH Zürich

Control Systems I. Lecture 7: Feedback and the Root Locus method. Readings: Jacopo Tani. Institute for Dynamic Systems and Control D-MAVT ETH Zürich Control Systems I Lecture 7: Feedback and the Root Locus method Readings: Jacopo Tani Institute for Dynamic Systems and Control D-MAVT ETH Zürich November 2, 2018 J. Tani, E. Frazzoli (ETH) Lecture 7:

More information

Gaussian integrals. Calvin W. Johnson. September 9, The basic Gaussian and its normalization

Gaussian integrals. Calvin W. Johnson. September 9, The basic Gaussian and its normalization Gaussian integrals Calvin W. Johnson September 9, 24 The basic Gaussian and its normalization The Gaussian function or the normal distribution, ep ( α 2), () is a widely used function in physics and mathematical

More information

Physics 2212 GH Quiz #4 Solutions Spring 2016

Physics 2212 GH Quiz #4 Solutions Spring 2016 Physics 2212 GH Quiz #4 Solutions Spring 2016 I. (18 points) A bar (mass m, length L) is connected to two frictionless vertical conducting rails with loops of wire, in the presence of a uniform magnetic

More information

REUNotes08-CircuitBasics May 28, 2008

REUNotes08-CircuitBasics May 28, 2008 Chapter One Circuits (... introduction here... ) 1.1 CIRCUIT BASICS Objects may possess a property known as electric charge. By convention, an electron has one negative charge ( 1) and a proton has one

More information

ECEN 420 LINEAR CONTROL SYSTEMS. Lecture 6 Mathematical Representation of Physical Systems II 1/67

ECEN 420 LINEAR CONTROL SYSTEMS. Lecture 6 Mathematical Representation of Physical Systems II 1/67 1/67 ECEN 420 LINEAR CONTROL SYSTEMS Lecture 6 Mathematical Representation of Physical Systems II State Variable Models for Dynamic Systems u 1 u 2 u ṙ. Internal Variables x 1, x 2 x n y 1 y 2. y m Figure

More information

Chapter 6 - Solved Problems

Chapter 6 - Solved Problems Chapter 6 - Solved Problems Solved Problem 6.. Contributed by - James Welsh, University of Newcastle, Australia. Find suitable values for the PID parameters using the Z-N tuning strategy for the nominal

More information

EEE 550 ADVANCED CONTROL SYSTEMS

EEE 550 ADVANCED CONTROL SYSTEMS UNIVERSITI SAINS MALAYSIA Semester I Examination Academic Session 2007/2008 October/November 2007 EEE 550 ADVANCED CONTROL SYSTEMS Time : 3 hours INSTRUCTION TO CANDIDATE: Please ensure that this examination

More information

Experiment # 5 5. Coupled Water Tanks

Experiment # 5 5. Coupled Water Tanks Experiment # 5 5. Coupled Water Tanks 5.. Objectives The Coupled-Tank plant is a Two-Tank module consisting of a pump with a water basin and two tanks. The two tanks are mounted on the front plate such

More information

Physics 42 Exam 3 Spring 2016 Name: M T W

Physics 42 Exam 3 Spring 2016 Name: M T W Physics 42 Exam 3 Spring 2016 Name: M T W Conceptual Questions & Shorty (2 points each) 1. Which magnetic field causes the observed force? 2. If released from rest, the current loop will move a. upward

More information

Advanced Machine Learning Practical 4b Solution: Regression (BLR, GPR & Gradient Boosting)

Advanced Machine Learning Practical 4b Solution: Regression (BLR, GPR & Gradient Boosting) Advanced Machine Learning Practical 4b Solution: Regression (BLR, GPR & Gradient Boosting) Professor: Aude Billard Assistants: Nadia Figueroa, Ilaria Lauzana and Brice Platerrier E-mails: aude.billard@epfl.ch,

More information

Tuning PI controllers in non-linear uncertain closed-loop systems with interval analysis

Tuning PI controllers in non-linear uncertain closed-loop systems with interval analysis Tuning PI controllers in non-linear uncertain closed-loop systems with interval analysis J. Alexandre dit Sandretto, A. Chapoutot and O. Mullier U2IS, ENSTA ParisTech SYNCOP April 11, 2015 Closed-loop

More information

Video 5.1 Vijay Kumar and Ani Hsieh

Video 5.1 Vijay Kumar and Ani Hsieh Video 5.1 Vijay Kumar and Ani Hsieh Robo3x-1.1 1 The Purpose of Control Input/Stimulus/ Disturbance System or Plant Output/ Response Understand the Black Box Evaluate the Performance Change the Behavior

More information

Example: DC Motor Speed Modeling

Example: DC Motor Speed Modeling Page 1 of 5 Example: DC Motor Speed Modeling Physical setup and system equations Design requirements MATLAB representation and open-loop response Physical setup and system equations A common actuator in

More information

Worksheet 1: Integrators

Worksheet 1: Integrators Simulation Methods in Physics I WS 2014/2015 Worksheet 1: Integrators Olaf Lenz Alexander Schlaich Stefan Kesselheim Florian Fahrenberger Peter Košovan October 22, 2014 Institute for Computational Physics,

More information