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.

import gdsfactory as gf


def demo_polygons():
    # Create a blank component (essentially an empty GDS cell with some special features)
    c = gf.Component("demo")

    # Create and add a polygon from separate lists of x points and y points
    # (Can also be added like [(x1,y1), (x2,y2), (x3,y3), ... ]
    c.add_polygon(
        [(-8, 6, 7, 9), (-6, 8, 17, 5)], layer=(1, 0)
    )  # GDS layers are tuples of ints (but if we use only one number it assumes the other number is 0)
    return c


c = demo_polygons()
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-04-24 19:54:00.236 | INFO     | gdsfactory.component:_write_library:2003 - Wrote to 'demo.gds'
2024-04-24 19:54:00.256 | WARNING  | gdsfactory.klive:show:49 - UserWarning: Could not connect to klive server. Is klayout open and klive plugin installed?
2024-04-24 19:54:00.631 | INFO     | gdsfactory.technology.layer_views:to_lyp:1018 - LayerViews written to '/tmp/gdsfactory/demo.lyp'.
../_images/6be898f63813752a971a58c55e0abd34fb46fb26f19ff7f3a9cf38254a6b1080.png

Exercise :

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

c = gf.Component("myComponent2")
# 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.movey(25)
text2.move([5, 30])
text2.rotate(45)
r.movex(-15)
r.movex(-15)

print(c)
c.plot()
myComponent2: uid 10975521, ports [], references ['text_1', 'text_2', 'rectangle_1'], 0 polygons
2024-04-24 19:54:00.818 | WARNING  | gdsfactory.component:_write_library:1933 - UserWarning: Component myComponent2 has invalid transformations. Try component.flatten_offgrid_references() first.
2024-04-24 19:54:00.840 | INFO     | gdsfactory.technology.layer_views:to_lyp:1018 - LayerViews written to '/tmp/gdsfactory/myComponent2.lyp'.
../_images/c7c1132e6c1457438886f10853b17298fbc38f6f691fbb9071d18db8a671797d.png

You define polygons both from gdstk or Shapely

from shapely.geometry.polygon import Polygon

import gdsfactory as gf

c = gf.Component("Mixed_polygons")
p0 = Polygon(zip((-8, 6, 7, 9), (-6, 8, 17, 5)))
p1 = p0.buffer(1)
p2 = p1.simplify(tolerance=0.1)
c.add_polygon(p0, layer=(1, 0))
c.add_polygon(p1, layer=(2, 0))
c.add_polygon(p2, layer=(3, 0))

c.add_polygon([(-8, 6, 7, 9), (-6, 8, 17, 5)], layer=(4, 0))
c.plot()
2024-04-24 19:54:01.027 | INFO     | gdsfactory.technology.layer_views:to_lyp:1018 - LayerViews written to '/tmp/gdsfactory/Mixed_polygons.lyp'.
../_images/56365dd658ba3057289c34050dc6f07397c3ca2c502d14a050c8f047fe4b5705.png
p0
../_images/d4f26b4dbf440927046b9da7311a3f548600eba805b4931685d05e0c660eae2f.svg
p1 = p0.buffer(1)
p1
../_images/b0fc5c6bcd2952687cbd3f25e45101ce4ef91f10d47a5e3da1697ac130b479c1.svg
pnot = p1 - p0
pnot
../_images/09672a2d246aa2ab402f1f56a350f97998f676edd54100e603d4d58ec6f3bcc6.svg
c = gf.Component("exterior")
c.add_polygon(pnot, layer=(3, 0))
c.plot()
2024-04-24 19:54:01.221 | INFO     | gdsfactory.technology.layer_views:to_lyp:1018 - LayerViews written to '/tmp/gdsfactory/exterior.lyp'.
../_images/0b442181f3609a40cc6d1799d700a44e8c5e2b86f83ba906a27d60d805406d8c.png
p_small = p0.buffer(-1)
p_small
../_images/dd6b60590c367a84c70929b18234122f4d4f67fffa99bc8e1ef215efc128da6c.svg
p_or = pnot | p_small
p_or
../_images/5ef73179d3d7082049ba443f507b896fb1c1778e5c970c4ad169bea28d93dbea.svg
c = gf.Component("p_or")
c.add_polygon(p_or, layer=(1, 0))
c.plot()
2024-04-24 19:54:01.492 | INFO     | gdsfactory.technology.layer_views:to_lyp:1018 - LayerViews written to '/tmp/gdsfactory/p_or.lyp'.
../_images/9cc7bc3cad1e3d8a57ea7bbb64a8290e406f088da4904866581f30a6cd3e3eec.png
import shapely as sp

