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
For instance, the following defines a polarization with
>>> 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 |
|
---|---|---|
|
||
|
||
|
||
|
||
|
||
|
>>> 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.