2.1. Mach-Zehnder interferometer

The Mach-Zehnder interferometer (MZI) we are going to design is composed of:

  1. One input fiber grating coupler

  2. One Y-branch splitter

  3. One broadband directional coupler

  4. Two output fiber grating couplers

  5. Two waveguide arms (left and right) connecting the two outputs of the splitter to the two inputs of the directional coupler

  6. Two waveguides connecting the two outputs of the directional coupler to the two output fiber grating couplers

Mach-Zehnder interferometer

IPKISS integrates the different aspects of photonic design into one framework, where you can define your component once as a parametric cell (PCell) and then use it throughout the whole design process, allowing to tightly link layout and simulations. Therefore, in order to easily create and manipulate the MZI that we need, we are going to create a PCell. This PCell inherits from i3.Circuit, a class that makes it is easy to place and connect components together to achieve the final circuit.

2.1.1. PCell Properties

The first step is to define the PCell properties, which will be used to design the MZI. One aspect to pay attention to is the right arm of the MZI. Depending on the length of this arm, the result of the MZI simulation will change. Therefore, we need to be able to control the shape of this arm when we instantiate the MZI PCell, without touching the code inside the PCell itself.

The PCell has the following accessible properties:

  • control_point: This is a coordinate (control point) through which the right (longest) arm of the MZI has to pass. This allows us to control the shape of the right arm when we instantiate the MZI.

  • bend_radius: Here, we assign the value of the bend radius used for the waveguide routes.

  • fgc: The PCell of the fiber grating coupler to be used. The default value is EBeamGCTE1550 from the Luceda PDK for SiEPIC.

  • splitter: The PCell of the splitter to be used. The default value is EBeamY1550 from the Luceda PDK for SiEPIC.

  • dir_coupler: The PCell of the directional coupler to be used. The default value is EBeamBDCTE1550 from the Luceda PDK for SiEPIC.

Below is the code that defines the PCell properties.

luceda-academy/training/topical_training/siepic_mzi_dc_sweep/mzi_pcell.py
class MZI(i3.Circuit):
    control_point = i3.Coord2Property(doc="Point that the longer arm of the MZI has to go through")
    bend_radius = i3.PositiveNumberProperty(default=5.0, doc="Bend radius of the waveguides")

    fgc = i3.ChildCellProperty(doc="PCell for the fiber grating coupler")
    splitter = i3.ChildCellProperty(doc="PCell for the Y-Branch")
    dir_coupler = i3.ChildCellProperty(doc="PCell for the directional coupler")

    def _default_control_point(self):
        return [(100.0, 220.0)]

    def _default_fgc(self):
        return pdk.EbeamGCTE1550()

    def _default_splitter(self):
        return pdk.EbeamY1550()

    def _default_dir_coupler(self):
        return pdk.EbeamBDCTE1550()

2.1.2. Cells, placement and connections

The next step is to define a list of cells that will be instantiated. We need three fiber grating couplers, one splitter and one directional coupler.

luceda-academy/training/topical_training/siepic_mzi_dc_sweep/mzi_pcell.py
    def _default_insts(self):
        insts = {
            "fgc_1": self.fgc,
            "fgc_2": self.fgc,
            "fgc_3": self.fgc,
            "yb": self.splitter,
            "dc": self.dir_coupler,
        }
        return insts

We place the input port of the bottom fiber grating coupler at the origin (0.0, 0.0). We then create an array of fiber grating couplers by placing the second grating coupler 127 um above the first, and the third 127 um above the second. Finally, we place the directional coupler relative to the output ports of the Y-branch splitter and rotate it 90 degrees.