p5 = sp.envelope(p0)
p5
../_images/99d8c99cc248a4e9534c1b24dfac2c2e2d6cc0ca17dd8161b5d40bbd03474722.svg
p6 = p5 - p0
p6
../_images/6fd7170d5cd4c3133f4bd859bdb8920e3a0a7cc88841f85d11a0c7b6f1a604f9.svg
c = gf.Component("p6")
c.add_polygon(p6, layer=(1, 0))
c.plot()
2024-04-24 19:54:01.694 | INFO     | gdsfactory.technology.layer_views:to_lyp:1018 - LayerViews written to '/tmp/gdsfactory/p6.lyp'.
../_images/f8fd9efa8bd0f2bf365d46c056f36fe9092bbcbe9dc5aa4ade9519edbc0288f1.png
c = gf.Component("demo_multilayer")
p0 = c.add_polygon(p0, layer={(2, 0), (3, 0)})
c.plot()
2024-04-24 19:54:01.888 | INFO     | gdsfactory.technology.layer_views:to_lyp:1018 - LayerViews written to '/tmp/gdsfactory/demo_multilayer.lyp'.
../_images/60e6ae4296c42c04fd63a842e6ad586cb1e3155ad629b5825772c72924fdf90c.png
c = gf.Component("demo_mirror")
p0 = c.add_polygon(p0, layer=(1, 0))
p9 = c.add_polygon(p0, layer=(2, 0))
p9.mirror()
c.plot()
2024-04-24 19:54:02.077 | INFO     | gdsfactory.technology.layer_views:to_lyp:1018 - LayerViews written to '/tmp/gdsfactory/demo_mirror.lyp'.
../_images/8cbb6fc8c32c3d99d97916381b0d4076cad3bd41cc6b1d03a49b8183c1ae9baa.png
c = gf.Component("demo_xmin")
p0 = c.add_polygon(p0, layer=(1, 0))
p9 = c.add_polygon(p0, layer=(2, 0))
p9.mirror()
p9.xmin = p0.xmax
c.plot()
2024-04-24 19:54:02.243 | INFO     | gdsfactory.technology.layer_views:to_lyp:1018 - LayerViews written to '/tmp/gdsfactory/demo_xmin.lyp'.
../_images/26fe4310c0a57195b8385ab521766b6da10062117bd4573a497ff84d8b041fd3.png
c = gf.Component("enclosure1")
r = c << gf.components.ring_single()
c.plot()
2024-04-24 19:54:02.465 | INFO     | gdsfactory.technology.layer_views:to_lyp:1018 - LayerViews written to '/tmp/gdsfactory/enclosure1.lyp'.
../_images/ffbde516a0053d1c37b970451f4d479c68a09b2868dcb0246327883c6a56d1cb.png
c = gf.Component("enclosure2")
r = c << gf.components.ring_single()
p = c.get_polygon_bbox()
c.add_polygon(p, layer=(2, 0))
c.plot()
2024-04-24 19:54:02.647 | INFO     | gdsfactory.technology.layer_views:to_lyp:1018 - LayerViews written to '/tmp/gdsfactory/enclosure2.lyp'.
../_images/ed379d23fe7b3286b274af9b602ae8d04a9af89806ea329652de814742a1371f.png
c = gf.Component("enclosure3")
r = c << gf.components.ring_single()
p = c.get_polygon_bbox(top=3, bottom=3)
c.add_polygon(p, layer=(2, 0))
c.plot()
2024-04-24 19:54:02.839 | INFO     | gdsfactory.technology.layer_views:to_lyp:1018 - LayerViews written to '/tmp/gdsfactory/enclosure3.lyp'.
../_images/d6a4174570e60209ed1402162b6830f3f8d85764a7c0ef2c639d1495d883bd3d.png
c = gf.Component("enclosure3")
r = c << gf.components.ring_single()
p = c.get_polygon_enclosure()
c.add_polygon(p, layer=(2, 0))
c.plot()
2024-04-24 19:54:03.035 | INFO     | gdsfactory.technology.layer_views:to_lyp:1018 - LayerViews written to '/tmp/gdsfactory/enclosure3$1.lyp'.
../_images/defb984399b62e0cfe35b60347e1147db6b2a17dc78f9ca3441942d41f333bce.png
c = gf.Component("enclosure3")
r = c << gf.components.ring_single()
p = c.get_polygon_enclosure()
p2 = p.buffer(3)
c.add_polygon(p2, layer=(2, 0))
c.plot()
2024-04-24 19:54:03.222 | INFO     | gdsfactory.technology.layer_views:to_lyp:1018 - LayerViews written to '/tmp/gdsfactory/enclosure3$2.lyp'.
../_images/bf04d0903e106e22f0f15cd9dd39f3be0186415d3b39571f484a9999b2806745.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.

