SlideShare a Scribd company logo
1 of 6
Control Systems Project: The Smart Bin
Surya Sekhar Chandra
Electrical Engineering
Colorado School of Mines
Golden, CO 80401
Email: schandra@mymail.mines.edu
I. INTRODUCTION
Inactive waste bins result in litter on the floor due to
poor throwing accuracy by humans. A well-designed feedback
controller for an active bin can catch the litter by tracking its
position during its trajectory. The goal of this project is to
design such an active bin with a proper controller that enables
it to catch the litter before it falls to the floor.
II. MODELING
A. Physical Model
Figure 1. Physical model of a bin with four wheels
Figure. 1 shows a physical model of the bin, which consists
of the two DC motors that are attached to the bottom of the
bin. Each of these motors drive a set of wheels that move the
bin in X or Y direction in the room. The bin is attached with
a white patch as it allows the cameras mounted in the room
to accurately detect and locate the 3D position of the bin.
This can be achieved by a simple computer vision detection
algorithm [2]. For this project, a white paper is considered as
litter in general and its 3D location can also be detected using
the same computer vision algorithm.
B. Control Goals
As the main goal of the project is for the bin to actually be
able to catch the paper,the steady state error must be less than
2%, settling time must be less than 3 seconds (assuming high
trajectory) and the overshoot must be below 5% for unit step
reference input.
C. Plant
The plant model consists only of the actuators, which are
the 2 DC motors that drive the bin in X and Y directions.
The inputs to the plant are the voltages (Vx and Vy) applied
to the DC motors and the outputs of the plant are the x and
y locations of the bin.
D. Constraints
The DC motors cannot exceed a maximum power of 5W
and the voltage range that they can be safely operated is from
−12V to 12V .
E. Mathematical Model
Each of the DC motors that forms the plant can be modeled
according to its characteristics as follows:
vi(s)
Vi(s)
=
Kr
(JLs2 + (JR + Lb)s + (bR + K2))
Taking the inverse Laplace transform gives,
¨vi =
Kr
JL
Vi −
(JR + Lb)Kr
JL
˙vi −
(BR + K2
)Kr
JL
vi (1)
The nominal values of the DC motor parameters (taken from
[1]) are considered. Where,
(i) J is the moment of inertia of the rotor = 0.01 kg.m2
(ii) b is the motor viscous friction constant = 0.1 N.m.s
(iii) Ke is the electromotive force constant = 0.01 V/rad/sec
(iv) Kt is the motor torque constant = 0.15 N.m/Amp
(v) R is the electric resistance = 1 Ohm
(vi) L is the electric inductance = 0.5 H
(vii) r is the radius of the wheel = 3 inch = 0.0762 m
(viii) Vi is the voltage applied to the motor that drives in i
axis.
(ix) vi is the linear velocity of the bin in i axis.
(x) i is either X or Y .
This simplifies Equation 1 as
¨vi = 2.286 Vi − 12 ¨vi − 20.02 vi (2)
F. State Space Model
Equation 2 applies to the DC motors in both X-axis and
Y -axis. Since this is a second order system, the state space
representation requires only two states per motor, which
is four states in total. The output required is the x and y
position of the bin and not its linear velocities. Hence, x
and y position of the bin are added to the states of the system.
U =
Vx
Vy
Y =
x
y
X = x vx ˙vx y vy ˙vy
T
1
where,
(i) U is the input to the plant.
(ii) X is the state of the system.
(iii) Y is the output of the system.
(iv) x and y are the locations of the bin in X-axis and Y -axis.
(v) Vx and Vy are the voltages applied to the motor that
drives in X-axis and Y -axis respectively.
(vi) vx and vy are the linear velocities of the bin in X-axis
and Y -axis respectively.
The state space representation of the open-loop system
is given by Equation 3
˙X = AX + BU
Y = CX + DU
(3)
A =








0 1 0 0 0 0
0 0 1 0 0 0
0 −20.02 −12 0 0 0
0 0 0 0 1 0
0 0 0 0 0 1
0 0 0 0 −20.02 −12








(4)
B =








0 0
0 0
2.286 0
0 0
0 0
0 2.286








