Technolgy file archetecture revised with dictionary input method

This commit is contained in:
=
2026-06-07 17:07:20 +08:00
parent 8a17f1dde0
commit 54d20eb154
163 changed files with 5948 additions and 1297 deletions
+15 -21
View File
@@ -1,26 +1,20 @@
from .CUMEC import CUMEC_CSiP130Cu,CUMEC_CSiP180Al_PASSIVE
from .AMF import AMF_Si220_Active
from .ANT import ANT_Si220_MPW
from .IMEC import IMEC_Si220_Active
from .IMECAS import IMECAS_SiP
from .Foundry import Foundry
from .layer_models import LayerSpec, XSectionSpec
from .CompTek import CT_CU3ML
from .SITRI import SITRI_LSIN_SOI
from .Silterra import EOM1_2ML_CU
"""Manifest-backed technology registry."""
from .Foundry import Foundry, TechnologyLoader, build_foundry_registry
from .layer_models import LayerSpec, MaterialSpec, ProcessLayerSpec, XSectionLayerSpec, XSectionSpec
foundry = build_foundry_registry()
__all__ = [
"Foundry",
"LayerSpec",
"MaterialSpec",
"ProcessLayerSpec",
"TechnologyLoader",
"XSectionLayerSpec",
"XSectionSpec",
"build_foundry_registry",
"foundry",
]