我正在使用Python2.7创建一个简单的矢量场,然后将其绘制...
但是Jupyter抱怨被0除(“ RuntimeWarning:除法中遇到的零除法”),我找不到它。
import numpy as np
def field_gen(x0, y0, x, y, q_cons = 1):
dx = x0-x
dy = y0-y
dist = np.sqrt(np.square(dx)+np.square(dy))
kmod = np.where( dist>0.00001, q_cons / dist, 0 )
kdir = np.where( kmod != 0, (np.arctan2(-dy,-dx) * 180 / np.pi), 0)
res_X = np.where( kmod !=0, kmod * (np.cos(kdir)) , 0 )
res_Y = np.where( kmod !=0, kmod * (np.sin(kdir)) , 0 )
return (res_X, res_Y)
n = 10
X, Y = np.mgrid[0:n, 0:n]
x0=2
y0=2
(u,v)= field_gen(x0, y0, X, Y)
#print(u) #debug
#print
#print(v)
plt.figure()
plt.quiver(X, Y, u, v, units='width')
有任何暗示吗?
答案 0 :(得分:1)
不要误以为np.where
在这里完成了所有工作。在运行调用np.where
之前,Python仍将首先评估所有输入参数。
因此,在您的命令kmod = np.where( dist>0.00001, q_cons / dist, 0 )
中,Python将在运行dist>0.00001
之前评估q_cons / dist
(确定)和np.where
(不好!)。
改为尝试np.divide。我想您想要这样的东西:
np.divide(q_cons, dist, where=dist>0.00001 )