2

我正在尝试在 Gekko (IMODE=6) 中实现类似于阶跃函数的东西。我已经尝试过 If3 并设置自定义下限和上限,但在 Gekko 中仍然找不到解决方案。

对于这样的阶跃函数或 Gekko 中的任何分段函数,您会推荐什么?

4

1 回答 1

3

Gekko 中允许使用阶跃函数(或任何其他输入)。如果阶跃函数不依赖于条件而只依赖于时间,那么您将不需要该if3函数。u_step这是一个定义阶跃函数的示例问题。

阶梯函数

import numpy as np
from gekko import GEKKO
import matplotlib.pyplot as plt

m = GEKKO()    # create GEKKO model
m.time = np.linspace(0,40,401) # time points

# create GEKKO parameter (step 0 to 2 at t=5)
u_step = np.zeros(401)
u_step[50:] = 2.0
u = m.Param(value=u_step)

# create GEKKO variables
x = m.Var(0.0) 
y = m.Var(0.0) 

# create GEEKO equations
m.Equation(2*x.dt()==-x+u) 
m.Equation(5*y.dt()==-y+x) 

# solve ODE
m.options.IMODE = 4
m.solve()

# plot results
plt.plot(m.time,u,'g:',label='u(t)')
plt.plot(m.time,x,'b-',label='x(t)')
plt.plot(m.time,y,'r--',label='y(t)')
plt.ylabel('values')
plt.xlabel('time')
plt.legend(loc='best')
plt.show()

提供使用 Gekko 求解微分方程的其他教程。

于 2019-09-04T17:25:09.160 回答