• 【Python】基于欧拉角的刚体转动仿真演示


    先画个立方体

    工欲善其事、必先利其器,在开始学习欧拉角模拟之前,可先绘制一个立方体。

    matplotlib中,这个任务可通过plt.voxels实现,下面先绘制一个最质朴的立方体

    在这里插入图片描述

    代码为

    import matplotlib.pyplot as plt
    import numpy as np
    
    x, y, z = np.indices((2, 2, 2))
    filled = np.ones((1,1,1))
    ax = plt.subplot(projection='3d')
    ax.voxels(x,y,z, filled=filled)
    plt.show()
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8

    其中,x,y,z表示顶点,filled表示被填充的区域。由于其顶点数量为 2 × 2 × 2 2\times2\times2 2×2×2,故只有一个立方体,从而filled是一个 1 × 1 × 1 1\times1\times1 1×1×1的张量。

    有了立方体之后,就可以进行欧拉角仿真了。

    欧拉角和旋转矩阵

    为了尽快进入演示部分,故对原理的介绍从略,仅从二维平面上的旋转矩阵出发,做一个简单的推导,而三维旋转矩阵,至少在形式上与二维是雷同的。

    假设坐标系中有一个向量 ( x , y ) (x,y) (x,y),其模长为 r = x 2 + y 2 r=\sqrt{x^2+y^2} r=x2+y2 ,角度为 θ 0 = arctan ⁡ y x \theta_0=\arctan\frac{y}{x} θ0=arctanxy。若将其围绕坐标原点逆时针旋转 θ \theta θ,则其坐标变为

    x ′ = r cos ⁡ ( θ 0 + θ ) = r cos ⁡ θ 0 cos ⁡ θ − r sin ⁡ θ 0 sin ⁡ θ y ′ = r sin ⁡ ( θ 0 + θ ) = r sin ⁡ θ 0 cos ⁡ θ + r cos ⁡ θ 0 sin ⁡ θ x' = r\cos(\theta_0+\theta)=r\cos\theta_0\cos\theta-r\sin\theta_0\sin\theta\\ y' = r\sin(\theta_0+\theta)=r\sin\theta_0\cos\theta+r\cos\theta_0\sin\theta x=rcos(θ0+θ)=rcosθ0cosθrsinθ0sinθy=rsin(θ0+θ)=rsinθ0cosθ+rcosθ0sinθ

    由于 x = r cos ⁡ θ 0 , y = r sin ⁡ θ 0 x = r\cos\theta_0, y=r\sin\theta_0 x=rcosθ0,y=rsinθ0,则上式可以写为

    x ′ = x cos ⁡ θ − y sin ⁡ θ y ′ = − x sin ⁡ θ + y cos ⁡ θ x'= x\cos\theta - y\sin\theta\\ y'= -x\sin\theta + y\cos\theta x=xcosθysinθy=xsinθ+ycosθ

    写成矩阵形式即为

    [ x ′ y ′ ] = [ cos ⁡ θ − sin ⁡ θ sin ⁡ θ cos ⁡ θ ] [ x y ]

    [xy]" role="presentation">[xy]
    =
    [cosθsinθsinθcosθ]" role="presentation">[cosθsinθsinθcosθ]
    [xy]" role="presentation">[xy]
    [xy]=[cosθsinθsinθcosθ][xy]

    也就是说,在平面直角坐标系上,向量绕原点顺时针旋转 θ \theta θ,相当于左乘一个旋转矩阵。

    推广到三维,为了限制 x y xy xy坐标平面上的旋转,要将其旋转中心从原点扩展为绕着 z z z轴旋转,从而三维旋转矩阵可推广为

    [ cos ⁡ θ − sin ⁡ θ 0 sin ⁡ θ cos ⁡ θ 0 0 0 1 ]

    [cosθsinθ0sinθcosθ0001]" role="presentation">[cosθsinθ0sinθcosθ0001]
    cosθsinθ0sinθcosθ0001

    同理可得到绕三个轴转动的旋转矩阵,为了书写方便,记 S θ = sin ⁡ θ , C θ = cos ⁡ θ S_\theta=\sin\theta, C_\theta=\cos\theta Sθ=sinθ,Cθ=cosθ,可列出下表。

    R x ( θ ) R_x(\theta) Rx(θ) R x ( θ ) R_x(\theta) Rx(θ) R x ( θ ) R_x(\theta) Rx(θ)
    [ 1 0 0 0 C θ − S θ 0 S θ C θ ]
    [1000CθSθ0SθCθ]" role="presentation" style="position: relative;">[1000CθSθ0SθCθ]
    1000CθSθ0SθCθ
    [ C θ 0 S θ 0 1 0 − S θ 0 C θ ]
    [Cθ0Sθ010Sθ0Cθ]" role="presentation" style="position: relative;">[Cθ0Sθ010Sθ0Cθ]
    Cθ0Sθ010Sθ0Cθ
    [ C θ S θ 0 − S θ C θ 0 0 0 1 ]
    [CθSθ0SθCθ0001]" role="presentation" style="position: relative;">[CθSθ0SθCθ0001]
    CθSθ0SθCθ0001

    初步演示

    将旋转矩阵写成函数是十分方便的,下面用lambda表达式来实现

    import numpy as np
    # 将角度转弧度后再求余弦
    cos = lambda th : np.cos(np.deg2rad(th))
    sin = lambda th : np.sin(np.deg2rad(th))
    
    # 即 Rx(th) => Matrix
    Rx = lambda th : np.array([
        [1, 0,       0],
        [0, cos(th), -sin(th)],
        [0, sin(th), cos(th)]])
    Ry = lambda th : np.array([
        [cos(th),  0, sin(th)],
        [0      ,  1, 0],
        [-sin(th), 0, cos(th)]
    ])
    Rz = lambda th : np.array([
        [cos(th) , sin(th), 0],
        [-sin(th), cos(th), 0],
        [0       , 0,       1]])
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19

    有了旋转矩阵,就可以旋转,接下来让正方体沿着三个轴分别旋转30°,其效果如下

    在这里插入图片描述

    由于ax.voxels在绘图时,要求输入的是拥有三个维度的数组,而旋转矩阵是 3 × 3 3\times3 3×3矩阵,相当于是二维数组,彼此之间可能很难计算,所以实际计算时,需要对数组维度进行调整

    import matplotlib.pyplot as plt
    # 用于批量调节x,y,z的数组维度
    Reshape = lambda x,y,z : [x.reshape(2,2,2), y.reshape(2,2,2), z.reshape(2,2,2)]
    
    
    filled = np.ones((1,1,1))
    x, y, z = np.indices((2, 2, 2))
    # 将x,y,z展开,以便于矩阵计算
    xyz = np.array([x,y,z]).reshape(3,-1)
    
    fig = plt.figure("rotate")
    # 此为未旋转的正方体
    ax = fig.add_subplot(1,4,1, projection='3d')
    ax.voxels(x,y,z, filled=filled)
    
    # 绕x轴旋转30°
    X, Y, Z = Rx(30) @ xyz
    ax = fig.add_subplot(1,4,2, projection='3d')
    ax.voxels(*Reshape(X, Y, Z), filled=filled)
    
    # 绕y轴旋转30°
    X, Y, Z = Ry(30) @ xyz
    ax = fig.add_subplot(1,4,3, projection='3d')
    ax.voxels(*Reshape(X, Y, Z), filled=filled)
    
    # 绕z轴旋转30°
    X, Y, Z = Rz(30) @ xyz
    ax = fig.add_subplot(1,4,4, projection='3d')
    ax.voxels(*Reshape(X, Y, Z), filled=filled)
    
    plt.show()
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31

    不同转动顺序的影响

    众所周知,矩阵计算是不能交换的,反映到实际生活中,就是不同的旋转次序,可能会导致完全不同的结果,接下来沿着不同的旋转次序,来对正方体进行旋转,效果如下

    在这里插入图片描述

    需要注意的是,由于矩阵左乘向量表示对向量进行旋转,所以距离向量最近的矩阵表示最先进行的操作,即 R z R y R x r ⃗ R_zR_yR_x\vec r RzRyRxr 表示先转 R x R_x Rx R y R_y Ry次之, R z R_z Rz最后。

    代码如下

    filled = np.ones((1,1,1))
    x, y, z = np.indices((2, 2, 2))
    xyz = np.array([x,y,z]).reshape(3,-1)
    
    fig = plt.figure("rotate")
    # 旋转顺序 x, y, z
    X, Y, Z = Rz(30) @ Ry(30) @ Rx(30) @ xyz
    ax = fig.add_subplot(1,3,1, projection='3d')
    ax.voxels(*Reshape(X, Y, Z), filled=filled)
    
    # 旋转顺序 z, y, x
    X, Y, Z = Rx(30) @ Ry(30) @ Rz(30) @ xyz
    ax = fig.add_subplot(1,3,2, projection='3d')
    ax.voxels(*Reshape(X, Y, Z), filled=filled)
    
    # 旋转顺序 y, x, z
    X, Y, Z = Rz(30) @ Rx(30) @ Ry(30) @ xyz
    ax = fig.add_subplot(1,3,3, projection='3d')
    ax.voxels(*Reshape(X, Y, Z), filled=filled)
    
    plt.show()
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21

    总之,虽然分不清谁是谁,但最起码可以看清楚,不同的旋转顺序的确导致了不同的旋转结果。

    旋转演示

    为了更加清楚地表示这一过程,可以将正方体的旋转过程绘制下来,先考虑单轴旋转,假设每次旋转3°,绕X轴旋转30次,则可得到

    在这里插入图片描述

    import numpy as np
    import matplotlib.pyplot as plt
    from matplotlib import cm
    import imageio
    
    filled = np.ones((1,1,1))
    x, y, z = np.indices((2, 2, 2))
    xyz = np.array([x,y,z]).reshape(3,-1)
    
    def saveGif(X,Y,Z, gifs):
        plt.cla()
        ax = plt.subplot(projection='3d')
        ax.voxels(*Reshape(X, Y, Z), filled=filled)
        ax.set_xlim(-0.5,1.5)
        ax.set_ylim(-0.5,1.5)
        ax.set_zlim(-0.5,1.5)
        ax.set_title(f"theta={th}")
        plt.tight_layout()
        plt.savefig(f"tmp.jpg")
        gifs.append(imageio.imread(f"tmp.jpg"))
    
    gifImgs = []
    th = 0
    
    for i in range(30):
        X,Y,Z = Rx(th)@xyz
        th += 3
        saveGif(X, Y, Z, gifImgs)
    
    imageio.mimsave("test.gif",gifImgs,fps=10)
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30

    通过这个方法,可以将不同顺序的旋转矩阵可视化表示,

    filled = np.ones((1,1,1))
    x, y, z = np.indices((2, 2, 2))
    xyz = np.array([x,y,z]).reshape(3,-1)
    
    gifImgs = []
    th = 0
    for _ in range(10):
        X,Y,Z = Rz(0) @ Rx(0) @ Ry(th) @ xyz
        th += 3
        saveGif(X, Y, Z, gifImgs)
    
    th = 0
    for i in range(10):
        X,Y,Z = Rz(0) @ Rx(th) @ Ry(30) @ xyz
        th += 3
        saveGif(X, Y, Z, gifImgs)
    
    th = 0
    for i in range(10):
        X,Y,Z = Rz(th) @ Rx(30) @ Ry(30) @ xyz
        th += 3
        saveGif(X, Y, Z, gifImgs)
    
    imageio.mimsave("test.gif",gifImgs,fps=10)
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24

    最后得到三种不同旋转顺序的区别

    x-y-zz-y-xy-x-z
    在这里插入图片描述在这里插入图片描述在这里插入图片描述
  • 相关阅读:
    linux在如何安装宝塔,宝塔在linux服务器下如何安装?
    设计模式——抽象工厂模式
    彩票双色球预测工具1.0
    11-1java集合框架的概述
    切片比数组好用在哪
    java开发之个微机器人的二次开发
    关键词排名我们如何才能优化到首页
    【SpringMVC】SpringMVC接受请求参数和数据回显
    Leetcode周赛365补题(3 / 3)
    【Java 进阶篇】保护你的应用:Java 过滤器实现敏感词汇过滤
  • 原文地址:https://blog.csdn.net/m0_37816922/article/details/127669240