(5)
C =
1 0 0 0 0 0
0 0 0 1 0 0
(6)
These values of matrices A, B and C from Equations 4,5 and
6 will be used throughout the project.
III. ANALYSIS
The plant model is an LTI system. To determine the sta-
bility of the open-loop plant from the state space model, the
eigenvalues of the matrix A are found to be
0, 0, −9.997, −9.997, −2, −2
Out of these six eigenvalues, four are negative and in the
left hand plane. These are the stable poles. The remaining two
are at the origin that make the open-loop plant system unstable.
The Controllability and Observability matrices of the fol-
lowing state space representation can be obtained by using the
Matlabs ctrb and obsv functions. The rank(ctrb(A, B)) = 6,
which is a full row rank. Therefore, the representation is
completely controllable. Similarly, rank(obsv(A, C)) = 6,
which is a full column rank. Therefore, the representation is
completely observable. This is in minimal form. Thus, through
feedback control it is possible to move all the poles to desired
locations.
IV. DESIGN
A. Output Feedback Controller
The position of the bin can be controlled by a negative
output feedback and using the stationary papers position as a
step reference at time, t = 0. A Simulink model of the system
with output feedback is shown in Figure. 2
Figure 2. Simulink model of output feedback controller
Since the motors that control x and y positions are not
coupled in the state space model, they can be controlled by
using a controller of the form K0 = gain ∗
1 0
0 1
(any
other form would mean a coupling between control of x and
y positions of the Bin) and N = K0. By iteration, a gain value
of K0 =
6.5 0
0 6.5
will result in the output (bin position)
tracking the reference (stationary paper position) within our
control goal requirements.
Figure 3. Reference inputs and plant outputs
The settling time = 3 seconds and overshoot = 2% (refer
to Figure. 3) which is within the control limits. Adding the
feedback control made all the eigenvalues of the system
negative and hence asymptotically stable. Voltage input (refer
to Figure. 4) is within the operating limit [1] (|V | <= 12V )
of a DC motor. The output feedback does not allow for a more
precise control, as our output does not consist of all the states.
2
Figure 4. Control effort for output feedback controller
B. Controller (K) + Estimator (L) design
A more precise controller can be designed using state
estimator feedback by placing the closed-loop poles as needed
to fine-tune the performance. It is useful for this project to
get the velocity and the acceleration of the bin to study the
dynamics of the bin. As these are not directly measured, we
can use the full state estimation method to find these values.
Figure 5. Simulink model of Controller + Estimator
Assuming,
Initital conditions, x0 = 0 0 0 0 0 0
T
Step reference at time, t = 0, ref = 1.5 −1.5
T
Placing the closed loop poles and Estimator poles,
closedpoles = −1.5 −2.5 −4 −1.5 −2.5 −4
estpoles = −6 −10 −16 −6 −10 −16
which gives,
K =
6.56 −0.11 −1.74 0.00 0.00 0.00
0.00 0.00 0.00 6.56 −0.11 −1.74
L =
20.00 55.98 −112.16 0.00 0.00 −0.00
0.00 −0.00 0.00 20.00 55.98 −112.16
T
M =
0 0 15 0 0 0
0 0 0 0 0 15
T
, N =
6.56 0
0 6.56
Figure 6. Actual and Estimated states
Figure 7. Reference input and plant output signals
By iteration, the chosen closed loop poles and thus the
chosen controller + estimator make the outputs track the
reference inputs achieving our control goals with a settling
time = 2.9 seconds and overshoot = 1% (refer Figure 7).
The maximum amplitude of input voltage applied to the
plant/actuators of both the motors is equal to 12V, which is
within the DC Motor Voltage limits, as shown in Figure 8.
C. Advanced control
The voltage constraints of the DC motors as described in
page 2 restrict the inputs to operate within −12V and 12V .
3
Figure 8. Control effort (Input to the plant)
This makes the system behavior non-linear. This model can be
added to the present model in Simulink by using a saturation
block as shown in Figure 9.
Figure 9. Simulink model of controller + estimator with saturation
Simulating this model for a constant step reference of
[1.5 2.5]T
at time = 0 seconds results in a settling time 4.5
seconds.(refer Figure 10). This does not meet our control
goals.
As the reference location gets farther away from the initial
bin location, the bin cannot reach the reference location
within 3 seconds with a magnitude of maximum input voltage
saturated to 12V (refer Figures 10 and 11). This can be
overcome by incorporating a turbocharger into our model. A
turbocharger is a device that releases highly compressed air
at high speeds to momentarily produce a high force, thrusting
forward the object that it is attached to it. It can be used as a
booster which thrusts the bin forward when the bin is lagging
behind and working at its maximum possible input (+12V or
−12V ). In this case, two turbochargers are to be attached to
the bin in both the X and Y directions. The model of the bin
Figure 10. Reference input and plant output signals
Figure 11. Control effort (Input to the plant)
with a turbocharger attached is shown in Figure 12.
The turbocharger can be modeled as a Force,
F = ma (7)
Where,
(i) m is mass = mass of the bin + 2 motors + 4 wheels + 2
turbochargers = 2 kg (approximately)
(ii) a is the acceleration, By using a turbocharger that pro-
duces a Force of around 45 N , produces an acceleration
a = 22.5 m/s2
.
The modified state space representation including the tur-
bocharger is given in Equation 8.
˙X = Ax + Bu + BtT (8)
4
Figure 12. Turbocharger model attached to the bin
where,
(i) Bt =
0 0 22.5 0 0 0
0 0 0 0 0 22.5
T
(ii) T is the control signal or input to the turbochargers.
A Bang-Bang controller can be used to control the tur-
bochargers. The control signal T can be defined as T =
Tx
Ty
where, Tx and Ty are the turbo controller signals turbocharger
in X-axis and Y -axis, respectively.
A Bang-Bang Controller can be implemented as shown in
Equation 9 ,
Ti =
−1 u ≤ −12
+1 u ≥ +12
0 otherwise
(9)
Simulating this new model and the added Bang-Bang con-
troller for the same reference that was used in saturation case
(refer Figure 10), results in a settling time of 2.5 seconds,
which meets our control goals. (refer Figures 13 and 14)
Figure 13. Output with added Bang-Bang controller for a step input
Figure 14. Control effort (saturated input)
Figure 15. Control input to the Turbocharger
The Figure 15 shows that the turbo control T gets activated
only during the period when input is above 12V or below
−12V .
A real time tracking of the paper can be simulated by using
a constant step reference at time, t = 0 seconds and switching
to a ramp reference, which signifies a constant velocity of the
paper after being thrown.
Figure 16 shows that the controller is able to track a
moving paper throughout its trajectory with a steady state
error of 3% which meets our control goals. The amount of
time for which the booster has been used is still almost the
same, which is during the initial 2 seconds.(refer to Figure
18)
5
Figure 16. Output with added Bang-Bang controller for a step and ramp
(mixed) input
Figure 17. Control effort (saturated input)
V. DISCUSSION
The results of the controller design without saturation shows
that the bin starting from rest can track a stationary paper that
is less than 1.5 m away within a settling time of 3 seconds.
Incorporating the non-linearity due to saturation of the input
increases the settling time to above 3 seconds for a stationary
paper that is farther away.It cannot track a moving paper as
the velocity of the bin will not be able to match the paper
velocity without going above 12V of input voltage to the
motors. Adding a turbocharger to the model and controlling it
with a Bang-Bang controller allows the bin to track the model
within the required settling time of 3 seconds for a stationary
paper that is farther than 1.5 m. It also comfortably tracks a
moving paper with low velocities under 0.8 m/s.
Figure 18. Control input to the Turbocharger
VI. CONCLUSIONS AND FUTURE WORK
The advanced controller design used successfully achieves
all the control goals allowing the active bin to catch the
paper. The turbochargers used increase the cost of the bin
significantly, but it gives the much needed thrust for the slow
DC motor driven bin that is trying to catch the paper before it
falls to the floor. Thus, the turbocharger with a Bang-Bang
controller was necessary in addition to the state feedback
controller for achieving the control goals. Future work for
this project would be to explore the options for different
high torque and high speed motors, incorporating which will
increase the range of velocities of the paper the bin can
track.Also, to implement the computer vision algorithm that
detects and locates the bin and the paper by using objection
detection and tracking techniques [2].
REFERENCES
[1] DC Motor Speed: Simulink Controller Design by Matlab Control
Tutorials.
[2] Ta, Duy-Nguyen, et al. Surftrac: Efficient tracking and continuous object
recognition using local feature descriptors. Computer Vision and Pattern
Recognition, 2009. CVPR 2009. IEEE Conference on. IEEE, 2009.
[3] Brogan, William L. Modern control theory. (1991).
6

