The ball and beam system is laboratory equipment with high nonlinearity in its dynamics. The main ideas of the paper are to model the ball and beam system considering nonlinear factors and coupling effect and to design Proportional Integral Derivative (PID) controller to control the ball position. The system consists of an Arduino microcontroller. It receives the ball position from ultrasonic distance sensor and compares it with the desired distance which can be set by the user. PID algorithm has built in Arduino to process the difference in signal between desired and real position into control signal. Arduino sends control signal to the DC servomotor which rotate to change the ball position and meet the desired distance. MATLAB software program has been used to plot instant system response by interfacing Arduino with computer to determine the system characteristics with different values of controller parameters in order to choose parameters values which obtained best performance for the system.
The control of unstable systems is very important for many control problems. Since such systems prove dangerous to test in vertical position control of aerospace and air planes, we can only study them in laboratories by modeling the system. The ball and beam system is also called ‘balancing a ball on a beam’. It is generally linked to real control problems such as horizontally stabilizing an airplane during landing and in turbulent air flow. The aim of the system is to control the position of the ball to a desired reference point, and reject disturbances such as a push from a finger. The control signal can be derived by feeding back the position information of the ball. The control voltage signal goes to the direct current (DC) servomotor, and then the torque generated from the motor drives the beam to rotate to the desired angle. Thus, the ball can be located at the desired position.
The ball and beam system has been studied and used in the tests of new methods by many researchers. In particular, I. Petkoviç, M. Brezak, and R. Cupec have conducted artificial vision based tests of the system 1. P. Dadios and R. Baylon did a similar study on fuzzy logic 2. J. Whelan and J. V. Ringwood, on the other hand, used the same system for position tracking through a camera instead of sensors, using PID controllers 3. Sıtkı KOCAOĞLU, Hilmi KUŞÇU they Design and Control Ball and Beam System in which they used PID controllers 4.
The system consist of two separated systems, the first one is the DC servo motor which is an electromechanical system that receives electrical signal from controller and gives output as a rotational displacement (angle). The second is ball and beam model which is a mechanical system that receives rotational displacement (angle) from motor and converts it into a linear displacement.
2.1. DC Servo Motor ModelA common actuator in control systems is the DC motor. It directly provides rotary motion and, coupled with wheels or drums and cables, can provide translational motion. The electric equivalent circuit of the armature and the free-body diagram of the rotor are shown in Figure 1.
So the transfer function becomes as shown in Equation (1)
(1) |
A ball is placed on a beam, as shown in Figure 2, where it is allowed to roll the ball along the length of the beam. A lever arm is attached to the beam at one end and a servo gear at the other. As the servo gear turns by an angle , the lever changes the angle of the beam by . When the angle is changed from the horizontal position, gravity causes the ball to roll along the beam. A controller will be designed for this system so that the ball's position can be manipulated.
System Practical model is separated into two parts; the mechanical part which consists of beam, lever arm and DC servomotor horn and electrical part which consists of DC servomotor, ultrasonic sensor and Arduino microcontroller.
3.1. System Mechanical PartSelection of appropriate material for a mechanical part is an essential element of all engineering projects. The main mechanical parts of the system are the base support, beam and ball as shown in Figure 3.
Following materials are used in to build the system:
• Base support made of wood has length of (40 cm) and width of (20 cm).
• Aluminum beam which has length of (34 cm), and width of (2 cm).
• Servo motor horn.
• Lever horn.
The dimensions of the physical model are shown in Figure 4.
The Electrical circuit consists of:
• Arduino Uno
• DC servo motor (DSS-M15)
• Ultrasonic sensor.
Ultrasonic sensor connected to pin 7 (digital pin) because it sends its output signal in a digital form to the Arduino which divide the input signal into 58 to determine the ball distance in centimeters, this value represent the input of the PID to be compared with the set point. The servo motor connected to pin 9 which it can be used as a Pulse Width Modulation (PWM), it receives its input (angle) from PID controller. The electric circuit connections shown in Figure 5.
It is difficult to design a controller with Ziegler-Nicolas for major reason; it was found that the overall system is a fifth order system which mean difficult to design controller for a higher order systems. To make the control design easy the whole system is separated into two feedback loops; inner loop and outer loop as shown in Figure 6. The purpose of the inner loop is to control the motor gear angle position so that gear angle (θ) tracks the reference signal (ref θ). The outer loop uses the inner feedback loop to control the ball position.
In general the gains of Kp, Ki, and Kd will need to be adjusted by the user in order to best serve the system. While there is no a static set of rules for which the values should be used for any system, following the general procedures should help in tuning a circuit to match one’s system and environment. In general a PID circuit will typically overshoot the set point value slightly and then quickly damp out to reach the set point value.
Manual tuning of the gain settings is the simplest method for setting the PID controls. However, this procedure is done actively (the PID controller turned on and properly attached to the system) and requires some amount of experience to fully integrate. To tune PID controller manually, first the integral and derivative gains are set to zero 5. Increase the proportional gain until observing oscillation in the output. After the proportional gain is set, the derivative gain can then be increased. Derivative gain will reduce overshoot and damp the system quickly to the set point value or near it. If the derivative gain increased too much, large overshoot will be seen. Once the derivative gain is set, increase the integral gain until any offset is corrected for on a time scale appropriate for the system. If the gain increased too much, significant overshoot of the set point value and instability in the circuit will be observed. The best performance depends on designer specifications. All the parameters had get from manual tuning method shown in Table 1.
The best parameters that gives the best response in real KP=4, Ki=1, Kd=2.
This section demonstrates the results of a real time plotting using MATLAB of ball and beam system using design of PID controller with manual tuning method. With desired value of distance between ultrasonic sensor and rolling ball set to be 15 cm, noted that this value can be changed by modifying it in the controller algorithm considering it as the set point (reference) of the control system.
Setting the values of controller parameters as Kp=2, Ki=0, Kd=0 the real time plotting of ball position as shown in Figure 7. The system oscillates at the beginning but the oscillating decrease with time, in addition to large steady state error, bad long settling time, bad longer rise time and large overshoot value.
By substituting the values of controller parameters with Kp=3, Ki=0, Kd=0.5 as shown in Figure 8. Adding derivative component to controller decreases the overshoot and settling time, also improving the steady state error to some extent.
Changing the values of controller parameters with Kp=3, Ki=0.5, Kd=1 as shown in Figure 9. Adding Integral component to controller decreases the overshoot and significantly improves both the settling time and the steady state error.
By substituting the values of controller parameters with Kp=4, Ki=1, Kd=2 as shown in Figure 10. The steady state errors of the response eliminated and overshoot and settling time decreased.
To test system accuracy, the set point changed to be 10cm as shown in Figure 11 and 20cm as shown in Figure 12 by using the best controller parameters (Kp=4, Ki=1, Kd=2). Noticed that, where the ball near to the sensor (10cm) there wasn’t over shoot and small oscillation around set point (10cm). Where the ball far from the sensor (20cm) the over shoot and settling time increased.
A mathematical model of the ball and beam system was developed using physical and electrical laws. A simplified mathematical model was derived through system parameters. The controller parameters values (Kp, Ki and Kd) were obtained by using manual tuning method from practical model so as to perform best system response. From experimental results, it is found that the best controller parameters which gave the best response of the system are: Kp=4, Ki=1 and Kd=2. The accuracy of the system is tested by adjusting the position of the ball at three different points and it found that the accuracy doesn’t affected by changing the set point.
[1] | E. P. Dadios, R. Baylon, R. D. Guzman, A. Florentino, R. M. Lee ve Z. Zulueta, Vision Guided Ball-Beam Balancing System Using Fuzzy Logic, 26th Annual Conference of the IEEE Industrial Electronics Society, Cilt 3, pp. 1973-1978, 2000. | ||
In article | View Article | ||
[2] | J. Whelan ve J. W. Ringwood, A Demonstration Rig for Control Systems Based on the Ball and Beam with Vision Feedback, Proc.3rd IFAC Symposium on Control Education, Tokyo, 1994. | ||
In article | View Article | ||
[3] | S. Sridharan ve G. Sridharan, Ball and Beam on Roller: A New Control Labrotary Device, Proceedings of the 2002 IEEE International Symposium on Industrial Electronics, Cilt 4, pp. 1318-1321, 2002. | ||
In article | |||
[4] | Sıtkı KOCAOĞLU, Hilmi KUŞÇU: Design and Control of PID-Controlled Ball and Beam System. Unitech. Int. Science Conference, p. 41-46., Gabrovo, 2013, | ||
In article | View Article | ||
[5] | Robert C. Rice, PID Tuning Guide A Best-Practices Approach, NovaTech. PP 20-26. | ||
In article | |||
This work is licensed under a Creative Commons Attribution 4.0 International License. To view a copy of this license, visit https://creativecommons.org/licenses/by/4.0/
[1] | E. P. Dadios, R. Baylon, R. D. Guzman, A. Florentino, R. M. Lee ve Z. Zulueta, Vision Guided Ball-Beam Balancing System Using Fuzzy Logic, 26th Annual Conference of the IEEE Industrial Electronics Society, Cilt 3, pp. 1973-1978, 2000. | ||
In article | View Article | ||
[2] | J. Whelan ve J. W. Ringwood, A Demonstration Rig for Control Systems Based on the Ball and Beam with Vision Feedback, Proc.3rd IFAC Symposium on Control Education, Tokyo, 1994. | ||
In article | View Article | ||
[3] | S. Sridharan ve G. Sridharan, Ball and Beam on Roller: A New Control Labrotary Device, Proceedings of the 2002 IEEE International Symposium on Industrial Electronics, Cilt 4, pp. 1318-1321, 2002. | ||
In article | |||
[4] | Sıtkı KOCAOĞLU, Hilmi KUŞÇU: Design and Control of PID-Controlled Ball and Beam System. Unitech. Int. Science Conference, p. 41-46., Gabrovo, 2013, | ||
In article | View Article | ||
[5] | Robert C. Rice, PID Tuning Guide A Best-Practices Approach, NovaTech. PP 20-26. | ||
In article | |||