In this piece of code we created two fibers. A multi-mode fiber with a large core and a single-mode fiber with a small core. Next to the core radius the numerical aperture is also necessary to fully specify the step-index fiber. Finally the length of the fiber is also needed for the propagation. The StepIndexFiber class will calculate the modes on the fly when they are needed, so it is not necessary to initialize it with a wavelength or a grid.

Single modefiber coupling

Because the multi-mode fiber contains many modes with different propagation constants there is a strong wavelength dependence of the fiber output. This is due to the beating pattern of different modes.

Fiberto-fibercoupling

Here \(\phi\left(\vec{r}\right)\) is the field distribution and \(\beta\) is the propagation constant. Due to linearity of the Maxwell equations we can use the principle of linear superposition when we have a mixture of modes,

Usually fibers are small and have compact modes. To couple efficiently into such fibers we need to focus the light onto the fiber face. Therefore we start by making a pupil that we can propagate to a focus.

In high-contrast imaging we usually only consider the propagation of electric fields in homogenous media, such as air or lenses. In this tutorial we will show how to work with optical fibers, which propagate a different set of mode bases. We start by importing the required libraries and defining some unit constants.

Fiber couplingtypes

Break or crack a Mirrycle mirror without ruining the mounting hardware? This replacement mirror is just the ticket! Replacement Mirror Holder with Mirror. Fits on The Mountain, LTD, Original, and Road Mirrycle Mirrors.- Hardware not included

Multimodefiber coupling

The standard fiber is a step-index fiber. A step-index fiber has a small core of high-refractive index surrounded by a cladding of a lower index. This allows for light to be trapped inside the core. In the geometrics optics limit, where the fiber core is many times larger than the wavelength, the trapping inside the fiber happens due to total internal reflection. This is shown in the figure below for two different rays.

We will now create our grid on which we will evaluate the modes. The minimal diameter we need for the grid is 50 \(\mu\)m because the multi-mode fiber core radius is 25 \(\mu\)m. To sample all features of the modes we need to have sufficient resolution, which is roughly 2 pixels per wavelength. In this case we will use 128 pixels. With the focal plane setup we can setup the propagator too, we choose the focal length in such a way that we match the numerical aperture of the fiber.

In HCIPy the mode solver for guided modes and propagation constants for step-index fibers has been implemented. Now let’s look at some types of fibers.

Fiber couplingefficiency

Image

Fiber couplingthorlabs

In the limit of small cores geometric optics does not work anymore and one needs to consider solving the Maxwell Equations. Due to the invariance of the fiber structure in the propagation direction we can solve the fiber propagation in terms of guided modes. This guided modes will propagate like plane waves but with a different field shape,

The size of the fiber is shown by the white circle. We can see here that the output of both fibers is different. Because the multi-mode fiber supports more modes we can see a more complex output. This is also apparent in the throughput, the multi-mode fiber has a higher throughput. The multi-mode fiber also has advantages when the source is moving due to vibration in your system. This is shown in the next section where the throughput as function of \(\lambda / D\) is calculated.

To propagate the light through the fiber is as easy as propagating through any of the other optical elements. You just call the forward method with the wavefront as parameter. In the code below we propagate a circular aperture to the focal plane and then propagate it through both the multi-mode and single-mode fiber.

Image