由于your great help的原因,我现在可以绘制一个内部有孔的3D圆柱体:) 这是我的代码:
import numpy as np
import matplotlib as mlp
import matplotlib.pyplot as plt
import mpl_toolkits.mplot3d.axes3d as axes3d
inner_radius = 100
outer_radius = 300
height=50
# input xy coordinates
input_xy = np.array([[ri,0],[ra,0],[ra,h],[ri,h],[ri,0]])
# radial component is x values of input
r = xy[:,0]
# angular component is one revolution of 30 steps
phi = np.linspace(0, 2*np.pi, 30)
# create grid
R,Phi = np.meshgrid(r,phi)
# transform to cartesian coordinates
X = R*np.cos(Phi)
Y = R*np.sin(Phi)
# Z values are y values, repeated 30 times
Z = np.tile(xy[:,1],len(Y)).reshape(Y.shape)
fig = plt.figure()
ax = fig.add_subplot(1, 1, 1, projection='3d')
#ax2 = fig.add_axes([0.05,0.7,0.15,.2])
#ax2.plot(xy[:,0],xy[:,1], color="k")
ax.set_zlim(0,200)
ax.plot_surface(X, Y, Z, alpha=0.5, color='lightgrey', rstride=1, cstride=1)
plt.show()
对我来说,下一个非常重要的步骤是在顶面上绘制计数图(如果可能,可能在3d中绘制)。它应该看起来像这样(也可以只是二维): Contour Plot
在我的情节中,它看起来像这样:Contour plot on my example code
我发现了一些与我的问题How to plot contour lines on a surface plot类似的东西,但不幸的是,我不理解代码。 最好的祝福 !
更新:这是我想象的样子的草稿:Target
我希望有人知道如何处理这个问题。