Shift and phase change from tilted beamsplitters – part 2: finesse examples

Introduction

This is the second post discussing the shift and phase dependence of a beam going through a z-shaped telescope setup when both beamsplitters are tilted over a small angle β.

The first post (part 1: theory) derived both the shift in the position of the beam and the change in phase at the detector as a function of tilt angle and telescope size. This post will focus on giving example kat files and outputs from pykat + finesse 2 to verify the theoretical calculations (for the full notebook see zbeam_shift_and_phase_20210303-final.ipynb).

Additionally we also discuss convergence of the simulations as a function of maxtem, and the optimal positions of the beam waist z0 and the distance s between the two beamsplitters (for this part the notebook is zbeam_shift_phase_convergence_20210304-final.ipynb).

The two main results found in part 1 are the shift given by

\Delta = s \cdot \sin 2\beta \qquad (1)

and the phase change δφ satisfying

\delta \varphi = \frac{2 s \cdot \sin^2 \beta}{\lambda} \cdot 360\degree \qquad (2)

Finesse simulations

Basic experimental setup

Our experimental setup sketched above can be described by the following basic kat script.

# experimental setup:
l laser 1.5 0 n0                        # laser (Power = 1 W, wavelength offset = 0)
gauss g1 laser n0 10mm -1200            # set waist of 10mm 1.2km right of laser
maxtem 9

s s1 1000 n0 nb11                       # space of 1km till first beam splitter
bs bs1 1 0 0 30 nb11 nb12 nb13 nb14     # beam splitter 1 (R = 1.0, T = 0.0, phi = 0°, alpha = 30°)
s s2 400 nb12 nb21                      # space between 2 beam splitters, 400 meter
bs bs2 1 0 0 30 nb21 nb22 nb23 nb24     # beam splitter 2 (R = 1.0, T = 0.0, phi = 0°, alpha = 30°)

attr bs1 xbeta 1e-5                     # tilt both splitters over 1e-5 radians
attr bs2 xbeta 1e-5

it consists of:

  • a laser with power 1.5 Watt
  • two beamsplitters, bs1 and bs2:
    • the first 1 km right of the laser, the second 400 meters away from the first.
    • each having an angle of incidence (α) of 30°.
    • each tilted over a small angle (β) of 1e-5 radians.
  • a Gaussian beam with waist-size w0 10 mm, at a distance 1.2 km right of the laser, i.e. precisely in the middle between the two beamsplitters.
  • we do most calculations using maxtem 9 (i.e. n+m of the higher order modes is <= 9)
  • furthermore, the reference wavelength λ for finesse is 1064nm.

For these parameters eq. (1) gives the following value for

\frac{\Delta}{w_0} = \frac{400 \cdot \sin (2 \cdot 10^{-5})}{10^{-2}} \approx 0.8

while eq. (2) gives for δφ

\delta \varphi = \frac{2 \cdot 400 \cdot \sin^2 10^{-5}}{1.064 \cdot 10^{-6}} \cdot 360\degree \approx 27.1 \degree

First simulation: measure the beam shape after different distances

We will do two simulations, measuring the beam shape after 600 and 1000 meters respectively. For these simulations we add code like the following bit of katscript to the basic code above:

# Simulation setup
s s3 600 nb22 n1                        # distance from bs2 to detector, 600 meter
beam bd1 n1                             # measure beam shape after 600 meter

xaxis bd1 x lin 0.5 1 200               # vary x around the expected peak at 0.8 w0
yaxis abs

We see that the Gaussian bundle over distance becomes lower and wider, but remains its peak at the expected position x/w0 = 0.8, confirming we are simulating a parallel but shifted bundle.

Second simulation: phase shift

Now we turn to measure the phase shift of the outgoing beam resulting from the tilting of the beamsplitters. For this we use the following simulation script (again in addition to the basic experimental setup above):

