Optical Phase Conjugation
Contents
13. Optical Phase Conjugation#
Name:
Total Points: –/100 pts
### UNCOMMENT AND RUN THIS CELL IF USING GOOGLE COLAB
# !pip install ipympl -q
# from google.colab import output
# output.enable_custom_widget_manager()
13.1. Description of Optical Phase Conjugation#
We have already seen from our study of stimulated Brillouin scattering that nonlinear processes can produce backwards waves. Optical phase conjugation refers to cases in which those backwards wave are exact time-reversals of the original forward waves. This is very different from a regular mirror. For example, a beam that is focused just before a regular mirror would continue to expand after reflection, just travelling in the reverse direction. A beam hitting a phase-conjugate mirror would re-focus back through the focal point. How is this different from a parbolic mirror? Well, in a parabolic mirror light doesn’t retrace it’s exact path, but instead bounces off the mirror twice in such a way that it’s reflected path goes back through the focus, but through a different path. This is why the image is inverted. In contrast, light hitting a phase-conjugate mirror does an exact 180\(^\circ\) turn as soon as it hits the mirror. This way, the light beam’s phase reverses at the reflection point and it traverses the same trajectory backwards. For this reason, a phase-conjugate mirror is very useful in laser engineering, since any distortions accumulated by a forward propagating beam can be undone by travelling backward through the same abberations.
Let’s now describe the process mathematically. Consider a forward propagating beam of the form
All the spatial dependence is contained in \(E_1(\mathbf{r}) = \tilde{E_1}(\mathbf{r})\exp(jk_1z)\). There are four-wave mixing processes described below that produce a backward propgating beam, the conjugate wave, that are identical to \(E_1(\mathbf{r}, t)\) except that \(E_1(\mathbf{r})\) is replaced by its complex conjugate \(E_1^*(\mathbf{r})\). This results in a conjugate wave \(\mathbf{E}_c\) of the form:
Mathematically, we could have made the exact same change by replacing \(t\) with \(-t\). Hence we can write
For this reason some people call phase conjugate waves time-reversed waves.
13.2. Phase Conjugation by 4-wave mixing#
Consider the three propagating waves \(E_1, E_2\), and \(E_3\) with the same frequency \(\omega\) that combine via a third-order nonlinearity to produce a fourth wave.
We would like to have two conditions fulfilled:
The fourth wave propagates in the opposite direction of \(E_1\). This means that waves \(E_2\) and \(E_3\) will be counterpropagating relative to each other (why? think about phase matching and conservation of momentum).
The fourth wave will be the same frequency as the \(E_1\). By energy conservation, this means that our energy level diagram will involve absorbing two photons at \(\omega\), and then emitting two photons at \(\omega\), one by stimulated emission and one by spontaneous emission.
We could use sympy to search for a combination that makes this work:
from sympy import *
E1, E2, E3 = symbols('E_1, E_2, E_3')
E_cubed = (E1 + E2 + E3 + conjugate(E1) + conjugate(E2) + conjugate(E3))**3
E_cubed.expand()
But that’s a lot of terms to search through. A little intuition tells us that it must be the term \(6E_2E_3E_1^*\). This is the only one that fulfulls our requirements. The k-vectors \(k_2\) and \(k_3\) are opposites, so the product \(E_2 E_3\) cancels them out. This leaves only the k-vector from \(E_1^*\), which points opposite to the incident wave \(E_1\) just like we wanted. Also, the product \(E_2E_3E_1^*\) oscillates at frequency \(\omega\), just like we wanted.
We can therefore write the nonlinear polarization that will be the antenna for our fourth wave as
A picture can help us get a better understanding of how optical phase conjugation works.
On the left is the geometric representation of the three incident waves used to produce a fourth beam that is phase-conjugated from the first. \(k_2\) and \(k_3\) must be equal and opposite to ensure phase matching. On the right is the energy picture, showing photons from fields 2 and 3 being absorbed, while photons from fields 1 and 4 are emitted. This also clearly shows that the energy for the conjugate wave is coming from waves 2 and 3, while wave 1 simply stimulates emission of a photon with the correct energy and wavevector.
13.3. Real-Time Holography–phase conjugation by another name#
The process of optical phase conjugation turns out to be identical with holography. Let’s re-describe the process using hologrophy terms. Suppose we have an image carred in some field \(E_1\) whose amplitude and phase we would like to store in a material for later retrieval. To store the image, we shine a reference beam \(E_2\) on a holographic plate at the same time as the image. The fields \(E_2\) and \(E_3\) interfere to write a grating on the holographic plate, which encodes the amplitude and phase of the interference pattern. At some later time, we illuminate the grating with \(E_3\), which is just a copy of the reference beam pointing in the opposite direction. The field \(E_3\) scatters from the grating to produce the original image, but in the opposite direction.
The difference with optical phase-conjugation, of course, is that the grating is written in real time, nearly instaneously in fact. The form of the grating is in fact just a polarization wave (electrons separated from their nuclei) that results from fields \(E_2\) and \(E_3\).
It turns out that the same real-time holography process can also be achieved by setting up an acoustic wave grating that the stores the phase and amplitude of two interfering beams. In fact, this is exactly what happens in stimulated Brillouin Scattering! The backward propogating wave is a phase conjugate wave. However, there is a small caveat, since the stokes wave is shifted in frequency relative to the incident beam. That means that it’s not exactly the same and abberations will only be corrected for a limited path length. Since the incident frequency and the conjugate wave frequency differ by about 1 part in 20,000, for a laser with a wavelenght of 1 \(\mu\)m, no serious mismatch will occur for approximately 20 mm.
13.4. Exercises#
(100 pts) Several applications of optical phase conjugation exist, including image distortion correction, optical lithography, and optical computing using real-time holography. Write a paragraph about one application and include a link to a paper. Make a quantitative statment about the limitations of using optical phase conjugation for this application (e.g. is the limitation they mention theoretical, experimental, or introduces additional complexities? Can you use numbers to explain the limitations?).