Component#

A Component is like an empty canvas, where you can add polygons, references to other Components and ports (to connect to other components)

In gdsfactory all dimensions are in microns

Polygons#

You can add polygons to different layers. By default all units in gdsfactory are in um.

import gdsfactory as gf

c = (
    gf.Component()
)  # Create a blank component (essentially an empty GDS cell with some special features)
p1 = c.add_polygon([(-8, -6), (6, 8), (7, 17), (9, 5)], layer=(1, 0))
c.write_gds("demo.gds")  # write it to a GDS file. You can open it in klayout.
c.show()  # show it in klayout
c.plot()  # plot it in jupyter notebook
2024-07-27 00:05:38.195 | WARNING  | kfactory.kcell:show:7885 - Could not connect to klive server
../_images/3d9a4c691515a41e50fb806a5c38521b209b04ecd39f9a3480c11495789b32fc.png

Exercise :

Make a component similar to the one above that has a second polygon in layer (2, 0)

c = gf.Component()

# Create some new geometry from the functions available in the geometry library
t = gf.components.text("Hello!")
r = gf.components.rectangle(size=(5, 10), layer=(2, 0))

# Add references to the new geometry to c, our blank component
text1 = c.add_ref(t)  # Add the text we created as a reference
# Using the << operator (identical to add_ref()), add the same geometry a second time
text2 = c << t
r = c << r  # Add the rectangle we created

# Now that the geometry has been added to "c", we can move everything around:
text1.dmovey(25)
text2.dmove([5, 30])
text2.drotate(45)
r.dmovex(-15)

print(c)
c.plot()
Unnamed_1: ports [], 3 instances
../_images/3234ee0caeb79444c11769264d49358dcec1fbf1c6eeec7f7aa664329e187250.png
c = gf.Component()
p1 = gf.kdb.DPolygon([(-8, -6), (6, 8), (7, 17), (9, 5)])  # DPolygons are in um
p2 = p1.sized(2)

c.add_polygon(p1, layer=(1, 0))
c.add_polygon(p2, layer=(2, 0))
c.plot()
../_images/aafcc62365d45e379074e4f30d43df8f2ab32a7974db9b7ba15bc6408a37a9e7.png

For operating boolean operations Klayout Regions are very useful.

Notice that Many Klayout objects are in Database Units (DBU) which usually is 1nm, therefore we need to convert a DPolygon (in um) to DBU.

c = gf.Component()
p1 = gf.kdb.DPolygon([(-8, -6), (6, 8), (7, 17), (9, 5)])
r1 = gf.kdb.Region(p1.to_itype(gf.kcl.dbu))  # convert from um to DBU
r2 = r1.sized(2000)  # in DBU
r3 = r2 - r1

c.add_polygon(r3, layer=(2, 0))
c.plot()
../_images/5147af0d33d885584d5a136ef93fc8ac70e24f0a66ee19d9e704956f0c5e71e3.png
c = gf.Component()
p1 = [(-8, -6), (6, 8), (7, 17), (9, 5)]
s1 = c.add_polygon(p1, layer=(1, 0))
r1 = gf.kdb.Region(s1.polygon)
r2 = r1.sized(2000)  # in DBU, 1 DBU = 1 nm, size it by 2000 nm = 2um
r3 = r2 - r1
c.add_polygon(r3, layer=(2, 0))
c.plot()
../_images/64f02e510c80adb679f453c84c01014896daa7897d240f281ba463fb8a5e3818.png

Connect ports#

Components can have a “Port” that allows you to connect ComponentReferences together like legos.

You can write a simple function to make a rectangular straight, assign ports to the ends, and then connect those rectangles together.

Notice that connect transform each reference but things won’t remain connected if you move any of the references afterwards.

def straight(length=10, width=1, layer=(1, 0)):
    c = gf.Component()
    c.add_polygon([(0, 0), (length, 0), (length, width), (0, width)], layer=layer)
    c.add_port(
        name="o1", center=[0, width / 2], width=width, orientation=180, layer=layer
    )
    c.add_port(
        name="o2", center=[length, width / 2], width=width, orientation=0, layer=layer
    )
    return c


c = gf.Component()

wg1 = c << straight(length=6, width=2.5, layer=(1, 0))
wg2 = c << straight(length=6, width=2.5, layer=(2, 0))
wg3 = c << straight(length=15, width=2.5, layer=(3, 0))
wg2.dmovey(10)
wg2.drotate(10)

wg3.dmovey(20)
wg3.drotate(15)

c.plot()
../_images/5f87229b7c1a603e0afdcc9ca434352cb623b893ea84293b1f17b9c1a844b768.png
wg2.dmovex(10)
Unnamed_9: ports ['o1', 'o2'], Unnamed_11: ports ['o1', 'o2'], 0 instances

