Skip to content

Commit

Permalink
update of Dream library cells
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasc-ubc committed Nov 2, 2024
1 parent accb5d3 commit 37738bb
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 8 deletions.
Binary file removed klayout/EBeam/gds/EBeam_Dream/DP_lens_BB_logo.gds
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -224,11 +224,7 @@ def circle(x, y, r):
# draw DP BB logo
import os

dir_path = os.path.normpath(
os.path.join(
os.path.dirname(os.path.realpath(__file__)), "../../gds/EBeam_Dream/"
)
)
dir_path = os.path.realpath(__file__)
filename = os.path.join(dir_path, "DP_Edge_coupler_for_PWB_BB_logo.gds")
tech_name = "EBeam"
ly2 = pya.Layout()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from pya import *


class ebeam_dream_splitter_1x2_te1550_BB(pya.PCellDeclarationHelper):
class ebeam_dream_splitter_1x2_te1550(pya.PCellDeclarationHelper):
"""
The PCell declaration for the ebeam_dream_splitter_1x2_te1550_BB
Expand All @@ -11,7 +11,7 @@ class ebeam_dream_splitter_1x2_te1550_BB(pya.PCellDeclarationHelper):

def __init__(self):
# Important: initialize the super class
super(ebeam_dream_splitter_1x2_te1550_BB, self).__init__()
super(ebeam_dream_splitter_1x2_te1550, self).__init__()
from SiEPIC.utils import get_technology_by_name

self.technology_name = "EBeam"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def produce_impl(self):
os.path.dirname(os.path.realpath(__file__)), "../../gds/EBeam_Dream/"
)
)
filename = os.path.join(dir_path, "ebeam_sin_dream_splitter1x2_te1550.gds")
filename = os.path.join(dir_path, "ebeam_sin_dream_splitter1x2_te1550_BB.gds")
tech_name = "EBeam"
ly2 = pya.Layout()
ly2.read(filename)
Expand Down

0 comments on commit 37738bb

Please sign in to comment.