jones#
Jones Module
The jones module contains classes for Jones matrices in optics. The module defines the base class BaseJones, which is an abstract class that defines the interface for Jones matrices. The module also contains classes for specific Jones matrices, such as JonesFresnel, JonesPolarizerH, JonesPolarizerV, JonesPolarizerL45, JonesPolarizerL135, JonesPolarizerRCP, JonesPolarizerLCP, JonesLinearDiattenuator, JonesLinearRetarder, JonesQuarterWaveRetarder, and JonesHalfWaveRetarder.
Kramer Harrison, 2024
Classes
Base class for Jones matrices. |
|
|
Base class for constant Jones matrices in the local ray frame. |
|
Class representing the Jones matrix for Fresnel calculations. |
|
Represents a half-wave retarder in Jones calculus. |
|
Represents a linear diattenuator in Jones calculus. |
|
Class representing a general linear polarizer in 3D space. |
|
Represents a linear retarder in Jones calculus. |
Class representing the Jones matrix for a horizontal polarizer. |
|
Class representing the Jones matrix for a linear polarizer at 135 degrees. |
|
Class representing the Jones matrix for a linear polarizer at 45 degrees. |
|
Class representing the Jones matrix for a left circular polarizer. |
|
Class representing the Jones matrix for a right circular polarizer. |
|
Class representing the Jones matrix for a vertical polarizer. |
|
|
Represents a quarter-wave retarder in Jones calculus. |
- class BaseJones[source]#
Base class for Jones matrices.
The class defines Jones matrices given ray properties. In the general case, the Jones matrix is an Nx3x3 array, where N is the number of rays. The array is padded to make it 3x3 to account for 3D ray calculations.
- class ConstantJones(j00: complex, j01: complex, j10: complex, j11: complex)[source]#
Base class for constant Jones matrices in the local ray frame.
- Parameters:
- class JonesFresnel(material_pre, material_post)[source]#
Class representing the Jones matrix for Fresnel calculations.
- Parameters:
- class JonesHalfWaveRetarder(axis=None, *, theta=None)[source]#
Represents a half-wave retarder in Jones calculus.
- class JonesLinearDiattenuator(t_min, t_max, axis=None, *, theta=None)[source]#
Represents a linear diattenuator in Jones calculus.
- Variables:
t_min (be.ndarray) – Minimum amplitude transmission coefficient.
t_max (be.ndarray) – Maximum amplitude transmission coefficient.
axis (be.ndarray) – A 3D vector representing the fast transmission axis.
Note
The intensity transmission is given by the square of the amplitude coefficients.
- class JonesLinearPolarizer(axis)[source]#
Class representing a general linear polarizer in 3D space.
- Parameters:
axis (tuple | list | be.ndarray) – A 3D vector representing the transmission axis in global coordinates (e.g., [1, 0, 0] for horizontal).
- class JonesLinearRetarder(retardance, axis=None, *, theta=None)[source]#
Represents a linear retarder in Jones calculus.
- Variables:
retardance (be.ndarray) – Retardance of the retarder, or the absolute value of the phase difference between the two components of the electric field, in radians.
axis (be.ndarray) – A 3D vector representing the fast transmission axis.
- class JonesPolarizerH[source]#
Class representing the Jones matrix for a horizontal polarizer.
- class JonesPolarizerL135[source]#
Class representing the Jones matrix for a linear polarizer at 135 degrees.
- class JonesPolarizerL45[source]#
Class representing the Jones matrix for a linear polarizer at 45 degrees.
- class JonesPolarizerRCP[source]#
Class representing the Jones matrix for a right circular polarizer.