首页 / tech / oaAntennaRatioArrayValue

oaAntennaRatioArrayValue

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

概览

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

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

详细说明

The oaAntennaRatioArrayValue represents an array of antennaArrayValues, one for each antenna model。 See oaValue for a discussion of the usage of all of the oaValue subclasses。

方法总览

状态 Python 调用
obj.get(model)
obj.set(model, value)
_tech.oaAntennaRatioArrayValue.create(database, defaultModel, secondModel=NULL, thirdModel=NULL, fourthModel=NULL)

方法说明

obj.get(model)

绑定状态: 已绑定

Python 调用: obj.get(model)

This function returns the antenna ratio value for the antenna model specified。

参数

  • model: The antenna model to get the antenna ratios value for。

Python 示例

from oapy._oa import _tech

# assume obj is a oaAntennaRatioArrayValue
obj.get(model)

obj.set(model, value)

绑定状态: 已绑定

Python 调用: obj.set(model, value)

This function sets the antenna ratios for the antenna model specified。

参数

  • model: The model to set the ratios for。
  • value: The value of the antenna ratios to set。

Python 示例

from oapy._oa import _tech

# assume obj is a oaAntennaRatioArrayValue
obj.set(model, value)

_tech.oaAntennaRatioArrayValue.create(database, defaultModel, secondModel=NULL, thirdModel=NULL, fourthModel=NULL)

绑定状态: 已绑定

Python 调用: _tech.oaAntennaRatioArrayValue.create(database, defaultModel, secondModel=NULL, thirdModel=NULL, fourthModel=NULL)

This function creates an antennaRatioArray value in the specified database。 An antennaRatioValue is specified for each antenna model as needed。 Only the defaultModel is required。 All of the antennaRatioValues must be in the same database as the value being created。

参数

  • database: The database to create the value in。
  • defaultModel: The antenna ratios for the default model。
  • secondModel: The antenna ratios for the second model。
  • thirdModel: The antenna ratios for the third model。
  • fourthModel: The antenna ratios for the fourth model。

异常

  • oacInvalidDatabase

Python 示例

from oapy._oa import _tech

_tech.oaAntennaRatioArrayValue.create(database, defaultModel, secondModel=NULL, thirdModel=NULL, fourthModel=NULL)