More Related Content

What's hot

359 17-aciego
359 17-aciego359 17-aciego
359 17-aciegojjaciego
 
D0372027037
D0372027037D0372027037
D0372027037theijes
 
Suspension system modeling buss
Suspension system modeling bussSuspension system modeling buss
Suspension system modeling bussMinhhau Tran
 
Body travel performance improvement of space vehicle electromagnetic suspensi...
Body travel performance improvement of space vehicle electromagnetic suspensi...Body travel performance improvement of space vehicle electromagnetic suspensi...
Body travel performance improvement of space vehicle electromagnetic suspensi...Mustefa Jibril
 
Ies conventional-electrical-engineering-2012
Ies conventional-electrical-engineering-2012Ies conventional-electrical-engineering-2012
Ies conventional-electrical-engineering-2012arunkumarmurugesan88
 
SIMMECHANICS VISUALIZATION OF EXPERIMENTAL MODEL OVERHEAD CRANE, ITS LINEARIZ...
SIMMECHANICS VISUALIZATION OF EXPERIMENTAL MODEL OVERHEAD CRANE, ITS LINEARIZ...SIMMECHANICS VISUALIZATION OF EXPERIMENTAL MODEL OVERHEAD CRANE, ITS LINEARIZ...
SIMMECHANICS VISUALIZATION OF EXPERIMENTAL MODEL OVERHEAD CRANE, ITS LINEARIZ...ijccmsjournal
 
Comparative Analysis of PID, SMC, SMC with PID Controller for Speed Control o...
Comparative Analysis of PID, SMC, SMC with PID Controller for Speed Control o...Comparative Analysis of PID, SMC, SMC with PID Controller for Speed Control o...
Comparative Analysis of PID, SMC, SMC with PID Controller for Speed Control o...IJMTST Journal
 
MODELLING AND SIMULATION OF INVERTED PENDULUM USING INTERNAL MODEL CONTROL
MODELLING AND SIMULATION OF INVERTED PENDULUM USING INTERNAL MODEL CONTROLMODELLING AND SIMULATION OF INVERTED PENDULUM USING INTERNAL MODEL CONTROL
MODELLING AND SIMULATION OF INVERTED PENDULUM USING INTERNAL MODEL CONTROLJournal For Research
 
Simulation of inverted pendulum presentation
Simulation of inverted pendulum  presentationSimulation of inverted pendulum  presentation
Simulation of inverted pendulum presentationPourya Parsa
 
suspension system project report
suspension system project reportsuspension system project report
suspension system project reportUET Taxila
 
Raymond.Brunkow-Project-EEL-3657-Sp15
Raymond.Brunkow-Project-EEL-3657-Sp15Raymond.Brunkow-Project-EEL-3657-Sp15
Raymond.Brunkow-Project-EEL-3657-Sp15Raymond Brunkow
 
Controller design of inverted pendulum using pole placement and lqr
Controller design of inverted pendulum using pole placement and lqrController design of inverted pendulum using pole placement and lqr
Controller design of inverted pendulum using pole placement and lqreSAT Publishing House
 
Conceptual Problem solution
Conceptual Problem solutionConceptual Problem solution
Conceptual Problem solutionManish sharma
 
Analysis of Automobile Suspension
Analysis of Automobile SuspensionAnalysis of Automobile Suspension
Analysis of Automobile SuspensionQuickoffice Test
 

What's hot (20)

359 17-aciego
359 17-aciego359 17-aciego
359 17-aciego
 
Double star induction machine using nonlinear integral backstepping control
Double star induction machine using nonlinear integral backstepping controlDouble star induction machine using nonlinear integral backstepping control
Double star induction machine using nonlinear integral backstepping control
 
D0372027037
D0372027037D0372027037
D0372027037
 
D05532531
D05532531D05532531
D05532531
 
Suspension system modeling buss
Suspension system modeling bussSuspension system modeling buss
Suspension system modeling buss
 
Body travel performance improvement of space vehicle electromagnetic suspensi...
Body travel performance improvement of space vehicle electromagnetic suspensi...Body travel performance improvement of space vehicle electromagnetic suspensi...
Body travel performance improvement of space vehicle electromagnetic suspensi...
 
Ies conventional-electrical-engineering-2012
Ies conventional-electrical-engineering-2012Ies conventional-electrical-engineering-2012
Ies conventional-electrical-engineering-2012
 
Design of Quadratic Optimal Regulator for DC Motor
Design of Quadratic Optimal Regulator for DC Motor Design of Quadratic Optimal Regulator for DC Motor
Design of Quadratic Optimal Regulator for DC Motor
 
SIMMECHANICS VISUALIZATION OF EXPERIMENTAL MODEL OVERHEAD CRANE, ITS LINEARIZ...
SIMMECHANICS VISUALIZATION OF EXPERIMENTAL MODEL OVERHEAD CRANE, ITS LINEARIZ...SIMMECHANICS VISUALIZATION OF EXPERIMENTAL MODEL OVERHEAD CRANE, ITS LINEARIZ...
SIMMECHANICS VISUALIZATION OF EXPERIMENTAL MODEL OVERHEAD CRANE, ITS LINEARIZ...
 