Now we can connect everything together using the ports:

Each straight has two ports: ‘o1’ and ‘o2’, respectively on the East and West sides of the rectangular straight component. These are arbitrary names defined in our straight() function above

# Let's keep wg1 in place on the bottom, and connect the other straights to it.
# To do that, on wg2 we'll grab the "o1" port and connect it to the "o2" on wg1:
wg2.connect("o1", wg1.ports["o2"], allow_layer_mismatch=True)

# Next, on wg3 let's grab the "o1" port and connect it to the "o2" on wg2:
wg3.connect("o1", wg2.ports["o2"], allow_layer_mismatch=True)

c.plot()
../_images/82c9251279efddee32ad3de14cb307a9fd6ba60dd33df0eabcf76064960b13a6.png

Ports can be added by copying existing ports. In the example below, ports are added at the component-level on c from the existing ports of children wg1 and wg3 (i.e. eastmost and westmost ports)

c.add_port("o1", port=wg1.ports["o1"])
c.add_port("o2", port=wg3.ports["o2"])
c.plot()
../_images/82c9251279efddee32ad3de14cb307a9fd6ba60dd33df0eabcf76064960b13a6.png

You can show the ports by adding port pins with triangular shape or using the show_ports plugin

c.draw_ports()
c.plot()
../_images/ebae29c19cbe10857197b5827e1b8e36005e4e6c53e588bcf8e55757dc205bae.png

Also you can visualize ports in klayout as the ports are stored in the GDS cell metadata.

Move and rotate references#

You can move, rotate, and reflect references to Components.

There are two main types of movement:

  1. Using Integer DataBaseUnits (DBU) (default), in most foundries, 1 DBU = 1nm

  2. Using Decimals Floats. Where 1.0 represents 1.0um

c = gf.Component()

wg1 = c << straight(length=1, layer=(1, 0))
wg2 = c << straight(length=2, layer=(2, 0))
wg3 = c << straight(length=3, layer=(3, 0))

# Shift the second straight we created over by dx = 2, dy = 2 um. D stands for Decimal
wg2.dmove([2.0, 2.0])

# Then, move again the third straight by 3um
wg3.dmovex(3)  # equivalent to wg3.dmove(3)

c.plot()
../_images/46895bba00e3810d07d9a9990d7adc9baef57c6bdf29727d00617419344e1200.png

You can also define the positions relative to other references.

c = gf.Component()

wg1 = c << straight(length=1, layer=(1, 0))
wg2 = c << straight(length=2, layer=(2, 0))
wg3 = c << straight(length=3, layer=(3, 0))

# Shift the second straight we created over so that the xmin matches wg1.dxmax
wg2.dxmin = wg1.dxmax

# Then, leave a 1um gap with on the last straight
wg3.dxmin = wg2.dxmax + 1

c.plot()
../_images/23b5632134bceb65dce25cd4d499a5d0d1360fe9e85f71f57ecd3674b7e3dcfc.png

Ports#

Your straights wg1/wg2/wg3 are references to other waveguide components.

If you want to add ports to the new Component c you can use add_port, where you can create a new port or use a reference to an existing port from the underlying reference.

You can access the ports of a Component or ComponentReference

import gdsfactory as gf


def straight(length=10, width=1, layer=(1, 0)):
    c = gf.Component()
    c.add_polygon([(0, 0), (length, 0), (length, width), (0, width)], layer=layer)
    c.add_port(
        name="o1", center=[0, width / 2], width=width, orientation=180, layer=layer
    )
    c.add_port(
        name="o2", center=[length, width / 2], width=width, orientation=0, layer=layer
    )
    return c
s = straight(length=10)
s.ports
['Port(name: o1, dwidth: 1.0, trans: r180 *1 0,0.5, layer: 1, port_type: optical)', 'Port(name: o2, dwidth: 1.0, trans: r0 *1 10,0.5, layer: 1, port_type: optical)']
s.pprint_ports()
┏━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━┓
┃ name  width  orientation  layer  center       port_type ┃
┡━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━━━┩
│ o1   │ 1.0   │ 180.0       │ 1     │ (0.0, 0.5)  │ optical   │
│ o2   │ 1.0   │ 0.0         │ 1     │ (10.0, 0.5) │ optical   │
└──────┴───────┴─────────────┴───────┴─────────────┴───────────┘

References#

Now that your component c is a multi-straight component, you can add references to that component in a new blank Component c2, then add two references and shift one to see the movement.

