oaMaterial
模块: oapy._oa._tech
导入: from oapy._oa import _tech
概览
oaMaterial 在 oapy 中可用,可通过 _tech 模块访问。
本页汇总 oaMaterial 当前在 oapy 中可用的 Python 接口。
详细说明
The oaMaterial class is an enum wrapper class that classifies the types of physical layers on a chip by what fundamental electrical purpose they serve。 See oaPhysicalLayer::create for its usage。 See Enum Wrappers in the Programmers Guide for a discussion of enum wrappers。 enum oaMaterialEnum Enumeration values: oacOtherMaterial "other" The material for this layer is not specified oacNWellMaterial "nWell" oacPWellMaterial "pWell" oacNDiffMaterial "nDiff" oacPDiffMaterial "pDiff" oacNImplantMaterial "nImplant" oacPImplantMaterial "pImplant" oacPolyMaterial "poly" oacCutMaterial "cut" oacMetalMaterial "metal" oacContactlessMetalMaterial "contactlessMetal" Local interconnect layer on the poly level that connects to poly and diffusion without a contact。 oacDiffMaterial "diffusion" oacRecognitionMaterial "recognition" oacPassivationCutMaterial "passivationCut"。
构造函数
_tech.oaMaterial(valueIn)
obj = _tech.oaMaterial(valueIn)
_tech.oaMaterial(name)
obj = _tech.oaMaterial(name)
方法总览
| 状态 | Python 调用 |
|---|---|
| ✅ | obj.getName() |
方法说明
obj.getName()
绑定状态: 已绑定
Python 调用: obj.getName()
This function returns the name string associated with the encapsulated oaMaterialEnum object。
Python 示例
from oapy._oa import _tech
# assume obj is a oaMaterial
obj.getName()