偏光素子(ジョーンズ行列)<!-- --> | <!-- -->magmagchi<!-- -->
magmagchi

偏光素子(ジョーンズ行列)

July 09, 2022

偏光子や波長板による偏光状態の変更はジョーンズ行列JJによって一般に、

(ExEy)=J(ExEy)\begin{aligned} \begin{pmatrix} E_x^{'} \\ E_y^{'} \\ \end{pmatrix} =J \begin{pmatrix} E_x \\ E_y \\ \end{pmatrix} \end{aligned}

と表せます。

回転行列

最初に回転行列だけ定義しておきます。x,yx,y軸上の点をθ\theta回転させるには、回転行列RRを用いて、

(xy)=R(θ)(xy)=(cosθsinθsinθcosθ)(xy)\begin{aligned} \begin{pmatrix} x^{'} \\ y^{'} \\ \end{pmatrix} &=R(\theta) \begin{pmatrix} x \\ y \\ \end{pmatrix} \\ &= \begin{pmatrix} \cos \theta & -\sin \theta \\ \sin \theta & \cos \theta \\ \end{pmatrix} \begin{pmatrix} x \\ y \\ \end{pmatrix} \end{aligned}

と表せます。よって電場も同じく、

(ExEy)=(cosθsinθsinθcosθ)(ExEy)\begin{aligned} \begin{pmatrix} E_x^{'} \\ E_y^{'} \\ \end{pmatrix} = \begin{pmatrix} \cos \theta & -\sin \theta \\ \sin \theta & \cos \theta \\ \end{pmatrix} \begin{pmatrix} E_x \\ E_y \\ \end{pmatrix} \end{aligned}

となります。

偏光子、検光子

偏光子を通る光は透過軸に沿った直線変更になるため、透過軸が、xx軸のみ透過させる行列

T=(1000)\begin{aligned} T= \begin{pmatrix} 1 & 0 \\ 0 & 0 \\ \end{pmatrix} \end{aligned}

を用いて、

