-
Notifications
You must be signed in to change notification settings - Fork 6
/
controller_mpc_4.m
72 lines (61 loc) · 2.27 KB
/
controller_mpc_4.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
% BRIEF:
% Controller function template. Input and output dimension MUST NOT be
% modified.
% INPUT:
% Q: State weighting matrix, dimension (3,3)
% R: Input weighting matrix, dimension (3,3)
% T: Measured system temperatures, dimension (3,1)
% N: MPC horizon length, dimension (1,1)
% OUTPUT:
% p: Heating and cooling power, dimension (3,1)
function p = controller_mpc_4(Q, R, T, N, ~)
% controller variables
persistent param yalmip_optimizer
% initialize controller, if not done already
if isempty(param)
[param, yalmip_optimizer] = init(Q, R, N);
end
% evaluate control action by solving MPC problem
[u_mpc,errorcode] = yalmip_optimizer(T-param.T_sp);
if (errorcode ~= 0)
warning('MPC4 infeasible');
end
p = u_mpc + param.p_sp;
end
function [param, yalmip_optimizer] = init(Q, R, N)
% get basic controller parameters
param = compute_controller_base_parameters;
% get terminal cost
[~, P] = dlqr(param.A, param.B, Q, R);
% get terminal set
clear compute_X_LQR
[A_x, b_x] = compute_X_LQR(Q, R);
%cla
S = diag([100, 10000, 10000]);
% implement your MPC using Yalmip here
nx = size(param.A,1);
nu = size(param.B,2);
U = sdpvar(repmat(nu,1,N-1),ones(1,N-1),'full');
X = sdpvar(repmat(nx,1,N),ones(1,N),'full');
eps = sdpvar(repmat(nx,1,N),ones(1,N),'full');
v = sdpvar(1,1,'full'); % linear coefficient
T0 = sdpvar(nx,1,'full');
objective = 0;
constraints = [];
% initial condition
constraints = [constraints, X{1} == T0];
for k = 1:N-1
constraints = [constraints, X{k+1} == param.A*X{k} + param.B*U{k}]; % dynamics
constraints = [constraints, X{k+1} >= param.Xcons(:,1) - eps{k}];
constraints = [constraints, X{k+1} <= param.Xcons(:,2) + eps{k}];
constraints = [constraints, eps{k} >= zeros(nx,1)];
constraints = [constraints, U{k} >= param.Ucons(:,1)];
constraints = [constraints, U{k} <= param.Ucons(:,2)];
objective = objective + X{k}'*Q*X{k} + U{k}'*R*U{k};
objective = objective + v*norm(eps{k},1) + eps{k}'*S*eps{k};
end
constraints = [constraints, A_x * X{end} <= b_x, eps{end} >= zeros(nx,1),v == 10000]; % needed to fix v value
objective = objective + X{end}'*P*X{end} + v*norm(eps{end},1) + eps{end}'*S*eps{end}; % terminal cost
ops = sdpsettings('verbose',0,'solver','quadprog');
yalmip_optimizer = optimizer(constraints,objective,ops,T0,U{1});
end