首页 / wafer / oaWaferDesc

oaWaferDesc

模块: oapy._oa._wafer 导入: from oapy._oa import _wafer

概览

oaWaferDescoapy 中可用,可通过 _wafer 模块访问。

本页汇总 oaWaferDesc 当前在 oapy 中可用的 Python 接口。

详细说明

The oaWaferDesc class specifies all of the information for exposing its associated reticles on a physical silicon wafer。 The oaWaferDesc class can be observed by deriving from oaObserver

方法总览

状态 Python 调用
obj.destroy()
obj.getName(name)
obj.getTotalDiameter()
obj.getUsableDiameter()
obj.setName(name)
obj.setTotalDiameter(value)
obj.setUsableDiameter(value)
obj.getStepperMaps()
obj.getWaferFeatures()
_wafer.oaWaferDesc.create(wafer, name, totalDiameter, usableDiameter)

方法说明

obj.destroy()

绑定状态: 已绑定

Python 调用: obj.destroy()

This function destroys this wafer description, removing it from the database。

Python 示例

from oapy._oa import _wafer

# assume obj is a oaWaferDesc
obj.destroy()

obj.getName(name)

绑定状态: 已绑定

Python 调用: obj.getName(name)

This function returns the name of this wafer description。

参数

  • name: Filled out with the name of this wafer description。

Python 示例

from oapy._oa import _wafer

# assume obj is a oaWaferDesc
obj.getName(name)

obj.getTotalDiameter()

绑定状态: 已绑定

Python 调用: obj.getTotalDiameter()

This function returns the total diameter value associated with this wafer description。

Python 示例

from oapy._oa import _wafer

# assume obj is a oaWaferDesc
obj.getTotalDiameter()

obj.getUsableDiameter()

绑定状态: 已绑定

Python 调用: obj.getUsableDiameter()

This function returns the usable diameter value associated with this wafer description。

Python 示例

from oapy._oa import _wafer

# assume obj is a oaWaferDesc
obj.getUsableDiameter()

obj.setName(name)

绑定状态: 已绑定

Python 调用: obj.setName(name)

This function changes the name of this wafer description。

参数

  • name: Specifies the new name for this wafer description。

Python 示例

from oapy._oa import _wafer

# assume obj is a oaWaferDesc
obj.setName(name)

obj.setTotalDiameter(value)

绑定状态: 已绑定

Python 调用: obj.setTotalDiameter(value)

This function changes the total diameter value of this wafer description。 An exception is thrown if the value is less than the current usable diameter value。

参数

  • value: Specifies the new total diameter value。

异常

  • oacInvalidTotalDiamValue

Python 示例

from oapy._oa import _wafer

# assume obj is a oaWaferDesc
obj.setTotalDiameter(value)

obj.setUsableDiameter(value)

绑定状态: 已绑定

Python 调用: obj.setUsableDiameter(value)

This function changes the usable diameter value of this wafer description。 An exception is thrown if the value is greater than the current total diameter value。

参数

  • value: Specifies the new usable diameter value。

异常

  • oacInvalidUsableDiamValue

Python 示例

from oapy._oa import _wafer

# assume obj is a oaWaferDesc
obj.setUsableDiameter(value)

obj.getStepperMaps()

绑定状态: 已绑定

Python 调用: obj.getStepperMaps()

This function returns the collection of stepperMaps associated with this wafer description。

Python 示例

from oapy._oa import _wafer

# assume obj is a oaWaferDesc
obj.getStepperMaps()

obj.getWaferFeatures()

绑定状态: 已绑定

Python 调用: obj.getWaferFeatures()

This function returns the collection of waferFeatures associated with this wafer description object。

Python 示例

from oapy._oa import _wafer

# assume obj is a oaWaferDesc
obj.getWaferFeatures()

_wafer.oaWaferDesc.create(wafer, name, totalDiameter, usableDiameter)

绑定状态: 已绑定

Python 调用: _wafer.oaWaferDesc.create(wafer, name, totalDiameter, usableDiameter)

This function creates a wafer description in the specified wafer with the given name and attributes。 Exceptions are thrown if the wafer already has a wafer description associated with it or if the usable diameter value is greater than the total diameter value specified。

参数

  • wafer: Specifies the wafer to create the wafer description in。
  • name: Specifies the name of the wafer description。
  • totalDiameter: Specifies the total diameter of the wafer。
  • usableDiameter: Specifies the usable diameter of the wafer。

异常

  • oacWaferAlreadyHasWaferDesc
  • oacInvalidUsableDiamValue

Python 示例

from oapy._oa import _wafer

_wafer.oaWaferDesc.create(wafer, name, totalDiameter, usableDiameter)