@gf.cell
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("straights_not_connected")

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.movey(10).rotate(10)
wg3.movey(20).rotate(15)

c.plot()
2024-04-24 19:54:03.398 | WARNING  | gdsfactory.component:_write_library:1933 - UserWarning: Component straights_not_connected has invalid transformations. Try component.flatten_offgrid_references() first.
2024-04-24 19:54:03.420 | INFO     | gdsfactory.technology.layer_views:to_lyp:1018 - LayerViews written to '/tmp/gdsfactory/straights_not_connected.lyp'.
../_images/d7b7bc7886f2534dfc9a87e570f8e3c49de0a39cc5ceed749b1f088634191b9f.png

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"])
# Next, on wg3 let's grab the "o1" port and connect it to the "o2" on wg2:
wg3.connect("o1", wg2.ports["o2"])

c.plot()
2024-04-24 19:54:03.603 | INFO     | gdsfactory.technology.layer_views:to_lyp:1018 - LayerViews written to '/tmp/gdsfactory/straights_not_connected.lyp'.
../_images/00b30c212e1d975bac30c13b1fced7c03b0f761b351b438003d3619c9da2b58a.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()
2024-04-24 19:54:03.787 | INFO     | gdsfactory.technology.layer_views:to_lyp:1018 - LayerViews written to '/tmp/gdsfactory/straights_not_connected.lyp'.
../_images/9d2e2afb632844f2191f0e6ef4328caba0747c0769bac781465b177d92914025.png

Move and rotate references#

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

c = gf.Component("straights_connected")

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

# Create and add a polygon from separate lists of x points and y points
# e.g. [(x1, x2, x3, ...), (y1, y2, y3, ...)]
poly1 = c.add_polygon([(8, 6, 7, 9), (6, 8, 9, 5)], layer=(4, 0))

# Alternatively, create and add a polygon from a list of points
# e.g. [(x1,y1), (x2,y2), (x3,y3), ...] using the same function
poly2 = c.add_polygon([(0, 0), (1, 1), (1, 3), (-3, 3)], layer=(5, 0))

# Shift the first straight we created over by dx = 10, dy = 5
wg1.move([10, 5])

# Shift the second straight over by dx = 10, dy = 0
wg2.move(origin=[0, 0], destination=[10, 0])

# Shift the third straight over by dx = 0, dy = 4. The translation movement consist of the difference between the values of the destination and the origin and can optionally be limited in a single axis.
wg3.move([1, 1], [5, 5], axis="y")

# Then, move again the third straight "from" x=0 "to" x=10 (dx=10)
wg3.movex(0, 10)

c.plot()
2024-04-24 19:54:04.057 | INFO     | gdsfactory.technology.layer_views:to_lyp:1018 - LayerViews written to '/tmp/gdsfactory/straights_connected.lyp'.
../_images/d654fa4fc1f7e1517adf4ffbf09151de1cfe0ced12b565e0359427a7c27eacf5.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

