我正在使用curve_fit
拟合一阶动态系统的阶跃响应来估计增益和时间常数。我使用两种方法。第一种方法是在时域中拟合函数生成的曲线。
# define the first order dynamics in the time domain
def model(t,gain,tau):
return (gain*(1-exp(-t/tau)))
#define the time intervals
time_interval = linspace(1,100,100)
#genearte the output using the model with gain= 10 and tau= 4
output= model(t,10,4)
# fit to output and estimate parameters - gain and tau
par = curve_fit(time_interval, output)
现在检查par
显示一个完美的 10 和 4 数组。
第二种方法是通过拟合 LTI 系统的阶跃响应来估计增益和时间常数。LTI 系统被定义为具有分子和分母的传递函数。
#define function as a step response of a LTI system .
# The argument x has no significance here,
# I have included because , the curve_fit requires passing "x" data to the function
def model1(x ,gain1,tau1):
return lti(gain1,[tau1,1]).step()[1]
#generate output using the above model
output1 = model1(0,10,4)
par1 = curve_fit(model1,1,output1)
现在检查 par1 显示 [1.00024827, 0.01071004] 的数组是错误的。我的第二种方法有什么问题?是否有更有效的方法通过curve_fit从数据中估计传递函数系数
谢谢