Given a n-order system, X(n)=f(X)+g(X)u, transform it into a first order dynamics using a variable s. s satisfies the following 2 properties,
Choose control such that s=0 once the states reach sliding manifold.
For n=2, say a system is given by,
¨x=f(x)+g(x)uWe wish to drive x→xd and ˙x→˙xd. Choose s such that
Choose
s=λ(x−xd)+(˙x−˙xd)=λe+˙eFor a general n order system, the sliding variable can be selected as,
s=(ddt+λ)n−1eNote in the expressions above, e can be considered as a filter response to input s, therefore if s→0, then x→0.
For a general n-dimension system, s=0 represents a hyperplane in the n−1 that passes through the origin (or desired point) depending on the variable representation.
Say we are able to bound the sliding variables s such that |s|≤ϕ after some transient dynamics. We are interested in the bounds on the error e when |s|≤ϕ. We will consider a second order system first, in this case, the sliding variable is given by,
s=˙e+λe λexp(λt)e+exp(λt)dedt=exp(λt)sd(exp(λt)e)dt=exp(λt)sd(exp(λt)e)=exp(λt)sdtIntegrating between tf and 0 gives,
e(T)=e(0)exp(−λT)+∫T0exp(−λ(T−t))sdtWe will study the boundedness of e(T) as T→∞. As T becomes large, exp(−λT)→0, for λ>0. Therefore, the first term is bounded, we will investigate the second term only. As |s|≤ϕ,
∫T0exp(−λ(T−t))sdt≤ϕ∫T0exp(−λ(T−t))dtIntegrating the term on the right gives,
ϕλ(1−exp(−λT))≤ϕλTherefore, the error e is bounded by ϕ/λ. We can show that for a n-dimension system, the error is bounded by,
e≤ϕλn−1Therefore, if we are able design a control that ensures s≤ϕ we are assued due to sliding variable that e≤ϕλn−1.
Say we are intersted in controlling a second order system given by,
¨x=f(x,˙x)+g(x,˙x)uOnce we design the sliding variable, we can design control based to drive s→0. Define a Lyapunov function L as,
L=12s2Taking derivative gives,
˙L=s˙sTherefore, if we choose u such that s˙s<0 always, then the s→0. The derivative of Lyapunov can we written as,
˙L=s(¨x+λ˙x)=s(f(x,˙x)+g(x,˙x)u+λ˙x)choosing u=−g(x,˙x)−1(f(x,˙x)+λ˙x+ηsign(s))
˙L=−η|s|Consider the example of a system given by,
¨x+1.5˙x2cos(3x)=uwith 1≤a(t)≤2, we would like to convert this to a first order system. Lets define a sliding variable s,
s=˙x+λxas x is a first order response to s. s satisfies,
Therefore, s is a valid choice for sliding variable.
Choose the Lyapunov, L as
L=12s2Taking derivative of L gives,
˙L=s˙s=s(¨x+λ˙x)=s(u−1.5˙x2cos(3x))+λxChoosing u=1.5˙x2cos(3x))−λx−ηsign(s). gives,
˙L=−η|s|clc
close all
clear all
x(:,1) = [1;1];
dt = 0.01;
lambda = 1;
eta = 5;
for i = 2:2000,
s(i) = x(2,i-1)+lambda*x(1,i-1);
u(i) = 1.5*x(2,i-1)^2*cos(3*x(1,i-1)) - lambda*x(1,i-1) - eta*sign(s(i));
x(1,i) = x(1,i-1) + dt*(x(2,i-1));
x(2,i) = x(2,i-1) + dt*(u(i) - 1.5*cos(3*x(1,i-1)));
end
plot(x(1,:),x(2,:))
hold on
plot([-2:.01:2],-lambda*[-2:.01:2])
xlabel('x')
ylabel('dx/dt')
Conside the second order true system system that is given by
¨x=f(x,˙x)+g(x,˙x)uand say the approximate system we know is given by,
¨x=ˆf(x,˙x)+g(x,˙x)usuch that |f−ˆf|≤F. Sliding mode control lends itself very well to such problems. The technique to design control is similar. We first choose a sliding variable, s=˙x+λx. Similar to process above, we define a Lyapunov,
L=12s2Taking derivative gives,
˙L=s˙s=s(f(x,˙x)+g(x,˙x)u+λ˙x)Now, we do not know f(x,˙x) accurately, so we can use estimate of f for designing control instead of the true f(x,˙x). Choosing u=−g(x,˙x)−1( ˆf(x,˙x)+F+λ˙x+ηsign(s)) gives,
˙L=s(f(x,˙x)−ˆf(x,˙x)−F−ηsign(s))As |f−ˆf|≤F,
˙L≤s(−ηsign(s))Therefore, the choice of control u=−g(x,˙x)−1( ˆf(x,˙x)+F+λ˙x+ηsign(s)) drives s→0.
Consider the example of a system given by,
¨x+a(t)˙x2cos(3x)=uwith 1≤a(t)≤2, we would like to control this sytem so x→0. As we do not know a(t) precisely, we choose an estimate as, 1.5˙x2cos(3x). Therefore,
f−ˆf=(a(t)−1.5)x2cos(3x)≤.5x2|cos(3x)|We will now define a sliding variable, s as,
s=˙x+λxL=12s2Taking derivative of Lyapunov,
˙L=s(¨x+λ˙x)=s((u−a(t)˙x2cos(3x))+λx)As we do not know a(t) precisely, we can replace it with an estimate, 1.5˙x2cos(3x)
Therefore, choosing u=1.5˙x2cos(3x)−.5x2|cos(3x)|−λx−ηsign(s) gives,
˙L=s((1.5−a(t))˙x2cos(3x)−.5x2|cos(3x)|−ηsign(s))˙L≤s(−ηsign(s))≤η|s|clc
close all
clear all
x(:,1) = [1;1];
dt = 0.01;
lambda = 1;
eta = 5;
for i = 2:2000,
s(i) = x(2,i-1)+lambda*x(1,i-1);
u(i) = 1.5*x(2,i-1)^2*cos(3*x(1,i-1)) - lambda*x(1,i-1) - eta*sign(s(i));
x(1,i) = x(1,i-1) + dt*(x(2,i-1));
a = 1+rand;
x(2,i) = x(2,i-1) + dt*(u(i) - a*cos(3*x(1,i-1)));
end
plot(x(1,:),x(2,:))
hold on
plot([-2:.01:2],-lambda*[-2:.01:2])
xlabel('x')
ylabel('dx/dt')
This can result in chattering, when the control switches quickly around the sliding surface.
Chattering can be avoided by including a smoother transition across zero, by using a sigmoid (tanh) type of function, however, this results in a scenario where the controller may not drive the sliding variable to zero precisely, but to a neighborhood of zero.
x = -1:.01:1;
plot(x,tanh(20*x),x,sign(x))
xlabel('x')
ylabel('tanh(x)')
axis([-1 1 -1.1 1.1])
clc
close all
clear all
x(:,1) = [1;1];
dt = 0.01;
lambda = 1;
eta = 5;
for i = 2:2000,
s(i) = x(2,i-1)+lambda*x(1,i-1);
u(i) = 1.5*x(2,i-1)^2*cos(3*x(1,i-1)) - lambda*x(1,i-1) - eta*tanh(20*s(i));
x(1,i) = x(1,i-1) + dt*(x(2,i-1));
a = 1+rand;
x(2,i) = x(2,i-1) + dt*(u(i) - a*cos(3*x(1,i-1)));
end
plot(x(1,:),x(2,:))
hold on
plot([-2:.01:2],-lambda*[-2:.01:2])
xlabel('x')
ylabel('dx/dt')