Update to github version

This commit is contained in:
2026-05-17 11:58:41 +08:00
parent 9f2e3f3f78
commit 52be015967
100 changed files with 870 additions and 675 deletions
+11
View File
@@ -0,0 +1,11 @@
from .Foundry import Foundry as Foundry
class AMF_Si220_Active(Foundry):
STD_SMWG_WIDTH: float
SLAB_GROWTH: int
W_METAL_MIN: int
SPACING_HEATER_MIN: int
SPACING_METAL_MIN: int
W_HEATER_MIN: int
lib_path: str
def __init__(self, layermap=...) -> None: ...
+16
View File
@@ -0,0 +1,16 @@
from _typeshed import Incomplete
class Foundry:
STD_SMWG_WIDTH: float
SLAB_GROWTH: int
W_METAL_MIN: int
SPACING_HEATER_MIN: int
SPACING_METAL_MIN: float
W_HEATER_MIN: int
W_VIA_H2M: float
SPACING_VIA_H2M: float
ISL_W_MIN: int
ISL_SP_MIN: int
show_pins: bool
layermap: Incomplete
def __init__(self, layermap=None) -> None: ...
@@ -0,0 +1,11 @@
from .Foundry import Foundry as Foundry
class EOM1_2ML_CU(Foundry):
STD_SMWG_WIDTH: float
SLAB_GROWTH: int
W_METAL_MIN: int
SPACING_HEATER_MIN: int
SPACING_METAL_MIN: int
W_HEATER_MIN: int
lib_path: str
def __init__(self, layermap=...) -> None: ...
@@ -0,0 +1,2 @@
from .AMF import AMF_Si220_Active as AMF_Si220_Active
from .Silterra import EOM1_2ML_CU as EOM1_2ML_CU