In a previous tutorial, I explained how to calculate the modes of a bent multimode fibers. I introduced two methods, following the approach published in [M. Plöschner, T. Tyc, and T. Čižmár, Nat. Photon. (2015)]. In this short tutorial, I show how to use pyMMF to simulate bent fibers and compare the two different methods. A Jupyter notebook can be found on my Github account: compare_bending_methods.ipynb.
In the tutorial Numerical Estimation of Multimode Fiber Modes and Propagation Constants: Bent Fibers, I show that in order to find the propagation mode of a multimode fiber exhibiting bending we need to introduce the geometrical effect of bending as well as the compression effect. It can be done in two ways:
We solve the system with a given curvature state. Note that curvature can be set for both directions, e.g. curvature = [2e4,5e4] (in microns).
modes_bent = solver.solve(nmodesMax=Nmodes,boundary = 'close',
mode = 'eig', curvature = curvature,
propag_only=False)
modes_bent.sort()
betas_bent = modes_bent.betas
profiles_bent = modes_bent.getModeMatrix()
While this method allows faster computation when trying to solve the same system for multiple configurations, it is important to keep in mind that
First, we calculate the modes of the straight fiber:
modes_straight = solver.solve(nmodesMax=Nmodes_estim+20,boundary = 'close',
mode = 'eig', curvature = None,
propag_only=False)
Nmodes = sum(modes_straight.propag)
# Compute for the bent fiber the same number of modes as for the straight one
modes_straight.sort()
Note the propag_only=False that ensures that the solver returns all the modes calculated, i.e. the Nmodes_estim+20 modes that have the lowest real part of the propagation constant. This means that it returns also some non-propagating modes. These modes are sensitive to the boundary conditions of the system, hence they are a potential source of error.
We now find the new modes:
betas_bent2,profiles_bent2 = modes_straight.getCurvedModes(npola = 1,
curvature=curvature)
We finally only keep the propagating modes.
betas_bent2,profiles_bent2 = betas_bent2[:Nmodes],profiles_bent2[:,:Nmodes]
We compare here the results of both methods for the shape of the modes (Fig. 1) and the propagation constants (Fig. 2).
Figure 1. Comparison of the second mode profile calculated using both methods.
Figure 2. Comparison of the propagation constants calculated using both methods.
The full code is available as a Jupyter notebook on my Github account: compare_bending_methods.ipynb