luceda-academy/training/topical_training/siepic_mzi_dc_sweep/mzi_pcell.py
    def _default_specs(self):
        fgc_spacing_y = 127.0
        specs = [
            i3.Place("fgc_1:opt1", (0, 0)),
            i3.PlaceRelative("fgc_2:opt1", "fgc_1:opt1", (0.0, fgc_spacing_y)),
            i3.PlaceRelative("fgc_3:opt1", "fgc_2:opt1", (0.0, fgc_spacing_y)),
            i3.PlaceRelative("dc:opt1", "yb:opt2", (20.0, -40.0), angle=90),
            i3.Join("fgc_3:opt1", "yb:opt1"),
        ]

        specs += [
            i3.ConnectManhattan(
                [
                    ("yb:opt3", "dc:opt2", "yb_opt3_to_dc_opt2"),
                    ("dc:opt4", "fgc_2:opt1", "dc_opt4_to_fgc_2_opt1"),
                    ("dc:opt3", "fgc_1:opt1", "dc_opt3_to_fgc_1_opt1"),
                ]
            ),
            i3.ConnectManhattan("yb:opt2", "dc:opt1", "yb_opt2_to_dc_opt1", control_points=[self.control_point]),
        ]
        return specs

The connections between the instances are defined differently depending on whether we connect them end-to-end or use a waveguide connector:

  • For end-to-end connections, we use i3.Join. Here, we use this for the connection between the input fiber grating coupler and the splitter:

  • To connect components using waveguide connectors, we use connectors (i3.Connector). Here, we specify the type of connector used between the desired ports together with other useful information, such as the bend radius of the waveguides.

Components that are placed end-to-end using i3.Join are automatically placed by IPKISS to ensure that the connection requirement is satisfied. In the case of connections defined using connectors, this is not the case. IPKISS only knows that these two components have to be connected and the waveguide connector will be generated depending on their position, which we need to specify ourselves.

The connections between the splitter (“yb:opt2”) and the directional coupler (“dc:opt1”) are performed using a Manhattan-type waveguide connector (i3.ConnectManhattan). The right arm of the MZI (second connection) is forced to pass through the control point specified with the control_points coordinate when instantiating the PCell.

2.1.3. Exposed ports

Our circuit is almost finished. All we need to do now is to define the names of the external ports we want to access. We will use these port names to plot the transmission when we perform the circuit simulation.

luceda-academy/training/topical_training/siepic_mzi_dc_sweep/mzi_pcell.py
    def _default_exposed_ports(self):
        exposed_ports = {
            "fgc_3:fib1": "in",
            "fgc_2:fib1": "out1",
            "fgc_1:fib1": "out2",
        }
        return exposed_ports

2.1.4. Run the code

Open luceda-academy/training/topical_training/siepic_mzi_dc_sweep/mzi_pcell.py. At the bottom of the file, the MZI is instantiated and simulated:

luceda-academy/training/topical_training/siepic_mzi_dc_sweep/mzi_pcell.py
    # Layout
    mzi = MZI(
        name="MZI",
        control_point=(100.0, 240.0),
        bend_radius=5.0,
    )
    mzi_layout = mzi.Layout()
    mzi_layout.visualize(annotate=True)
    mzi_layout.visualize_2d()
    mzi_layout.write_gdsii("mzi.gds")

    # Circuit model
    my_circuit_cm = mzi.CircuitModel()
    wavelengths = np.linspace(1.52, 1.58, 4001)
    S_total = my_circuit_cm.get_smatrix(wavelengths=wavelengths)

    # Plotting
    plt.plot(wavelengths, i3.signal_power_dB(S_total["out1:0", "in:0"]), "-", linewidth=2.2, label="TE-out1")
    plt.plot(wavelengths, i3.signal_power_dB(S_total["out2:0", "in:0"]), "-", linewidth=2.2, label="TE-out2")
    plt.xlabel("Wavelength [um]", fontsize=16)
    plt.ylabel("Transmission [dB]", fontsize=16)
    plt.legend(fontsize=14, loc=4)
    plt.show()

If you run the code, you will visualize the layout and the simulation of an MZI circuit for control_point=[(100.0, 240.0)] and bend_radius=5.0.

Mach-Zehnder interferometer
Mach-Zehnder interferometer

2.1.5. Test your knowledge

Try to change the coordinates of the control point and the bend radius to see how the simulation changes. What happens when the delay arm becomes longer? Why?