wg2.ports
{'o1': {'name': 'o1', 'width': 1, 'center': [10.0, 0.5], 'orientation': 180.0, 'layer': [2, 0], 'port_type': 'optical'},
 'o2': {'name': 'o2', 'width': 1, 'center': [12.0, 0.5], 'orientation': 0.0, 'layer': [2, 0], 'port_type': 'optical'}}
wg2.pprint_ports()
┏━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━┓
┃ name  width  center       orientation  layer   port_type ┃
┡━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━┩
│ o1   │ 1     │ [10.0, 0.5] │ 180.0       │ [2, 0] │ optical   │
│ o2   │ 1     │ [12.0, 0.5] │ 0.0         │ [2, 0] │ 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("MultiWaveguides")
wg1 = straight()
wg2 = straight(layer=(2, 0))
mwg1_ref = c2.add_ref(wg1)
mwg2_ref = c2.add_ref(wg2)
mwg2_ref.move(destination=[10, 10])
c2.plot()
2024-04-24 19:54:04.264 | INFO     | gdsfactory.technology.layer_views:to_lyp:1018 - LayerViews written to '/tmp/gdsfactory/MultiWaveguides.lyp'.
../_images/ca47ba0abbfc2b5d2b6f9d33c04c50423dc7d782f76a7f12ced9a49ad9778ae4.png
# Like before, let's connect mwg1 and mwg2 together
mwg1_ref.connect(port="o2", destination=mwg2_ref.ports["o1"])
c2.plot()
2024-04-24 19:54:04.441 | INFO     | gdsfactory.technology.layer_views:to_lyp:1018 - LayerViews written to '/tmp/gdsfactory/MultiWaveguides.lyp'.
../_images/0d8d108aaf18d6f913efcae111350607bfd43dcf99a7b347e287c7480ea8173c.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.center)
c2.add_label(text="Second label", position=mwg2_ref.center)

# labels are useful for recording information
c2.add_label(
    text=f"The x size of this\nlayout is {c2.xsize}",
    position=(c2.xmax, c2.ymax),
    layer=(10, 0),
)
c2.plot()
2024-04-24 19:54:04.626 | INFO     | gdsfactory.technology.layer_views:to_lyp:1018 - LayerViews written to '/tmp/gdsfactory/MultiWaveguides.lyp'.
../_images/0d8d108aaf18d6f913efcae111350607bfd43dcf99a7b347e287c7480ea8173c.png

Another simple example

c = gf.Component("rectangle_with_label")
r = c << gf.components.rectangle(size=(1, 1))
r.x = 0
r.y = 0
c.add_label(
    text="Demo label",
    position=(0, 0),
    layer=(1, 0),
)
c.plot()
2024-04-24 19:54:04.812 | INFO     | gdsfactory.technology.layer_views:to_lyp:1018 - LayerViews written to '/tmp/gdsfactory/rectangle_with_label.lyp'.
../_images/da4d63fb39d02a4b7a531c125a2397e08c3adca7385aff0179fd3ea757e9224b.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("boolean_demo")
e1 = c.add_ref(gf.components.ellipse(layer=(2, 0)))
e2 = c.add_ref(gf.components.ellipse(radii=(10, 6), layer=(2, 0))).movex(2)
e3 = c.add_ref(gf.components.ellipse(radii=(10, 4), layer=(2, 0))).movex(5)
c.plot()
2024-04-24 19:54:05.008 | INFO     | gdsfactory.technology.layer_views:to_lyp:1018 - LayerViews written to '/tmp/gdsfactory/boolean_demo.lyp'.
../_images/3425a2762ce2420e379a71a13c9051bca649013a18df968064bf33488301487d.png
c2 = gf.geometry.boolean(A=[e1, e3], B=e2, operation="A-B", layer=(2, 0))
c2.plot()
2024-04-24 19:54:05.209 | INFO     | gdsfactory.technology.layer_views:to_lyp:1018 - LayerViews written to '/tmp/gdsfactory/boolean_94e89182.lyp'.
../_images/5300c56915deea902e7fd24ee5ae6be4829d768c0a1dcffbb4638ea796f9761d.png

