Polarization

Polarization encoding is stored in Basic State objects as a special P Annotation.

Their value follows Jones calculus. Annotations values are represented by two angles (θ,ϕ).

The representation of the polarization in (EhEv) basis is obtained by applying Jones conversion: J=(cosθ2eiϕsinθ2). The same can also be noted: cosθ2|H+eiϕsinθ2|V.

For instance, the following defines a polarization with θ=π2,ϕ=π4 corresponding to Jones vector: (cosπ4eiπ4sinπ4)

>>> p = pcvl.Polarization(sp.pi/2, sp.pi/4)
>>> p.project_ev_eh()
(sqrt(2)/2, sqrt(2)*exp(I*pi/4)/2)

It is also possible to use H, V, D, A, L and R as shortcuts to predefined values:

Code

(ϕ,θ)

Jones vector

H

(0,0)

(10)

V

(π,0)

(01)

D

(π2,0)

12(11)

A

(π2,π)

12(11)

L

(π2,π2)

12(1i)

R

(π2,3π2)

12(1i)

>>> p = pcvl.Polarization("D")
>>> p.theta_phi
(pi/2, 0)
>>> p.project_ev_eh())
(sqrt(2)/2, sqrt(2)/2)

Defining states with polarization is then simply to use the Annotation P:

>>> st2 = pcvl.BasicState("|{P:H},{P:V}>")
>>> st2 = pcvl.BasicState("|{P:(sp.pi/2,sp.pi/3)>")

If polarization is used for any photon in the state, the state is considered as using polarization:

>>> pcvl.BasicState("|{P:H},0,{P:V}>").has_polarization
True
>>> pcvl.BasicState("|{P:V},0,1>").has_polarization
True
>>> pcvl.BasicState("|1,0,1>").has_polarization
False

Note

To simplify the notation:

  • linear polarization can be defined with a single parameter: {P:sp.pi/2} is equivalent to {P:(sp.pi/2,0}

  • if the polarization annotation is omitted for some photons, these photons will be considered as having a horizontal polarization.

See Polarization Object code documentation.