Degrees of freedom warning with MPC in GEKKO

138 Views Asked by At

I am trying to predict how a controller behaves given a temperature range using GEKKO and MPC. I am new to control systems and have never worked with either MPC or GEKKO before.

I want to minimize the power of a fan in a ventilation system while keeping the temperature within a desired range, specifically within the range shown in the image:

Upper temp range (blue) and lower (green)

I have obtained an equation using PySINDy that described the relationship between fan power of a ventilation system and the temperature in the room. It is given as:

dx/dt = 0.205+0.029y-0.003xy-0.001x^2

where x is the room temperature and y is the fan power.

My code is as follows:

# Initialize GEKKO model
m = GEKKO() 
m.time = np.linspace(0,144,144)

# Manipulated variable
y = m.MV(value=0,lb=0,ub=100) # *** This is the fan power y *** 
y.STATUS = 1 
y.DCOST = 0.1
y.DMAX = 20

# Controlled variable
x = m.CV(value=18) #Initial value of control variable. *** This is temperature x ***
x.STATUS = 1

m.option.CV_TYPE = 1 #L1 norm
x.RT_INIT = 1
x.TAU = 20

# Add contraints
temp_u = np.concatenate((19*np.ones(32),22.5*np.ones(80),19*np.ones(32))) # Upper temperature limit 
temp_l = np.concatenate((17.5*np.ones(38),21.0*np.ones(68),17.5*np.ones(38))) # Lower temperature limit

T_low = m.Param(value=temp_l)
T_high = m.Param(value=temp_u)

m.Equations([x>=T_low, x<=T_high])

# Equation
m.Equation(x.dt() == 0.205+0.029*y-0.003*x*y-0.001*(x**2))

#MPC Mode
m.options.IMODE = 6 

#Solve
m.solve()

I get the following output :

apm 77.241.105.43_gk_model4 <br><pre> ----------------------------------------------------------------
 APMonitor, Version 1.0.1
 APMonitor Optimization Suite
 ----------------------------------------------------------------
 
 
 --------- APM Model Size ------------
 Each time step contains
   Objects      :            0
   Constants    :            0
   Variables    :            6
   Intermediates:            0
   Connections  :            0
   Equations    :            3
   Residuals    :            3
 
 Number of state variables:           2860
 Number of total equations: -         2717
 Number of slack variables: -          286
 ---------------------------------------
 Degrees of freedom       :           -143
 
 * Warning: DOF <= 0
 **********************************************
 Dynamic Control with Interior Point Solver
...
 
 Creating file: infeasibilities.txt
 Use command apm_get(server,app,'infeasibilities.txt') to retrieve file
 @error: Solution Not Found
---------------------------------------------------------------------------
Exception                                 Traceback (most recent call last)
~\mpc.ipynb Cell 11' in <cell line: 1>()
----> 1 m.solve()

File ~\AppData\Local\Programs\Python\Python39\lib\site-packages\gekko\gekko.py:2185, in GEKKO.solve(self, disp, debug, GUI, **kwargs)
   2183 #print APM error message and die
   2184 if (debug >= 1) and ('@error' in response):
-> 2185     raise Exception(response)
   2187 #load results
   2188 def byte2str(byte):

Exception:  @error: Solution Not Found

1

There are 1 best solutions below

1
On BEST ANSWER

For those in a similar position, solved my own problem with this code:

m = GEKKO()
m.time = np.linspace(0,144,145)
# Upper temperature limit 
temp_u = np.concatenate((18*np.ones(32),22*np.ones(81),18*np.ones(32)))
# Lower temperature limit 
temp_l = np.concatenate((17.0*np.ones(42),21.0*np.ones(61),17.0*np.ones(42)))
T_low = m.Param(value=temp_l)
T_high = m.Param(value=temp_u)

#Manipulated variable
u = m.MV(value=0,lb=0,ub=100)
u.STATUS = 1

#Controlled variable
T = m.SV(value=18)

#Soft constraints
eH = m.CV(value=0)
eL = m.CV(value=0)

eH.SPHI=0; eH.WSPHI=10; eH.WSPLO=0  ; eH.STATUS = 1
eL.SPLO=0; eL.WSPHI=0  ; eL.WSPLO=10; eL.STATUS = 1

m.Equations([eH==T-T_high,eL==T-T_low])
#m.Equations([eH==T-T_high])
m.Equation(T.dt() == 02.05+0.029*u-0.003*T*u-0.001*(T**2))
m.Minimize(u)


m.options.IMODE = 6
m.solve(disp=True,debug=True)