Comparative Analysis of PID, SMC, SMC with PID Controller for Speed Control o...
Comparative Analysis of PID, SMC, SMC with PID Controller for Speed Control o...Comparative Analysis of PID, SMC, SMC with PID Controller for Speed Control o...
Comparative Analysis of PID, SMC, SMC with PID Controller for Speed Control o...
 
MODELLING AND SIMULATION OF INVERTED PENDULUM USING INTERNAL MODEL CONTROL
MODELLING AND SIMULATION OF INVERTED PENDULUM USING INTERNAL MODEL CONTROLMODELLING AND SIMULATION OF INVERTED PENDULUM USING INTERNAL MODEL CONTROL
MODELLING AND SIMULATION OF INVERTED PENDULUM USING INTERNAL MODEL CONTROL
 
report
reportreport
report
 
Contouring Control of CNC Machine Tools
Contouring Control of CNC Machine ToolsContouring Control of CNC Machine Tools
Contouring Control of CNC Machine Tools
 
Simulation of inverted pendulum presentation
Simulation of inverted pendulum  presentationSimulation of inverted pendulum  presentation
Simulation of inverted pendulum presentation
 
suspension system project report
suspension system project reportsuspension system project report
suspension system project report
 
Raymond.Brunkow-Project-EEL-3657-Sp15
Raymond.Brunkow-Project-EEL-3657-Sp15Raymond.Brunkow-Project-EEL-3657-Sp15
Raymond.Brunkow-Project-EEL-3657-Sp15
 
Controller design of inverted pendulum using pole placement and lqr
Controller design of inverted pendulum using pole placement and lqrController design of inverted pendulum using pole placement and lqr
Controller design of inverted pendulum using pole placement and lqr
 
Conceptual Problem solution
Conceptual Problem solutionConceptual Problem solution
Conceptual Problem solution
 
Analysis of Automobile Suspension
Analysis of Automobile SuspensionAnalysis of Automobile Suspension
Analysis of Automobile Suspension
 
Ips csmc 14.06.2016
Ips csmc 14.06.2016Ips csmc 14.06.2016
Ips csmc 14.06.2016
 

Viewers also liked

IoT garbage monitoring
IoT garbage monitoringIoT garbage monitoring
IoT garbage monitoringVitthal Adhav
 
Waste managment as an IoT enabled service in smart cities
Waste managment as an IoT enabled service in smart citiesWaste managment as an IoT enabled service in smart cities
Waste managment as an IoT enabled service in smart citiesABHISHEK KUMAR
 
IoT based garbage monitoring system
IoT based garbage monitoring systemIoT based garbage monitoring system
IoT based garbage monitoring systemRanjan Gupta
 
IOT and smart city in India
IOT and smart city in India IOT and smart city in India
IOT and smart city in India Soumya Gupta
 
Smart Wifi Dustbin System
Smart Wifi Dustbin SystemSmart Wifi Dustbin System
Smart Wifi Dustbin SystemIJARIIT
 
Smart Waste Disposal System by Russ Earl Malangen
Smart Waste Disposal System by Russ Earl MalangenSmart Waste Disposal System by Russ Earl Malangen
Smart Waste Disposal System by Russ Earl MalangenDEVCON
 
Introductions to smartbins
Introductions to smartbinsIntroductions to smartbins
Introductions to smartbinsArijit Mitra
 
Waste Management project presentation
Waste Management project presentationWaste Management project presentation
Waste Management project presentationBusiness Finland
 
Presentation On Waste Management Systems
Presentation On Waste Management SystemsPresentation On Waste Management Systems
Presentation On Waste Management SystemsVasu Malhotra
 
Smart Water & Waste Management for Smart Cities by Mr. Gyan Misra
Smart Water & Waste Management for Smart Cities by Mr. Gyan MisraSmart Water & Waste Management for Smart Cities by Mr. Gyan Misra
Smart Water & Waste Management for Smart Cities by Mr. Gyan MisraIPPAI
 
SMART COMMUNICATING RECYCLING BIN
SMART COMMUNICATING RECYCLING BINSMART COMMUNICATING RECYCLING BIN
SMART COMMUNICATING RECYCLING BINCNRFID
 
TetraBIN - Augmented Reality Trash Bin
TetraBIN - Augmented Reality Trash BinTetraBIN - Augmented Reality Trash Bin
TetraBIN - Augmented Reality Trash BinSteven Bai
 
Exploring Support Vector Regression - Signals and Systems Project
Exploring Support Vector Regression - Signals and Systems ProjectExploring Support Vector Regression - Signals and Systems Project
Exploring Support Vector Regression - Signals and Systems ProjectSurya Chandra
 
Wordoku Puzzle Solver - Image Processing Project
Wordoku Puzzle Solver - Image Processing ProjectWordoku Puzzle Solver - Image Processing Project
Wordoku Puzzle Solver - Image Processing ProjectSurya Chandra
 
Forward Bit Error Correction - Wireless Communications
Forward Bit Error Correction - Wireless Communications Forward Bit Error Correction - Wireless Communications
Forward Bit Error Correction - Wireless Communications Surya Chandra
 
SMART SEWAGE TREATMENT PLANTS FOR SMART CITIES IN INDIA, NY USA - Mr. Asim C ...
SMART SEWAGE TREATMENT PLANTS FOR SMART CITIES IN INDIA, NY USA - Mr. Asim C ...SMART SEWAGE TREATMENT PLANTS FOR SMART CITIES IN INDIA, NY USA - Mr. Asim C ...
SMART SEWAGE TREATMENT PLANTS FOR SMART CITIES IN INDIA, NY USA - Mr. Asim C ...IPPAI
 

Viewers also liked (20)

IoT garbage monitoring
IoT garbage monitoringIoT garbage monitoring
IoT garbage monitoring
 
Waste managment as an IoT enabled service in smart cities
Waste managment as an IoT enabled service in smart citiesWaste managment as an IoT enabled service in smart cities
Waste managment as an IoT enabled service in smart cities
 
IoT based garbage monitoring system
IoT based garbage monitoring systemIoT based garbage monitoring system
IoT based garbage monitoring system
 
