Pinput

SCPI Commands :

[SOURce<HW>]:[BB]:DME:PINPut:DELay
[SOURce<HW>]:[BB]:DME:PINPut:SOURce
Commands in total: 5
Subgroups: 1
Direct child commands: 2
get_delay() float[source]
# [SOURce<HW>]:[BB]:DME:PINPut:DELay
value: float = driver.source.bb.dme.pinput.get_delay()

Sets the delay between the external trigger and the first DME output pulse (50% voltage point of first pulse) . Setting takes effect, if method RsSmbv.source.bb.dme.pinput.source() is set to EXTernal. For DME reply mode, this setting simulates the defined delay of the DME transponder and twice the run time of the signal (from interrogator to transponder and back) . The delay is a measure of the range distance, thus, the two values are interdependent according to: Delay = X/Y mode delay + range distance * 12.359 nm/us (X mode delay = 50 us, Y mode delay is 56 us) Changing one value automatically changes the other value.

Returns:

delay: float Range: 4E-6 to 5E-3

get_source() AvionicDmePulsInput[source]
# [SOURce<HW>]:[BB]:DME:PINPut:SOURce
value: enums.AvionicDmePulsInput = driver.source.bb.dme.pinput.get_source()

Selects the trigger mode for DME modulation signals.

Returns:

puls_inp_source: EXTernal | PSENsor EXTernal The signals are triggered by an external trigger event. The trigger signal is supplied via the Pulse Ext connector. PSENsor The signals are triggered by a connected power sensor, for example, the R&S NRP-Z81.

set_delay(delay: float) None[source]
# [SOURce<HW>]:[BB]:DME:PINPut:DELay
driver.source.bb.dme.pinput.set_delay(delay = 1.0)

Sets the delay between the external trigger and the first DME output pulse (50% voltage point of first pulse) . Setting takes effect, if method RsSmbv.source.bb.dme.pinput.source() is set to EXTernal. For DME reply mode, this setting simulates the defined delay of the DME transponder and twice the run time of the signal (from interrogator to transponder and back) . The delay is a measure of the range distance, thus, the two values are interdependent according to: Delay = X/Y mode delay + range distance * 12.359 nm/us (X mode delay = 50 us, Y mode delay is 56 us) Changing one value automatically changes the other value.

Parameters:

delay – float Range: 4E-6 to 5E-3

set_source(puls_inp_source: AvionicDmePulsInput) None[source]
# [SOURce<HW>]:[BB]:DME:PINPut:SOURce
driver.source.bb.dme.pinput.set_source(puls_inp_source = enums.AvionicDmePulsInput.EXTernal)

Selects the trigger mode for DME modulation signals.

Parameters:

puls_inp_source – EXTernal | PSENsor EXTernal The signals are triggered by an external trigger event. The trigger signal is supplied via the Pulse Ext connector. PSENsor The signals are triggered by a connected power sensor, for example, the R&S NRP-Z81.

Cloning the Group

# Create a copy of the original group, that exists independently
pinput_copy = driver.source.bb.dme.pinput.clone()

Subgroups