-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinear_simulation.m
47 lines (40 loc) · 1.14 KB
/
linear_simulation.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
%% Simulation
Number_of_iterations=100;
state=[20;0];
nominal_state=state;
state_history =zeros(Number_of_iterations,number_of_states);
plot(X_set_full)
hold on
plot(X_set_nominal,'color','g')
xlabel('x1')
ylabel('x2')
for i=1:Number_of_iterations
b_inequ = b_inequ_function(nominal_state);
Hes=H'*Q_full*H+R_full;
grad=2*nominal_state'*F'*Q_full*H;
b_eq=b_eq_function(nominal_state);
[inputs,~,exitflag,message]=quadprog(Hes,grad,A_inequ,b_inequ,A_equ,b_eq);
if isempty(inputs)
disp(0);
end
u = inputs(1:number_inputs);
u_hat = -K*(state-nominal_state);
state = system_function(state,u+u_hat);
nominal_state=A_sys*nominal_state+B_sys*u;
state_history(i,:)=state;
try
delete( hl1 );
delete( hl2 );
catch
end
hl1=plot(tube+nominal_state,'color','white');
hl2=plot(state_history(max(1,(i-3)):i,1),state_history(max(1,(i-3)):i,2),'b');
if i==1
xlabel('x1')
ylabel('x2')
legend({'Feasible set','Reduced Feasible set','Tube','trajectory'},'AutoUpdate','off')
end
plot(0,0,'r*')
pause(0.1)
end
hold on