首页 / tech / oaAntennaRatioValue

oaAntennaRatioValue

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

概览

oaAntennaRatioValueoapy 中可用,可通过 _tech 模块访问。

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

详细说明

This class represents the information needed to define process antenna rules。 This information consists of values for the gate area ratio, the diode area ratio and a boolean indicating whether or not the area measurement is perimeter based。 See oaValue for a discussion of the usage of all of the oaValue subclasses。

方法总览

状态 Python 调用
obj.isSide()
obj.getGate()
obj.getDiode(ratio)
obj.setSide(isSide)
obj.setGate(ratio)
obj.setDiode(ratio)
_tech.oaAntennaRatioValue.create(database, isSide, gateRatio, diodeRatio)

方法说明

obj.isSide()

绑定状态: 已绑定

Python 调用: obj.isSide()

This function returns a boolean indicating whether the area measurement is perimeter based。

Python 示例

from oapy._oa import _tech

# assume obj is a oaAntennaRatioValue
obj.isSide()

obj.getGate()

绑定状态: 已绑定

Python 调用: obj.getGate()

This function returns the gate area ratio。

Python 示例

from oapy._oa import _tech

# assume obj is a oaAntennaRatioValue
obj.getGate()

obj.getDiode(ratio)

绑定状态: 已绑定

Python 调用: obj.getDiode(ratio)

This function returns the diode area ratio。

参数

  • ratio: The returned diode area ratio value。

Python 示例

from oapy._oa import _tech

# assume obj is a oaAntennaRatioValue
obj.getDiode(ratio)

obj.setSide(isSide)

绑定状态: 已绑定

Python 调用: obj.setSide(isSide)

This function sets a boolean indicating whether or not the area measurement is parameter based。

参数

  • isSide: The boolean value to set。

Python 示例

from oapy._oa import _tech

# assume obj is a oaAntennaRatioValue
obj.setSide(isSide)

obj.setGate(ratio)

绑定状态: 已绑定

Python 调用: obj.setGate(ratio)

This function sets the gate area ratio value。

参数

  • ratio: The value to set。

Python 示例

from oapy._oa import _tech

# assume obj is a oaAntennaRatioValue
obj.setGate(ratio)

obj.setDiode(ratio)

绑定状态: 已绑定

Python 调用: obj.setDiode(ratio)

This function sets the diode area ratio value。

参数

  • ratio: The value to set。

Python 示例

from oapy._oa import _tech

# assume obj is a oaAntennaRatioValue
obj.setDiode(ratio)

_tech.oaAntennaRatioValue.create(database, isSide, gateRatio, diodeRatio)

绑定状态: 已绑定

Python 调用: _tech.oaAntennaRatioValue.create(database, isSide, gateRatio, diodeRatio)

This function creates an antenna ratio value in the specified database。

参数

  • database: The database to create the value in。
  • isSide: A boolean indicating whether or not the area measurement is perimeter based。
  • gateRatio: The gate area ratio。
  • diodeRatio: The diode area ratio。

异常

  • oacInvalidDatabase

Python 示例

from oapy._oa import _tech

_tech.oaAntennaRatioValue.create(database, isSide, gateRatio, diodeRatio)