# Simulation setup
s s3 600 nb22 n1             # measure at 600meter after 2nd bs (as 1st simulation)
beam bd1 0 n1                # use beam in amplitude/phase setup, use lowest mode
yaxis abs:deg                # output both amplitude and phase, only using phase for now

xaxis bd1 x lin 0 1.6 200    # vary x around the peak at 0.8 w0

i.e. we use a beam detector in amplitude/phase mode, measuring the phase along the beam cross section at a distance 600 meter after the second beamsplitter.

For reference, we have also run the same simulation for β=0. We expect the full result to be shifted over 0.8 w0 and to have a phase that is larger by about 27.1°.

The right plot shows the phase vs. x dependency for the untilted beam around the peak at 0. The left plot shows in red the measured phase as a function of x of the full simulation (at β=1e-5), combined with a translated plot of the untilted result (blue points). We see indeed that

\varphi_{\beta\ne0}(x+\Delta) = \varphi_{\beta=0}(x) + \delta \varphi

Third simulation: dependency phase shift on beta

In this simulation, we measure the phase shift at the front of the beam as a function of the tilt β, where we expect to see the sin2(β) behaviour from eq. (2). To test this we use the following simulation script (again in addition to the experimental setup above):

# Simulation setup
s s3 600 nb22 n1             # measure at 600meter after 2nd bs (as 1st simulation)
ad bd1 0 0 0 n1              # amplitude detector for mode n=m=0 at freq=0
yaxis abs:deg                # measure amplitude and phase

xaxis bs1 xbeta lin -1.5e-5 1.5e-5 40    # vary xbeta
put bs2 xbeta $x1

The measured phase vs. β dependency (red line) is plotted together with the theoretical curve (blue points) as following from eq. (2) using s = 400 and λ = 1.064 nm

We see that the phase shift indeed exactly follows eq. (2) above. For modes with n>0 we would see the same sin2(β) behaviour but with a constant offset depending on the mode number.

Fourth set of simulations: convergence as a function of maxtem

Now we will turn to investigate the effect of the number of higher order modes used in the simulation – i.e. maxtem – on the acceptable range of the tilt parameter β. Additionally we will also look into the effects of the waist position z0 and the distance s2 between the beamsplitters on this convergence. We will measure convergence using the total power in the beam. For larger and larger values of β we need to include more and more higher order modes in the mode-expansion of the beam for a correct description. Hence by including only a finite set of modes in our simulation, we will “loose” energy to modes that are not included, resulting in missing total energy in the simulated beam. Hence the total energy in the beam can be used to study the convergence.

Our first simulation will measure the total energy as a function of β for different values of maxtem. It will consist of the experimental setup katscript code above plus the following simulation part

# Simulation setup
maxtem {}                      # will be filled in the maxtem loop

s s3 600 nb22 n1               # measure at 600meter after 2nd bs (as 1st simulation)
pd pd1 n1                      # use photodiode to measure integrated power

xaxis bs1 xbeta lin 0 4e-5 40  # x-axis: vary xbeta of bs1 between 0 and 4·10^-5
put bs2 xbeta $x1              # use same xbeta for bs2

We run the simulation with different maxtem (3, 5, 7 and 9) at distance s3 = 600 meter behind the second beamsplitter. To verify consistency, we also run the simulation for the larger value of s3 of 1km (for just one maxtem = 7).

We see clearly that we can simulate larger and larger β if we include more and more higher order modes in the simulation, i.e. by increasing the maxtem value. Note however that we expect this to break down (requiring a very large number of modes) when going to angles (much) larger than the diffraction angle. Furthermore, we see that the convergence is not dependent on the distance behind the second beamsplitter at which we measure the total power in the bundle.

Further convergence simulations: effect z0 and s2

Since the total power versus maxtem gives a good indication of the range of validity of β, we can use this dependency to also investigate the convergence as a function of the position of the waist z0 of the Gaussian beam and as a function of the length of s2
First we will look at the z0 dependence. For this simulation we use the basic setup above, adding a simulation block similar to the one below