Multipurpose dustbin
Multipurpose dustbinMultipurpose dustbin
Multipurpose dustbin
 
IOT and smart city in India
IOT and smart city in India IOT and smart city in India
IOT and smart city in India
 
Smart Wifi Dustbin System
Smart Wifi Dustbin SystemSmart Wifi Dustbin System
Smart Wifi Dustbin System
 
Smart Waste Disposal System by Russ Earl Malangen
Smart Waste Disposal System by Russ Earl MalangenSmart Waste Disposal System by Russ Earl Malangen
Smart Waste Disposal System by Russ Earl Malangen
 
Introductions to smartbins
Introductions to smartbinsIntroductions to smartbins
Introductions to smartbins
 
Waste Management project presentation
Waste Management project presentationWaste Management project presentation
Waste Management project presentation
 
Smart bin proposals
Smart bin proposalsSmart bin proposals
Smart bin proposals
 
Presentation On Waste Management Systems
Presentation On Waste Management SystemsPresentation On Waste Management Systems
Presentation On Waste Management Systems
 
Smart Waste Management
Smart Waste ManagementSmart Waste Management
Smart Waste Management
 
Smart Water & Waste Management for Smart Cities by Mr. Gyan Misra
Smart Water & Waste Management for Smart Cities by Mr. Gyan MisraSmart Water & Waste Management for Smart Cities by Mr. Gyan Misra
Smart Water & Waste Management for Smart Cities by Mr. Gyan Misra
 
SMART COMMUNICATING RECYCLING BIN
SMART COMMUNICATING RECYCLING BINSMART COMMUNICATING RECYCLING BIN
SMART COMMUNICATING RECYCLING BIN
 
TetraBIN - Augmented Reality Trash Bin
TetraBIN - Augmented Reality Trash BinTetraBIN - Augmented Reality Trash Bin
TetraBIN - Augmented Reality Trash Bin
 
Exploring Support Vector Regression - Signals and Systems Project
Exploring Support Vector Regression - Signals and Systems ProjectExploring Support Vector Regression - Signals and Systems Project
Exploring Support Vector Regression - Signals and Systems Project
 
Wordoku Puzzle Solver - Image Processing Project
Wordoku Puzzle Solver - Image Processing ProjectWordoku Puzzle Solver - Image Processing Project
Wordoku Puzzle Solver - Image Processing Project
 
Forward Bit Error Correction - Wireless Communications
Forward Bit Error Correction - Wireless Communications Forward Bit Error Correction - Wireless Communications
Forward Bit Error Correction - Wireless Communications
 
Smart b in (1)
Smart b in (1)Smart b in (1)
Smart b in (1)
 
SMART SEWAGE TREATMENT PLANTS FOR SMART CITIES IN INDIA, NY USA - Mr. Asim C ...
SMART SEWAGE TREATMENT PLANTS FOR SMART CITIES IN INDIA, NY USA - Mr. Asim C ...SMART SEWAGE TREATMENT PLANTS FOR SMART CITIES IN INDIA, NY USA - Mr. Asim C ...
SMART SEWAGE TREATMENT PLANTS FOR SMART CITIES IN INDIA, NY USA - Mr. Asim C ...
 

Similar to Smart Bin Tracks Litter

Modeling and simulation of vehicle windshield wiper system using h infinity l...
Modeling and simulation of vehicle windshield wiper system using h infinity l...Modeling and simulation of vehicle windshield wiper system using h infinity l...
Modeling and simulation of vehicle windshield wiper system using h infinity l...Mustefa Jibril
 
Design &amp; control of vehicle boom barrier gate system using augmented h 2 ...
Design &amp; control of vehicle boom barrier gate system using augmented h 2 ...Design &amp; control of vehicle boom barrier gate system using augmented h 2 ...
Design &amp; control of vehicle boom barrier gate system using augmented h 2 ...Mustefa Jibril
 
DC Motor Modelling & Design Fullstate Feedback Controller
DC Motor Modelling & Design Fullstate Feedback Controller DC Motor Modelling & Design Fullstate Feedback Controller
DC Motor Modelling & Design Fullstate Feedback Controller Idabagus Mahartana
 
L021201085091
L021201085091L021201085091
L021201085091theijes
 
Speed Sensorless Sliding Mode Control of Induction Motor Using Simulink
Speed Sensorless Sliding Mode Control of Induction Motor Using SimulinkSpeed Sensorless Sliding Mode Control of Induction Motor Using Simulink
Speed Sensorless Sliding Mode Control of Induction Motor Using SimulinkIOSR Journals
 
Field_Oriented_Control_Induction_Machine
Field_Oriented_Control_Induction_MachineField_Oriented_Control_Induction_Machine
Field_Oriented_Control_Induction_MachineHelion Dhrimaj
 
AntennaProject_NathanJaniczek
AntennaProject_NathanJaniczekAntennaProject_NathanJaniczek
AntennaProject_NathanJaniczekNathan Janiczek
 
Robust control theory based performance investigation of an inverted pendulum...
Robust control theory based performance investigation of an inverted pendulum...Robust control theory based performance investigation of an inverted pendulum...
Robust control theory based performance investigation of an inverted pendulum...Mustefa Jibril
 
High Performance of Matrix Converter Fed Induction Motor for IPF Compensation...
High Performance of Matrix Converter Fed Induction Motor for IPF Compensation...High Performance of Matrix Converter Fed Induction Motor for IPF Compensation...
High Performance of Matrix Converter Fed Induction Motor for IPF Compensation...IOSR Journals
 
Optimal and pid controller for controlling camera’s position in unmanned aeri...
Optimal and pid controller for controlling camera’s position in unmanned aeri...Optimal and pid controller for controlling camera’s position in unmanned aeri...
Optimal and pid controller for controlling camera’s position in unmanned aeri...Zac Darcy
 
PSO and SMC based Closed Loop V/F Control of AC Drive using SVPWM
PSO and SMC based Closed Loop V/F Control of AC Drive using SVPWMPSO and SMC based Closed Loop V/F Control of AC Drive using SVPWM
PSO and SMC based Closed Loop V/F Control of AC Drive using SVPWMIRJET Journal
 