c2 = gf.Component()
wg1 = straight(length=10)
wg2 = straight(length=10, layer=(2, 0))
mwg1_ref = c2.add_ref(wg1)
mwg2_ref = c2.add_ref(wg2)
mwg2_ref.dmovex(10)
c2.plot()
../_images/3b6dc80e3e738227a9e93ea3104c396faf1828a1eb9555fd4b95637481b0ae05.png
# Like before, let's connect mwg1 and mwg2 together
mwg1_ref.connect(port="o2", other=mwg2_ref.ports["o1"], allow_layer_mismatch=True)
c2.plot()
../_images/3b6dc80e3e738227a9e93ea3104c396faf1828a1eb9555fd4b95637481b0ae05.png

Labels#

You can add abstract GDS labels to annotate your Components, in order to record information directly into the final GDS file without putting any extra geometry onto any layer This label will display in a GDS viewer, but will not be rendered or printed like the polygons created by gf.components.text().

c2.add_label(text="First label", position=mwg1_ref.dcenter)
c2.add_label(text="Second label", position=mwg2_ref.dcenter)

# labels are useful for recording information
c2.add_label(
    text=f"The x size of this\nlayout is {c2.dxsize}",
    position=(c2.dx, c2.dy),
    layer=(10, 0),
)
c2.plot()
../_images/3b6dc80e3e738227a9e93ea3104c396faf1828a1eb9555fd4b95637481b0ae05.png

Another simple example

c = gf.Component()
r = c << gf.components.rectangle(size=(1, 1))
r.dx = 0
r.dy = 0
c.add_label(
    text="Demo label",
    position=(0, 0),
    layer=(1, 0),
)
c.plot()
../_images/7c11e1d75bfdf4400149129d82079a7879e087f32796367f7f9696d9f1e284aa.png

Boolean shapes#

If you want to subtract one shape from another, merge two shapes, or perform an XOR on them, you can do that with the boolean() function.

The operation argument should be {not, and, or, xor, ‘A-B’, ‘B-A’, ‘A+B’}. Note that ‘A+B’ is equivalent to ‘or’, ‘A-B’ is equivalent to ‘not’, and ‘B-A’ is equivalent to ‘not’ with the operands switched

c = gf.Component()
e1 = c.add_ref(gf.components.ellipse(layer=(2, 0)))
e2 = c.add_ref(gf.components.ellipse(radii=(10, 6), layer=(2, 0))).dmovex(2)
e3 = c.add_ref(gf.components.ellipse(radii=(10, 4), layer=(2, 0))).dmovex(5)
c.plot()
../_images/484cdbddabb29fca8ada28d80834be0f0d5f5f6e42627898a573fcdc769833c7.png
c2 = gf.boolean(A=e2, B=e1, operation="not", layer=(2, 0))
c2.plot()
../_images/cd6d47e006e30b95bc11a7fbf68ce258f2046ff86ff7b81eea8c27d4c7fd18f7.png

Move Reference by port#

c = gf.Component()
mmi = c.add_ref(gf.components.mmi1x2())
bend = c.add_ref(gf.components.bend_circular(layer=(1, 0)))
c.plot()
../_images/ba6eeb4b81846ba39c08c295b25aac3cc899694c83b1aa1fd4c94d0b55031b69.png
bend.connect("o1", mmi.ports["o2"])  # connects follow Source -> Destination syntax
c.plot()
../_images/12fb4bcbcd11186c3cac554e0e74a386dd09a8c08b3ce206b338b9f9e1f9058b.png

Mirror reference#

By default the mirror works along the y-axis.

c = gf.Component()
mmi = c.add_ref(gf.components.mmi1x2())
bend = c.add_ref(gf.components.bend_circular())
bend.connect(
    "o1", mmi.ports["o2"], mirror=True
)  # connects follow Source -> Destination syntax
c.plot()
../_images/1b0fc91f9f1c9fa971bb07eb411b2a3218b674224ba388cebd1c22c245171d85.png

Write#

You can write your Component to:

  • GDS file (Graphical Database System) or OASIS for chips.

  • gerber for PCB.

  • STL for 3d printing.

import gdsfactory as gf

c = gf.components.cross()
c.write_gds("demo.gds")
c.plot()
../_images/f39627b75a605eec86191279c25bfa4fa2089fc11658c5b026f3c7596871e728.png

You can see the GDS file in Klayout viewer.

Sometimes you also want to save the GDS together with metadata (settings, port names, widths, locations …) in YAML

c.write_gds("demo.gds", with_metadata=True)
/tmp/ipykernel_2284/4006610387.py:1: UserWarning: with_metadata is deprecated
  c.write_gds("demo.gds", with_metadata=True)
PosixPath('demo.gds')

OASIS is a newer format that can store CAD files and that reduces the size.

c.write("demo.oas")

You can also save it as STL for 3D printing or for some simulator, thanks to the LayerStack

gf.export.to_stl(c, "demo.stl")
Write PosixPath('/home/runner/work/gdsfactory/gdsfactory/notebooks/demo_1_0.stl') zmin = 0.000, height = 0.220
scene = c.to_3d()
scene.show()