-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #171 from gdsfactory/pdk-cells
Better PDK cells
- Loading branch information
Showing
59 changed files
with
2,792 additions
and
2,350 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Add PDK capabilities to KCLayout [#171](https://github.com/gdsfactory/kfactory/pull/171) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
# --- | ||
# jupyter: | ||
# jupytext: | ||
# text_representation: | ||
# extension: .py | ||
# format_name: light | ||
# format_version: '1.5' | ||
# jupytext_version: 1.15.0 | ||
# kernelspec: | ||
# display_name: Python 3 (ipykernel) | ||
# language: python | ||
# name: python3 | ||
# --- | ||
|
||
# # KCLayout / PDK: Using multiple KCLayout objects as PDKs or Libraries of KCells and parametric KCell-Functions | ||
|
||
# ## Use multiple KCLayout objects as PDKs/Libraries | ||
# | ||
# KCLayouts can act as PDKs. They can be seamlessly instantiated into each other | ||
|
||
# + | ||
import kfactory as kf | ||
|
||
kcl_default = kf.kcl | ||
# - | ||
|
||
# Empty default KCLayout | ||
|
||
kcl_default.kcells | ||
|
||
# Create a default straight waveguide in the default KCLayout with dbu==0.001 (1nm grid) | ||
s_default = kf.cells.straight.straight( | ||
width=1, length=10, layer=kcl_default.layer(1, 0) | ||
) | ||
|
||
# There is now a a KCell in the KCLayout | ||
kcl_default.kcells | ||
|
||
# Control the dbu is still 1nm | ||
kcl_default.dbu | ||
|
||
# Create a new KCLayout to simulate pdk (could be package with e.g. `from test_pdk import kcl as pdk` or similar) | ||
kcl2 = kf.KCLayout("TEST_PDK") | ||
# Set the dbu to 0.005 (5nm) | ||
kcl2.dbu = 0.005 | ||
kcl2.layout.dbu | ||
|
||
# Since it's a new KCLayout, it's empty | ||
kcl2 | ||
|
||
# Create an parametric KCell-Function for straights on the new pdk | ||
sf2 = kf.cells.dbu.Straight(kcl=kcl2) | ||
|
||
# The function hasn't been added to the function yes, so it's still empty | ||
sf2.kcl | ||
|
||
# Add it to the pdk factories | ||
kcl2.factories.update({"straight": kf.cells.dbu.Straight(kcl2)}) | ||
|
||
# Make an instance with | ||
s2 = kcl2.factories["straight"](length=10000, width=200, layer=kcl2.layer(1, 0)) | ||
s2.settings | ||
|
||
# The default kcl's straight uses 1nm grid and is therefore 1000dbu (1um) high and 10000dbu (10um) wide | ||
print(f"{s_default.bbox().height()=}") | ||
print(f"{s_default.dbbox().height()=}") | ||
print(f"{s_default.bbox().width()=}") | ||
print(f"{s_default.dbbox().width()=}") | ||
# The test pdk uses a 5nm grid, so it will be 200dbu (1um) high and 10000dbu (50um) wide | ||
print(f"{s2.bbox().height()=}") | ||
print(f"{s2.dbbox().height()=}") | ||
print(f"{s2.bbox().width()=}") | ||
print(f"{s2.dbbox().width()=}") | ||
|
||
# The ports of the default kcl also have different dbu dimensions, but are the same in um | ||
print(f"{s_default.ports=}") | ||
print(f"{s2.ports=}") | ||
# But in um they are the same | ||
print(f"{[port.d for port in s_default.ports]=}") | ||
print(f"{[port.d for port in s2.ports]=}") | ||
|
||
# Both can be instantiated into the same KCell | ||
c = kcl_default.kcell() | ||
si_d = c << s_default | ||
si_2 = c << s2 | ||
|
||
si_2.connect("o1", si_d, "o2") | ||
|
||
c | ||
|
||
|
||
class LAYER2(kf.LayerEnum): | ||
kcl = kf.constant(kcl2) | ||
WG = (1, 0) | ||
|
||
|
||
kcl2.layers = LAYER2 | ||
|
||
kcl2.layers | ||
|
||
LAYER2 |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.