Move Reference by port#

c = gf.Component("ref_port_sample")
mmi = c.add_ref(gf.components.mmi1x2())
bend = c.add_ref(gf.components.bend_circular(layer=(2, 0)))
c.plot()
2024-04-24 19:54:05.403 | INFO     | gdsfactory.technology.layer_views:to_lyp:1018 - LayerViews written to '/tmp/gdsfactory/ref_port_sample.lyp'.
../_images/874cce8313b25c88c56861192e79d9805cee341ff491a5e6ed715fd8be9e572d.png
bend.connect("o1", mmi.ports["o2"])  # connects follow Source, destination syntax
c.plot()
2024-04-24 19:54:05.591 | INFO     | gdsfactory.technology.layer_views:to_lyp:1018 - LayerViews written to '/tmp/gdsfactory/ref_port_sample.lyp'.
../_images/74e9aa171960e766b3805f8e6e0eeffc8c822427b7d636d0962c3e673d339c53.png

Mirror reference#

By default the mirror works along the y-axis.

c = gf.Component("ref_mirror")
mmi = c.add_ref(gf.components.mmi1x2())
bend = c.add_ref(gf.components.bend_circular(layer=(2, 0)))
c.plot()
2024-04-24 19:54:05.778 | INFO     | gdsfactory.technology.layer_views:to_lyp:1018 - LayerViews written to '/tmp/gdsfactory/ref_mirror.lyp'.
../_images/874cce8313b25c88c56861192e79d9805cee341ff491a5e6ed715fd8be9e572d.png
mmi.mirror()
c.plot()
2024-04-24 19:54:05.965 | INFO     | gdsfactory.technology.layer_views:to_lyp:1018 - LayerViews written to '/tmp/gdsfactory/ref_mirror.lyp'.
../_images/a431108ef946ed664aac992ed081cc1ba80072fbfdc654f354f43eb88055962b.png
mmi.mirror_y()
c.plot()
2024-04-24 19:54:06.237 | INFO     | gdsfactory.technology.layer_views:to_lyp:1018 - LayerViews written to '/tmp/gdsfactory/ref_mirror.lyp'.
../_images/a431108ef946ed664aac992ed081cc1ba80072fbfdc654f354f43eb88055962b.png
mmi.mirror_x()
c.plot()
2024-04-24 19:54:06.420 | INFO     | gdsfactory.technology.layer_views:to_lyp:1018 - LayerViews written to '/tmp/gdsfactory/ref_mirror.lyp'.
../_images/99ec2d2d632920a63708b358e8f8fafc66d7e90aa1a64d5f8dd5e19f3b81da97.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()
2024-04-24 19:54:06.592 | INFO     | gdsfactory.component:_write_library:2003 - Wrote to 'demo.gds'
2024-04-24 19:54:06.615 | INFO     | gdsfactory.technology.layer_views:to_lyp:1018 - LayerViews written to '/tmp/gdsfactory/cross.lyp'.
../_images/0b36d89608f9c2b4f8e543e7df20de08d533637fd3ad26378df2b691698aaaf9.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)
2024-04-24 19:54:06.781 | INFO     | gdsfactory.component:_write_library:2003 - Wrote to 'demo.gds'
2024-04-24 19:54:06.787 | INFO     | gdsfactory.component:_write_library:2007 - Write YAML metadata to 'demo.yml'
PosixPath('demo.gds')

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

c.write_oas("demo.oas")
2024-04-24 19:54:06.794 | INFO     | gdsfactory.component:_write_library:2003 - Wrote to 'demo.oas'
PosixPath('demo.oas')

You can also save the image as a PNG image

fig = c.plot_klayout()
fig.savefig("demo.png")
2024-04-24 19:54:06.823 | INFO     | gdsfactory.technology.layer_views:to_lyp:1018 - LayerViews written to '/tmp/gdsfactory/cross.lyp'.
../_images/0b36d89608f9c2b4f8e543e7df20de08d533637fd3ad26378df2b691698aaaf9.png

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

c.write_stl("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()