是否有可能使用Python 3生成适当的奈奎斯特图?

时间:2017-11-01 14:27:12

标签: python-3.x control-theory

我正在尝试通过Python 3生成Nyquist图,但Python生成的图表似乎并不完整。

以下是奈奎斯特图的实施系统;

enter image description here

这是我的奈奎斯特情节代码;

import numpy as np
from matplotlib import pyplot as plt
import control

%matplotlib

G = control.TransferFunction((500), (1, 14, 43, 30))

rlist, klist = control.nyquist(G)

plt.show()

这是我得到的图表;

enter image description here

但是从我正在使用的教科书中,这是他们的情节;

enter image description here

有没有办法让Python提供更接近实际解决方案的图,或者这是Python现在可能的最佳近似值?

0 个答案:

没有答案