E=R(θ)TR(θ)1E(ExEy)=(cosθsinθsinθcosθ)(1000)(cosθsinθsinθcosθ)(ExEy)=(cos2θsinθcosθsinθcosθsin2θ)(ExEy)=(cos2θ12sin(2θ)12sin(2θ)sin2θ)(ExEy)\begin{aligned} E^{'}&=R(\theta)TR(\theta)^{-1}E \\ \begin{pmatrix} E_x^{'} \\ E_y^{'} \\ \end{pmatrix} &= \begin{pmatrix} \cos \theta & -\sin \theta \\ \sin \theta & \cos \theta \\ \end{pmatrix} \begin{pmatrix} 1 & 0 \\ 0 & 0 \\ \end{pmatrix} \begin{pmatrix} \cos \theta & \sin \theta \\ -\sin \theta & \cos \theta \\ \end{pmatrix} \begin{pmatrix} E_x \\ E_y \\ \end{pmatrix} \\ &= \begin{pmatrix} \cos^2 \theta & \sin \theta \cos \theta \\ \sin \theta \cos \theta & \sin^2 \theta \\ \end{pmatrix} \begin{pmatrix} E_x \\ E_y \\ \end{pmatrix} \\ &= \begin{pmatrix} \cos^2 \theta & \dfrac{1}{2} \sin (2\theta) \\ \dfrac{1}{2} \sin (2\theta) & \sin^2 \theta \\ \end{pmatrix} \begin{pmatrix} E_x \\ E_y \\ \end{pmatrix} \end{aligned}

と表すことが出来ます。R(θ)1R(\theta)^{-1}R(θ)R(\theta)の逆回転です。よってxx軸から右回りにθ\theta回転した偏光子のジョーンズ行列TθT_\theta

Tθ=(cos2θ12sin(2θ)12sin(2θ)sin2θ)\begin{aligned} T_\theta= \begin{pmatrix} \cos^2 \theta & \dfrac{1}{2} \sin (2\theta) \\ \dfrac{1}{2} \sin (2\theta) & \sin^2 \theta \\ \end{pmatrix} \end{aligned}

となります。 Pythonで実装してみます。x軸方向に偏向面をもつ電場を用意して、検光子の角度を変えて、通り抜けてきた光の強度をプロットしてみます。

E_in = np.array([1, 0]).reshape([-1,1]) * np.exp(1.0j) # 電場の列ベクトル

theta = np.linspace(-np.pi, np.pi, 100) # 検光子の角度

T_theta = np.array([[np.cos(theta)**2, np.sin(2*theta)/2],
                    [np.sin(2*theta)/2, np.sin(theta)**2]]) # 検光子のジョーンズ行列

E_out = []
for i in range(len(theta)):
    E_out.append(T_theta[:,:,i] @ E_in) # 各角度ごとにジョーンズ行列をE_inに作用

E_out = np.array(E_out)
I = np.abs(E_out[:, 0, 0]) **2 + np.abs(E_out[:, 1, 0])**2 # 電場から光強度へ

# プロット
plt.plot(theta, I)
plt.xticks(np.arange(-np.pi, np.pi+0.1, np.pi/2), [r"$-\pi$", r"$-\pi/2$", "0", r"$\pi/2$", r"$\pi$"])
plt.xlabel("$\\theta$")
plt.ylabel("Intensity")
plt.show()
test

θ=0\theta=0で最大となり、偏向面と直角になるθ=π/2\theta=\pi/2で光強度が0となることがわかります。

波長板

xx軸にfast軸をもつ波長板に置いて、位相をδ\deltaだけ進める行列MM

M=(eiδ200eiδ2)\begin{aligned} M= \begin{pmatrix} e^{i\dfrac{\delta}{2}} & 0 \\ 0 & e^{-i\dfrac{\delta}{2}} \\ \end{pmatrix} \end{aligned}

として表せます。この波長板がxx軸からθ\thetaだけ傾いて入れば、波長板を通過する電場は次のように表せます。

E=RMR1E(ExEy)=(cosθsinθsinθcosθ)(eiδ200eiδ2)(cosθsinθsinθcosθ)(ExEy)=(eiδ2cos2θ+eiδ2sin2θisin(2θ)sin(δ2)isin(2θ)sin(δ2)eiδ2sin2θ+eiδ2cos2θ)(ExEy)\begin{aligned} E^{'} &= RMR^{-1}E \\ \begin{pmatrix} E_x^{'} \\ E_y^{'} \\ \end{pmatrix} &= \begin{pmatrix} \cos \theta & -\sin \theta \\ \sin \theta & \cos \theta \\ \end{pmatrix} \begin{pmatrix} e^{i\dfrac{\delta}{2}} & 0 \\ 0 & e^{-i\dfrac{\delta}{2}} \\ \end{pmatrix} \begin{pmatrix} \cos \theta & \sin \theta \\ -\sin \theta & \cos \theta \\ \end{pmatrix} \begin{pmatrix} E_x \\ E_y \\ \end{pmatrix} \\ &= \begin{pmatrix} e^{i\dfrac{\delta}{2}}\cos^2 \theta + e^{-i\dfrac{\delta}{2}}\sin^2 \theta & i\sin(2\theta) \sin\left( \dfrac{\delta}{2}\right) \\ i\sin(2\theta)\sin\left( \dfrac{\delta}{2}\right) & e^{i\dfrac{\delta}{2}}\sin^2 \theta + e^{-i\dfrac{\delta}{2}}\cos^2 \theta \\ \end{pmatrix} \begin{pmatrix} E_x \\ E_y \\ \end{pmatrix} \end{aligned}

よってfast軸がxx軸から右回りにθ\theta傾いて、fast軸をδ\deltaだけ早める波長板のジョーンズ行列は

Mθ,δ=(eiδ2cos2θ+eiδ2sin2θisin(2θ)sin(δ2)isin(2θ)sin(δ2)eiδ2sin2θ+eiδ2cos2θ)M_{\theta, \delta} = \begin{pmatrix} e^{i\dfrac{\delta}{2}}\cos^2 \theta + e^{-i\dfrac{\delta}{2}}\sin^2 \theta & i\sin(2\theta) \sin\left( \dfrac{\delta}{2}\right) \\ i\sin(2\theta) \sin\left( \dfrac{\delta}{2}\right) & e^{i\dfrac{\delta}{2}}\sin^2 \theta + e^{-i\dfrac{\delta}{2}}\cos^2 \theta \\ \end{pmatrix}

となります。

参考 第 3 章 Jones 法による偏光状態の変換の記述