偏振测量——典型光学元件的穆勒矩阵

斯托克斯向量(Stokes Vector)为1*4向量,可用于描述偏振光的状态,其四个元素分别代表总光强S0,垂直或水平方向线偏振分量S1,正负45度线偏振分量S2,圆偏振分量S3。

当一束光经过某个器件时,其偏振态发生变化,对应到斯托克斯向量的变化。在数学上即可考虑到用一个4*4的矩阵描述该器件对光的偏振态的影响,这个矩阵就是穆勒矩阵。这里记录一些典型光学元件的穆勒矩阵以供查询。

线性偏振片(偏振方向为0度)

玻片(waveplate 或补偿器compensator 或延迟器retarder),其中phi为玻片的延迟量,快轴角度为0

另外,穆勒矩阵的旋转矩阵如下,其中theta为旋转角度

一个光学元件旋转一定角度后,其穆勒矩阵可以如下计算:

进而可以求得任意玻片和偏振片旋转一定角度后的穆勒矩阵。

以下python代码

python 复制代码
import numpy as np

def WavePlate(delta):
    Mwp = np.zeros([4, 4])
    Mwp[0, 0] = 1
    Mwp[1, 1] = 1
    Mwp[2, 2] = np.cos(delta)
    Mwp[3, 3] = np.cos(delta)
    Mwp[2, 3] = -np.sin(delta)
    Mwp[3, 2] = np.sin(delta)
    return Mwp
def RotateMatrix(theta):
    R = np.zeros([4,4])
    R[0, 0] = 1
    R[3, 3] = 1
    R[1, 1] = np.cos(2 * theta)
    R[2, 2] = np.cos(2 * theta)
    R[1, 2] = np.sin(2 * theta)
    R[2, 1] = -np.sin(2 * theta)
    return R

def rotate(M,theta):
    R1 = RotateMatrix(theta)
    R2 = RotateMatrix(-theta)
    return R2@M@R1

Mp = np.zeros([4,4])
Mp[0:2,0:2]=1
print('角度为0度的线性偏振片穆勒矩阵: \n',Mp)
print('角度为45度的线性偏振片穆勒矩阵: \n',np.round(rotate(Mp,np.pi/4)))
print('角度为-45度的线性偏振片穆勒矩阵: \n',np.round(rotate(Mp,-np.pi/4)))
print('角度为90度的线性偏振片穆勒矩阵: \n',np.round(rotate(Mp,np.pi/2)))

delta1 = np.pi/4 #四分之一玻片
delta2 = np.pi/2 #半玻片

print('快轴角度为0度的四分之一玻片穆勒矩阵: \n',np.round(WavePlate(delta1),2))
print('快轴角度为90度的四分之一玻片穆勒矩阵: \n',np.round(rotate(WavePlate(delta1),np.pi/2),2))
print('快轴角度为0度的半玻片穆勒矩阵: \n',np.round(WavePlate(delta2),2))
print('快轴角度为90度的半玻片穆勒矩阵: \n',np.round(rotate(WavePlate(delta2),np.pi/2),2))

运行结果:

python 复制代码
角度为0度的线性偏振片穆勒矩阵: 
 [[1. 1. 0. 0.]
 [1. 1. 0. 0.]
 [0. 0. 0. 0.]
 [0. 0. 0. 0.]]
角度为45度的线性偏振片穆勒矩阵: 
 [[1. 0. 1. 0.]
 [0. 0. 0. 0.]
 [1. 0. 1. 0.]
 [0. 0. 0. 0.]]
角度为-45度的线性偏振片穆勒矩阵: 
 [[ 1.  0. -1.  0.]
 [ 0.  0. -0.  0.]
 [-1. -0.  1.  0.]
 [ 0.  0.  0.  0.]]
角度为90度的线性偏振片穆勒矩阵: 
 [[ 1. -1.  0.  0.]
 [-1.  1. -0.  0.]
 [ 0. -0.  0.  0.]
 [ 0.  0.  0.  0.]]
快轴角度为0度的四分之一玻片穆勒矩阵: 
 [[ 1.    0.    0.    0.  ]
 [ 0.    1.    0.    0.  ]
 [ 0.    0.    0.71 -0.71]
 [ 0.    0.    0.71  0.71]]
快轴角度为90度的四分之一玻片穆勒矩阵: 
 [[ 1.    0.    0.    0.  ]
 [ 0.    1.   -0.    0.  ]
 [ 0.   -0.    0.71  0.71]
 [ 0.   -0.   -0.71  0.71]]
快轴角度为0度的半玻片穆勒矩阵: 
 [[ 1.  0.  0.  0.]
 [ 0.  1.  0.  0.]
 [ 0.  0.  0. -1.]
 [ 0.  0.  1.  0.]]
快轴角度为90度的半玻片穆勒矩阵: 
 [[ 1.  0.  0.  0.]
 [ 0.  1. -0.  0.]
 [ 0. -0.  0.  1.]
 [ 0. -0. -1.  0.]]
相关推荐
默_笙4 天前
🍙 给每个请求过安检:FastAPI 是怎么把校验写进类型注解的
python
qq_426003964 天前
启动playwright录制codegen生成自动化测试脚本
python·自动化
虎头金猫4 天前
4K 视频总卡在公网带宽?用 N1 + OpenList 把网盘播放链路重新理顺
运维·服务器·网络·python·容器·beautifulsoup·pandas
长沙三为智能科技4 天前
家政小程序开发从0到上线:五阶段交付流程与验收清单
python
伞伞悦读4 天前
【第38期】Python 模块与包详解:import、from、模块搜索路径、包结构和 __init__
开发语言·python
只睡四小时4 天前
Canvas 弹道联机实战:700 行 + 固定时间步长
python·websocket·html5·游戏开发·canvas
奇思妙想聪明勤奋的小羊4 天前
DeepAgents第5章:子Agent 与上下文隔离—让 Agent学会委派
人工智能·python·学习·语言模型
lpfasd1234 天前
2026年第38周GitHub趋势周报
python·科技·github
IZero074 天前
Jev 与 Laya
python·语言模型