ECE147C_Midterm_Report
ECE147C_Midterm_ReportECE147C_Midterm_Report
ECE147C_Midterm_ReportLars Brusletto
 
Optimal and Pid Controller for Controlling Camera's Position InUnmanned Aeria...
Optimal and Pid Controller for Controlling Camera's Position InUnmanned Aeria...Optimal and Pid Controller for Controlling Camera's Position InUnmanned Aeria...
Optimal and Pid Controller for Controlling Camera's Position InUnmanned Aeria...Zac Darcy
 

Similar to Smart Bin Tracks Litter (20)

Modeling and simulation of vehicle windshield wiper system using h infinity l...
Modeling and simulation of vehicle windshield wiper system using h infinity l...Modeling and simulation of vehicle windshield wiper system using h infinity l...
Modeling and simulation of vehicle windshield wiper system using h infinity l...
 
Design &amp; control of vehicle boom barrier gate system using augmented h 2 ...
Design &amp; control of vehicle boom barrier gate system using augmented h 2 ...Design &amp; control of vehicle boom barrier gate system using augmented h 2 ...
Design &amp; control of vehicle boom barrier gate system using augmented h 2 ...
 
DC Motor Modelling & Design Fullstate Feedback Controller
DC Motor Modelling & Design Fullstate Feedback Controller DC Motor Modelling & Design Fullstate Feedback Controller
DC Motor Modelling & Design Fullstate Feedback Controller
 
L021201085091
L021201085091L021201085091
L021201085091
 
H010245763
H010245763H010245763
H010245763
 
Speed Sensorless Sliding Mode Control of Induction Motor Using Simulink
Speed Sensorless Sliding Mode Control of Induction Motor Using SimulinkSpeed Sensorless Sliding Mode Control of Induction Motor Using Simulink
Speed Sensorless Sliding Mode Control of Induction Motor Using Simulink
 
Field_Oriented_Control_Induction_Machine
Field_Oriented_Control_Induction_MachineField_Oriented_Control_Induction_Machine
Field_Oriented_Control_Induction_Machine
 
AntennaProject_NathanJaniczek
AntennaProject_NathanJaniczekAntennaProject_NathanJaniczek
AntennaProject_NathanJaniczek
 
High performance DC/DC buck converter using sliding mode controller
High performance DC/DC buck converter using sliding mode controllerHigh performance DC/DC buck converter using sliding mode controller
High performance DC/DC buck converter using sliding mode controller
 
Robust control theory based performance investigation of an inverted pendulum...
Robust control theory based performance investigation of an inverted pendulum...Robust control theory based performance investigation of an inverted pendulum...
Robust control theory based performance investigation of an inverted pendulum...
 
High Performance of Matrix Converter Fed Induction Motor for IPF Compensation...
High Performance of Matrix Converter Fed Induction Motor for IPF Compensation...High Performance of Matrix Converter Fed Induction Motor for IPF Compensation...
High Performance of Matrix Converter Fed Induction Motor for IPF Compensation...
 
Optimal and pid controller for controlling camera’s position in unmanned aeri...
Optimal and pid controller for controlling camera’s position in unmanned aeri...Optimal and pid controller for controlling camera’s position in unmanned aeri...
Optimal and pid controller for controlling camera’s position in unmanned aeri...
 
PSO and SMC based Closed Loop V/F Control of AC Drive using SVPWM
PSO and SMC based Closed Loop V/F Control of AC Drive using SVPWMPSO and SMC based Closed Loop V/F Control of AC Drive using SVPWM
PSO and SMC based Closed Loop V/F Control of AC Drive using SVPWM
 
ECE147C_Midterm_Report
ECE147C_Midterm_ReportECE147C_Midterm_Report
ECE147C_Midterm_Report
 
Optimal and Pid Controller for Controlling Camera's Position InUnmanned Aeria...
Optimal and Pid Controller for Controlling Camera's Position InUnmanned Aeria...Optimal and Pid Controller for Controlling Camera's Position InUnmanned Aeria...
Optimal and Pid Controller for Controlling Camera's Position InUnmanned Aeria...
 
electronic.ppt
electronic.pptelectronic.ppt
electronic.ppt
 
Lecture 10
Lecture 10Lecture 10
Lecture 10
 
I010336070
I010336070I010336070
I010336070
 
ControlsLab1
ControlsLab1ControlsLab1
ControlsLab1
 
The Control Structure for DC Motor based on the Flatness Control
The Control Structure for DC Motor based on the Flatness ControlThe Control Structure for DC Motor based on the Flatness Control
The Control Structure for DC Motor based on the Flatness Control
 

Recently uploaded

Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)Suman Mia
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSISrknatarajan
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxhumanexperienceaaa
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSRajkumarAkumalla
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations120cr0395
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Call Girls in Nagpur High Profile
 
(TARA) Talegaon Dabhade Call Girls Just Call 7001035870 [ Cash on Delivery ] ...
(TARA) Talegaon Dabhade Call Girls Just Call 7001035870 [ Cash on Delivery ] ...(TARA) Talegaon Dabhade Call Girls Just Call 7001035870 [ Cash on Delivery ] ...
(TARA) Talegaon Dabhade Call Girls Just Call 7001035870 [ Cash on Delivery ] ...ranjana rawat
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 

Recently uploaded (20)

Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSIS
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 
(TARA) Talegaon Dabhade Call Girls Just Call 7001035870 [ Cash on Delivery ] ...
(TARA) Talegaon Dabhade Call Girls Just Call 7001035870 [ Cash on Delivery ] ...(TARA) Talegaon Dabhade Call Girls Just Call 7001035870 [ Cash on Delivery ] ...
(TARA) Talegaon Dabhade Call Girls Just Call 7001035870 [ Cash on Delivery ] ...
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
 

