Backlobe

SCPI Commands :

ANTenna:MODel:BACKlobe:ATTenuation
ANTenna:MODel:BACKlobe:ENABle
ANTenna:MODel:BACKlobe:TYPE
class BacklobeCls[source]

Backlobe commands group definition. 3 total commands, 0 Subgroups, 3 group commands

get_attenuation() float[source]
# SCPI: ANTenna:MODel:BACKlobe:ATTenuation
value: float = driver.antenna.model.backlobe.get_attenuation()

Sets the attenuation of the back lobe.

return:

attenuation: float Range: 0 to 100

get_enable() bool[source]
# SCPI: ANTenna:MODel:BACKlobe:ENABle
value: bool = driver.antenna.model.backlobe.get_enable()

Enables the simulation of a back lobe.

return:

enable: ON| OFF| 1| 0

get_type_py() BlType[source]
# SCPI: ANTenna:MODel:BACKlobe:TYPE
value: enums.BlType = driver.antenna.model.backlobe.get_type_py()

Sets the shape of the back lobe pattern.

return:

type_py: MIRRor| OMNidirect

set_attenuation(attenuation: float) None[source]
# SCPI: ANTenna:MODel:BACKlobe:ATTenuation
driver.antenna.model.backlobe.set_attenuation(attenuation = 1.0)

Sets the attenuation of the back lobe.

param attenuation:

float Range: 0 to 100

set_enable(enable: bool) None[source]
# SCPI: ANTenna:MODel:BACKlobe:ENABle
driver.antenna.model.backlobe.set_enable(enable = False)

Enables the simulation of a back lobe.

param enable:

ON| OFF| 1| 0

set_type_py(type_py: BlType) None[source]
# SCPI: ANTenna:MODel:BACKlobe:TYPE
driver.antenna.model.backlobe.set_type_py(type_py = enums.BlType.MIRRor)

Sets the shape of the back lobe pattern.

param type_py:

MIRRor| OMNidirect