oaAnalysisPoint
模块: oapy._oa._design
导入: from oapy._oa import _design
概览
oaAnalysisPoint 在 oapy 中可用,可通过 _design 模块访问。
本页汇总 oaAnalysisPoint 当前在 oapy 中可用的 Python 接口。
详细说明
The oaAnalysisPoint class represents a set of oaAnalysisOpPoints。 Each oaAnalysisOpPoint corresponds to a oaOpPoint used for analysis of some of the instances in the design。 Collectively, these oaOpPoints allow a consistent analysis (such as best-case or worst-case) across the whole design。 The oaAnalysisPoint class can be observed by deriving from oaObserver
方法总览
| 状态 | Python 调用 |
|---|---|
| ✅ | _design.oaAnalysisPoint.destroy() |
| ✅ | obj.setName(name) |
| ✅ | obj.getName(name) |
| ✅ | obj.getAnalysisOpPoints() |
| ✅ | _design.oaAnalysisPoint.create(design, name) |
| ✅ | _design.oaAnalysisPoint.find(design, name) |
方法说明
_design.oaAnalysisPoint.destroy()
绑定状态: 已绑定
Python 调用: _design.oaAnalysisPoint.destroy()
This function deletes this analysis point。
Python 示例
from oapy._oa import _design
_design.oaAnalysisPoint.destroy()
obj.setName(name)
绑定状态: 已绑定
Python 调用: obj.setName(name)
This function sets the name of this analysis point。
参数
name: input name to set on this analysis point。
异常
oacAnalysisPointNameExists。
Python 示例
from oapy._oa import _design
# assume obj is a oaAnalysisPoint
obj.setName(name)
obj.getName(name)
绑定状态: 已绑定
Python 调用: obj.getName(name)
This function gets the name of this analysis point。
参数
name: returned name of this analysis point。
Python 示例
from oapy._oa import _design
# assume obj is a oaAnalysisPoint
obj.getName(name)
obj.getAnalysisOpPoints()
绑定状态: 已绑定
Python 调用: obj.getAnalysisOpPoints()
This function returns the collection of oaAnalysisOpPoints associated with this oaAnalysisPoint。
Python 示例
from oapy._oa import _design
# assume obj is a oaAnalysisPoint
obj.getAnalysisOpPoints()
_design.oaAnalysisPoint.create(design, name)
绑定状态: 已绑定
Python 调用: _design.oaAnalysisPoint.create(design, name)
This function creates a new analysisPoint in the specified design with the specified name。 The name can be the name of the tool that owns this analysis point。
参数
design: pointer to design in which to create this oaAnalysisPoint object。name: name of the analysis point。
异常
oacAnalysisPointNameExists。oacCannotCreateParasiticsOnPcell。
Python 示例
from oapy._oa import _design
_design.oaAnalysisPoint.create(design, name)
_design.oaAnalysisPoint.find(design, name)
绑定状态: 已绑定
Python 调用: _design.oaAnalysisPoint.find(design, name)
This function searches in the specified design for an analysis point with the specified name。 If the analysis point is found, it is returned。 NULL is returned if the analysis point cannot be found。
参数
design: pointer to design in which to search。name: name of analysis point to find。
Python 示例
from oapy._oa import _design
_design.oaAnalysisPoint.find(design, name)