Smart Bin Tracks Litter

  • 1. Control Systems Project: The Smart Bin Surya Sekhar Chandra Electrical Engineering Colorado School of Mines Golden, CO 80401 Email: schandra@mymail.mines.edu I. INTRODUCTION Inactive waste bins result in litter on the floor due to poor throwing accuracy by humans. A well-designed feedback controller for an active bin can catch the litter by tracking its position during its trajectory. The goal of this project is to design such an active bin with a proper controller that enables it to catch the litter before it falls to the floor. II. MODELING A. Physical Model Figure 1. Physical model of a bin with four wheels Figure. 1 shows a physical model of the bin, which consists of the two DC motors that are attached to the bottom of the bin. Each of these motors drive a set of wheels that move the bin in X or Y direction in the room. The bin is attached with a white patch as it allows the cameras mounted in the room to accurately detect and locate the 3D position of the bin. This can be achieved by a simple computer vision detection algorithm [2]. For this project, a white paper is considered as litter in general and its 3D location can also be detected using the same computer vision algorithm. B. Control Goals As the main goal of the project is for the bin to actually be able to catch the paper,the steady state error must be less than 2%, settling time must be less than 3 seconds (assuming high trajectory) and the overshoot must be below 5% for unit step reference input. C. Plant The plant model consists only of the actuators, which are the 2 DC motors that drive the bin in X and Y directions. The inputs to the plant are the voltages (Vx and Vy) applied to the DC motors and the outputs of the plant are the x and y locations of the bin. D. Constraints The DC motors cannot exceed a maximum power of 5W and the voltage range that they can be safely operated is from −12V to 12V . E. Mathematical Model Each of the DC motors that forms the plant can be modeled according to its characteristics as follows: vi(s) Vi(s) = Kr (JLs2 + (JR + Lb)s + (bR + K2)) Taking the inverse Laplace transform gives, ¨vi = Kr JL Vi − (JR + Lb)Kr JL ˙vi − (BR + K2 )Kr JL vi (1) The nominal values of the DC motor parameters (taken from [1]) are considered. Where, (i) J is the moment of inertia of the rotor = 0.01 kg.m2 (ii) b is the motor viscous friction constant = 0.1 N.m.s (iii) Ke is the electromotive force constant = 0.01 V/rad/sec (iv) Kt is the motor torque constant = 0.15 N.m/Amp (v) R is the electric resistance = 1 Ohm (vi) L is the electric inductance = 0.5 H (vii) r is the radius of the wheel = 3 inch = 0.0762 m (viii) Vi is the voltage applied to the motor that drives in i axis. (ix) vi is the linear velocity of the bin in i axis. (x) i is either X or Y . This simplifies Equation 1 as ¨vi = 2.286 Vi − 12 ¨vi − 20.02 vi (2) F. State Space Model Equation 2 applies to the DC motors in both X-axis and Y -axis. Since this is a second order system, the state space representation requires only two states per motor, which is four states in total. The output required is the x and y position of the bin and not its linear velocities. Hence, x and y position of the bin are added to the states of the system. U = Vx Vy Y = x y X = x vx ˙vx y vy ˙vy T 1
  • 2. where, (i) U is the input to the plant. (ii) X is the state of the system. (iii) Y is the output of the system. (iv) x and y are the locations of the bin in X-axis and Y -axis. (v) Vx and Vy are the voltages applied to the motor that drives in X-axis and Y -axis respectively. (vi) vx and vy are the linear velocities of the bin in X-axis and Y -axis respectively. The state space representation of the open-loop system is given by Equation 3 ˙X = AX + BU Y = CX + DU (3) A =         0 1 0 0 0 0 0 0 1 0 0 0 0 −20.02 −12 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 −20.02 −12         (4) B =         0 0 0 0 2.286 0 0 0 0 0 0 2.286         (5) C = 1 0 0 0 0 0 0 0 0 1 0 0 (6) These values of matrices A, B and C from Equations 4,5 and 6 will be used throughout the project. III. ANALYSIS The plant model is an LTI system. To determine the sta- bility of the open-loop plant from the state space model, the eigenvalues of the matrix A are found to be 0, 0, −9.997, −9.997, −2, −2 Out of these six eigenvalues, four are negative and in the left hand plane. These are the stable poles. The remaining two are at the origin that make the open-loop plant system unstable. The Controllability and Observability matrices of the fol- lowing state space representation can be obtained by using the Matlabs ctrb and obsv functions. The rank(ctrb(A, B)) = 6, which is a full row rank. Therefore, the representation is completely controllable. Similarly, rank(obsv(A, C)) = 6, which is a full column rank. Therefore, the representation is completely observable. This is in minimal form. Thus, through feedback control it is possible to move all the poles to desired locations. IV. DESIGN A. Output Feedback Controller The position of the bin can be controlled by a negative output feedback and using the stationary papers position as a step reference at time, t = 0. A Simulink model of the system with output feedback is shown in Figure. 2 Figure 2. Simulink model of output feedback controller Since the motors that control x and y positions are not coupled in the state space model, they can be controlled by using a controller of the form K0 = gain ∗ 1 0 0 1 (any other form would mean a coupling between control of x and y positions of the Bin) and N = K0. By iteration, a gain value of K0 = 6.5 0 0 6.5 will result in the output (bin position) tracking the reference (stationary paper position) within our control goal requirements. Figure 3. Reference inputs and plant outputs The settling time = 3 seconds and overshoot = 2% (refer to Figure. 3) which is within the control limits. Adding the feedback control made all the eigenvalues of the system negative and hence asymptotically stable. Voltage input (refer to Figure. 4) is within the operating limit [1] (|V | <= 12V ) of a DC motor. The output feedback does not allow for a more precise control, as our output does not consist of all the states. 2
  • 3. Figure 4. Control effort for output feedback controller B. Controller (K) + Estimator (L) design A more precise controller can be designed using state estimator feedback by placing the closed-loop poles as needed to fine-tune the performance. It is useful for this project to get the velocity and the acceleration of the bin to study the dynamics of the bin. As these are not directly measured, we can use the full state estimation method to find these values. Figure 5. Simulink model of Controller + Estimator Assuming, Initital conditions, x0 = 0 0 0 0 0 0 T Step reference at time, t = 0, ref = 1.5 −1.5 T Placing the closed loop poles and Estimator poles, closedpoles = −1.5 −2.5 −4 −1.5 −2.5 −4 estpoles = −6 −10 −16 −6 −10 −16 which gives, K = 6.56 −0.11 −1.74 0.00 0.00 0.00 0.00 0.00 0.00 6.56 −0.11 −1.74 L = 20.00 55.98 −112.16 0.00 0.00 −0.00 0.00 −0.00 0.00 20.00 55.98 −112.16 T M = 0 0 15 0 0 0 0 0 0 0 0 15 T , N = 6.56 0 0 6.56 Figure 6. Actual and Estimated states Figure 7. Reference input and plant output signals By iteration, the chosen closed loop poles and thus the chosen controller + estimator make the outputs track the reference inputs achieving our control goals with a settling time = 2.9 seconds and overshoot = 1% (refer Figure 7). The maximum amplitude of input voltage applied to the plant/actuators of both the motors is equal to 12V, which is within the DC Motor Voltage limits, as shown in Figure 8. C. Advanced control The voltage constraints of the DC motors as described in page 2 restrict the inputs to operate within −12V and 12V . 3
  • 4. Figure 8. Control effort (Input to the plant) This makes the system behavior non-linear. This model can be added to the present model in Simulink by using a saturation block as shown in Figure 9. Figure 9. Simulink model of controller + estimator with saturation Simulating this model for a constant step reference of [1.5 2.5]T at time = 0 seconds results in a settling time 4.5 seconds.(refer Figure 10). This does not meet our control goals. As the reference location gets farther away from the initial bin location, the bin cannot reach the reference location within 3 seconds with a magnitude of maximum input voltage saturated to 12V (refer Figures 10 and 11). This can be overcome by incorporating a turbocharger into our model. A turbocharger is a device that releases highly compressed air at high speeds to momentarily produce a high force, thrusting forward the object that it is attached to it. It can be used as a booster which thrusts the bin forward when the bin is lagging behind and working at its maximum possible input (+12V or −12V ). In this case, two turbochargers are to be attached to the bin in both the X and Y directions. The model of the bin Figure 10. Reference input and plant output signals Figure 11. Control effort (Input to the plant) with a turbocharger attached is shown in Figure 12. The turbocharger can be modeled as a Force, F = ma (7) Where, (i) m is mass = mass of the bin + 2 motors + 4 wheels + 2 turbochargers = 2 kg (approximately) (ii) a is the acceleration, By using a turbocharger that pro- duces a Force of around 45 N , produces an acceleration a = 22.5 m/s2 . The modified state space representation including the tur- bocharger is given in Equation 8. ˙X = Ax + Bu + BtT (8) 4
  • 5. Figure 12. Turbocharger model attached to the bin where, (i) Bt = 0 0 22.5 0 0 0 0 0 0 0 0 22.5 T (ii) T is the control signal or input to the turbochargers. A Bang-Bang controller can be used to control the tur- bochargers. The control signal T can be defined as T = Tx Ty where, Tx and Ty are the turbo controller signals turbocharger in X-axis and Y -axis, respectively. A Bang-Bang Controller can be implemented as shown in Equation 9 , Ti = −1 u ≤ −12 +1 u ≥ +12 0 otherwise (9) Simulating this new model and the added Bang-Bang con- troller for the same reference that was used in saturation case (refer Figure 10), results in a settling time of 2.5 seconds, which meets our control goals. (refer Figures 13 and 14) Figure 13. Output with added Bang-Bang controller for a step input Figure 14. Control effort (saturated input) Figure 15. Control input to the Turbocharger The Figure 15 shows that the turbo control T gets activated only during the period when input is above 12V or below −12V . A real time tracking of the paper can be simulated by using a constant step reference at time, t = 0 seconds and switching to a ramp reference, which signifies a constant velocity of the paper after being thrown. Figure 16 shows that the controller is able to track a moving paper throughout its trajectory with a steady state error of 3% which meets our control goals. The amount of time for which the booster has been used is still almost the same, which is during the initial 2 seconds.(refer to Figure 18) 5
  • 6. Figure 16. Output with added Bang-Bang controller for a step and ramp (mixed) input Figure 17. Control effort (saturated input) V. DISCUSSION The results of the controller design without saturation shows that the bin starting from rest can track a stationary paper that is less than 1.5 m away within a settling time of 3 seconds. Incorporating the non-linearity due to saturation of the input increases the settling time to above 3 seconds for a stationary paper that is farther away.It cannot track a moving paper as the velocity of the bin will not be able to match the paper velocity without going above 12V of input voltage to the motors. Adding a turbocharger to the model and controlling it with a Bang-Bang controller allows the bin to track the model within the required settling time of 3 seconds for a stationary paper that is farther than 1.5 m. It also comfortably tracks a moving paper with low velocities under 0.8 m/s. Figure 18. Control input to the Turbocharger VI. CONCLUSIONS AND FUTURE WORK The advanced controller design used successfully achieves all the control goals allowing the active bin to catch the paper. The turbochargers used increase the cost of the bin significantly, but it gives the much needed thrust for the slow DC motor driven bin that is trying to catch the paper before it falls to the floor. Thus, the turbocharger with a Bang-Bang controller was necessary in addition to the state feedback controller for achieving the control goals. Future work for this project would be to explore the options for different high torque and high speed motors, incorporating which will increase the range of velocities of the paper the bin can track.Also, to implement the computer vision algorithm that detects and locates the bin and the paper by using objection detection and tracking techniques [2]. REFERENCES [1] DC Motor Speed: Simulink Controller Design by Matlab Control Tutorials. [2] Ta, Duy-Nguyen, et al. Surftrac: Efficient tracking and continuous object recognition using local feature descriptors. Computer Vision and Pattern Recognition, 2009. CVPR 2009. IEEE Conference on. IEEE, 2009. [3] Brogan, William L. Modern control theory. (1991). 6