from gekko import GEKKO import numpy as np import pandas as pd import matplotlib.pyplot as plt # load data and parse into columns url = 'http://apmonitor.com/do/uploads/Main/tclab_siso_data.txt' data = pd.read_csv(url) t = data['time'] u = data['voltage'] y = data['temperature'] # generate time-series model m = GEKKO() # system identification na = 2 # output coefficients nb = 2 # input coefficients yp,p,K = m.sysid(t,u,y,na,nb,pred='meas') plt.figure() plt.subplot(2,1,1) plt.plot(t,u) plt.legend([r'$V_1$ (mV)']) plt.ylabel('MV Voltage (mV)') plt.subplot(2,1,2) plt.plot(t,y) plt.plot(t,yp) plt.legend([r'$T_{1meas}$',r'$T_{1pred}$']) plt.ylabel('CV Temp (degF)') plt.xlabel('Time') plt.savefig('sysid.png') plt.show()