如何将3d表面颜色映射映射到标量函数?

时间:2017-05-01 14:33:40

标签: python matplotlib plot 3d

我有一个标量函数,表示球面中的电位。我想绘制一个给定半径的曲面,并根据潜在函数将其点连接到一个颜色图。

如何将该标量函数映射到曲面中的colormap?我怀疑它必须在传递给函数ax.plot_surface的参数中。我尝试使用参数facecolors=potencial(x,y,z),但它给了我一个ValueError: Invalid RGBA argument。查看source code of the third example,有:

# Create an empty array of strings with the same shape as the meshgrid, and
# populate it with two colors in a checkerboard pattern.
colortuple = ('y', 'b')
colors = np.empty(X.shape, dtype=str)
for y in range(ylen):
    for x in range(xlen):
        colors[x, y] = colortuple[(x + y) % len(colortuple)]

我不明白,也没有想法如何链接到标量函数。

我的代码

from mpl_toolkits.mplot3d import Axes3D
import matplotlib.pyplot as plt
from matplotlib import cm
import numpy as np
from scipy import special    

def potencial(x,y,z, a=1., v=1.):
    r = np.sqrt( np.square(x) + np.square(y) + np.square(z) )    
    p = z/r #cos(theta)
    asr = a/r
    s=0
    s += np.polyval(special.legendre(1), p) * 3/2*np.power(asr, 2)
    s += np.polyval(special.legendre(3), p) * -7/8*np.power(asr, 4)
    s += np.polyval(special.legendre(5), p) * 11/16*np.power(asr, 6)    
    return v*s

# Make data
def sphere_surface(r):
    u = np.linspace(0, 2 * np.pi, 100)
    v = np.linspace(0, np.pi, 100)
    x = r * np.outer(np.cos(u), np.sin(v))
    y = r * np.outer(np.sin(u), np.sin(v))
    z = r * np.outer(np.ones(np.size(u)), np.cos(v))
    return x,y,z

x,y,z = sphere_surface(1.5)

fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
# Plot the surface
surf = ax.plot_surface(x,y,z, cmap=cm.coolwarm,
                       linewidth=0, antialiased=False)
fig.colorbar(surf, shrink=0.5, aspect=5)
# This is mapping the color to the z-axis value

ax.set_xlabel("x")
ax.set_ylabel("y")
ax.set_zlabel("z")
plt.show()

1 个答案:

答案 0 :(得分:1)

原则上,有两种方法可以在matplotlib中对表面图进行着色。

  1. 使用cmap参数指定色彩映射。在这种情况下,将根据z数组选择颜色。如果不需要,
  2. 使用facecolors参数。这需要一组与z形状相同的颜色。
  3. 所以在这种情况下我们需要选择选项2并构建一个颜色数组。 为此,可以选择色彩图。色图将0到1之间的值映射到颜色。由于电位的值远高于此范围,因此需要将它们标准化为[0,1]范围 Matplotlib已经提供了一些辅助函数来进行这种标准化,并且由于电位具有1 / x依赖性,因此对数色标可能是合适的。

    最后,面部颜色可以被赋予一个数组

    colors = cmap(norm(potential(...)))
    

    缺少的位现在是彩条。为了将颜色条链接到曲面图中的颜色,我们需要使用颜色图和规范化实例手动设置ScalarMappable,然后我们可以将其提供给颜色条。

    sm = plt.cm.ScalarMappable(cmap=plt.cm.coolwarm, norm=norm)
    sm.set_array(pot)
    fig.colorbar(sm, shrink=0.5, aspect=5)
    

    这是完整的例子。

    from __future__ import division
    from mpl_toolkits.mplot3d import Axes3D
    import matplotlib.pyplot as plt
    import matplotlib.colors
    import numpy as np
    from scipy import special    
    
    def potencial(x,y,z, a=1., v=1.):
        r = np.sqrt( np.square(x) + np.square(y) + np.square(z) )    
        p = r/z #cos(theta)
        asr = a/r
        s=0
        s += np.polyval(special.legendre(1), p) * 3/2*np.power(asr, 2)
        s += np.polyval(special.legendre(3), p) * -7/8*np.power(asr, 4)
        s += np.polyval(special.legendre(5), p) * 11/16*np.power(asr, 6)    
        return v*s
    
    # Make data
    def sphere_surface(r):
        u = np.linspace(0, 2 * np.pi, 100)
        v = np.linspace(0, np.pi, 100)
        x = r * np.outer(np.cos(u), np.sin(v))
        y = r * np.outer(np.sin(u), np.sin(v))
        z = r * np.outer(np.ones(np.size(u)), np.cos(v))
        return x,y,z
    
    x,y,z = sphere_surface(1.5)
    pot = potencial(x,y,z)
    
    
    norm=matplotlib.colors.SymLogNorm(1,vmin=pot.min(),vmax=pot.max())
    colors=plt.cm.coolwarm(norm(pot))
    
    fig = plt.figure()
    ax = fig.add_subplot(111, projection='3d')
    # Plot the surface
    surf = ax.plot_surface(x,y,z, facecolors=colors,
                           linewidth=0, antialiased=False)
    # Set up colorbar
    sm = plt.cm.ScalarMappable(cmap=plt.cm.coolwarm, norm=norm)
    sm.set_array(pot)
    fig.colorbar(sm, shrink=0.5, aspect=5)
    
    
    ax.set_xlabel("x")
    ax.set_ylabel("y")
    ax.set_zlabel("z")
    plt.show()
    

    enter image description here