# Simulation setup
s s3 600 nb22 n1                        # measure at 600meter after 2nd bs (as 1st simulation)
pd pd1 n1                               # use photodiode to measure integrated power
yaxis abs

xaxis bs1 xbeta lin 0 4e-5 40           # x-axis: vary xbeta of bs1 between 0 and 4·10^-5
put bs2 xbeta $x1                       # use same xbeta for bs2

x2axis g_n0 zx lin 0 -2000 60           # pos. is distance left of laser, from 0 to 2000 right
put g_n0 zy $x2                         # use same waist for y and x

We run the simulation for two different ranges in z0: for a larger range, from the laser till the photodiode (left picture), and for a smaller range, around the two beam splitters (right picture, z0 varying from 600m right of the laser, i.e 400m left of bs1 till 1600m right of the laser, i.e. 200m right of bs2):

We see that the optimal location for the waist is at the first beamsplitter which is located 1km right of the laser. The distance of 1.2 km we used above – i.e. between the two beamsplitters – is almost as good.

Now that we have found the optimal waist location, we can also look for the effect of s2, the distance between the two beamsplitters, on the convergence. We use again the same basic setup, adding the following simulation part:

# Simulation setup
gauss g_n0 laser n0 10e-3 -1000   # fix waist at 1km right of laser, i.e. at beamsplitter1

s s3 600 nb22 n1                  # measure at 600meter after 2nd bs (as 1st simulation)
pd pd1 n1                         # use photodiode to measure integrated power
yaxis abs

xaxis bs1 xbeta lin 1e-5 4e-5 60  # x-axis: vary xbeta of bs1 between 0 and 4·10^-5
put bs2 xbeta $x1                 # use same xbeta for bs2

x2axis s2 L lin 0 1000 60         # vary s2 from 0 to 1km

We fix the Gaussian waist at the position of the first beamsplitter, which we found above to be the optimal place. We always measure the beam power 600 meter after the second beamsplitter. We then vary the distance between the two beamsplitters s2. In order to also see the dependence on the Rayleigh range, we do this for two different values of w0: 10mm (left plot) and 12mm (right plot).

Looking first at the left picture, we see that the usable range of β roughly remains constant till a distance of about 200-300 meter and then quickly decreases for larger distances. Also note that, although our value of 400 meter results in a considerably smaller valid range of β than what we find at for example half that distance, we see that the product s2 · sin2β (i.e. the maximum attainable relative shift /w0) does not change much between those two points and is actually slightly larger at the 400 meter distance.

The distance of 200-300 meter corresponds roughly to the Rayleigh range zR which for these parameters (w0 = 10mm, λ = 1.064 μm) is 295 meter:

z_R = \frac{\pi w_0^2}{\lambda}

At the same time the largest usable β at small distances (up to this 200-300 meter) depends on the diffraction angle Θ which for these parameters is 3.4·10^-5 radian (see Bond et al. eq. (9.19)):

\Theta = \arctan \left(\frac{w_0}{z_R}\right) \approx \frac{w_0}{z_R} = \frac{\lambda}{\pi w_0}

although in general the largest usable β increases as a function of maxtem. To verify that the Rayleigh range and diffraction angle are indeed setting the relevant scales, we now look at the right picture. In this simulation the beam waist size w0 is 1.2 times larger, which gives zR=425 meter and Θ=2.8·10^-5 radian. To compare with the left picture, we have scaled the vertical range (s2) with a factor 1.22 and the horizontal range (β) with a factor 1/1.2. This results in a visually very comparable picture, confirming that zR and Θ set the relevant scales and that up to about the Rayleigh range, the largest usable β is determined by the diffraction angle Θ (and happens to be very close to it at maxtem 7).
From eq. (1) it now follows that the largest attainable shift /w0 is actually independent of w0.
To summarize, we see that the best location for the first beamsplitter is at the waist of the Gaussian beam, with the second beamsplitter just beyond the Rayleigh range and a maximum tilt limited by roughly the diffraction angle.

Cross-references

Links to

Linked from

Leave a Reply