qiu_classical_simulation.wave_optics.analysis
¶
Quantities to analyze a lens experiment with, e.g. its beam waist along the way.
Functions:
-
beam_waist–Return the beam waist of a field, twice the standard deviation of its intensity.
-
principal_plane_position–Return the depth of the principal plane of the lens, from where the beam enters.
-
propagation_distances–Return the propagation distances of the snapshots after each slice and step.
-
thin_lens_reference_states–Return the thin lens profiles at the distances of
propagation_distances. -
lens_surface–Return the depth of the convex lens surface at each transverse position.
beam_waist
¶
Return the beam waist of a field, twice the standard deviation of its intensity.
This is the waist radius of a Gaussian beam exp(-x**2 / w**2).
Source code in packages/qiu-classical-simulation/src/qiu_classical_simulation/wave_optics/analysis.py
10 11 12 13 14 15 16 17 18 19 | |
principal_plane_position
¶
principal_plane_position(parameters: ExperimentParameters) -> float
Return the depth of the principal plane of the lens, from where the beam enters.
It is at the vertex of the convex surface, which is the exit for the reverse order;
for the forward order, it lies at t - t / n for the thickness t.
Source code in packages/qiu-classical-simulation/src/qiu_classical_simulation/wave_optics/analysis.py
22 23 24 25 26 27 28 29 30 31 32 | |
propagation_distances
¶
propagation_distances(parameters: ExperimentParameters) -> list[float]
Return the propagation distances of the snapshots after each slice and step.
Source code in packages/qiu-classical-simulation/src/qiu_classical_simulation/wave_optics/analysis.py
35 36 37 38 39 40 41 42 | |
thin_lens_reference_states
¶
thin_lens_reference_states(parameters: ExperimentParameters) -> list[NDArray[float64]]
Return the thin lens profiles at the distances of propagation_distances.
The ideal thin lens sits at the principal plane of the lens.
Source code in packages/qiu-classical-simulation/src/qiu_classical_simulation/wave_optics/analysis.py
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | |
lens_surface
¶
lens_surface(parameters: ExperimentParameters) -> NDArray[float64]
Return the depth of the convex lens surface at each transverse position.
The depth is measured from where the beam enters, as in propagation_distances.
Source code in packages/qiu-classical-simulation/src/qiu_classical_simulation/wave_optics/analysis.py
63 64 65 66 67 68 69 70 71 72 73 74 75 | |