-
-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
055eb7f
commit 224b115
Showing
8 changed files
with
290 additions
and
138 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
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,8 +1,51 @@ | ||
print('SiEPIC-GSiP PDK Python module: pymacros') | ||
# $autorun | ||
""" | ||
This file is part of the SiEPIC-Tools and SiEPIC-GSiP PDK | ||
by Lukas Chrostowski (c) 2015-2017 | ||
from . import GSiP_Library | ||
This Python file implements a library called "GSiP" for scripted and GUI-based layout flows. | ||
Crash warning: | ||
https://www.klayout.de/forum/comments.php?DiscussionID=734&page=1#Item_13 | ||
This library has nested PCells. Running this macro with a layout open may | ||
cause it to crash. Close the layout first before running. | ||
Version history: | ||
Mustafa Hammood 2020/6/25 | ||
- Refactored PCells out of library files into individual files in a subdirectory | ||
Jaspreet Jhoja 2020/5/23 | ||
- Refactored PCells to make them compatible with both, GUI and script-based layout operations | ||
Stefan Preble and Karl McNulty (RIT) 2019/6/13 | ||
- Wireguide : Path to metal wires | ||
Lukas Chrostowski 2017/12/16 | ||
- compatibility with KLayout 0.25 and SiEPIC-Tools | ||
Lukas Chrostowski | ||
- GDS cells (detector, etc) and PCells (ring modulator, filter) | ||
Lukas 2023/11 | ||
- compatibility with PyPI usage of KLayout | ||
Lukas 2024/10 | ||
- moving all the library loading code into SiEPIC.scripts.load_klayout_library | ||
""" | ||
|
||
print('SiEPIC-GSiP PDK Python module: load library GDS/OAS cells and PCells') | ||
|
||
verbose = False | ||
|
||
tech = 'GSiP' | ||
|
||
from SiEPIC.scripts import load_klayout_library , technology_libraries | ||
|
||
# Load the library | ||
load_klayout_library(tech, tech, 'SiEPIC Generic SiP, v1.1', 'gds/building_blocks','pymacros/pcells_GSiP', verbose=verbose) | ||
|
||
# List the libraries loaded | ||
technology_libraries(tech) | ||
|
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.