Delay

SCPI Commands :

[SOURce<HW>]:BB:T2DVb:DELay:DEViation
[SOURce<HW>]:BB:T2DVb:DELay:DYNamic
[SOURce<HW>]:BB:T2DVb:DELay:MUTep1
[SOURce<HW>]:BB:T2DVb:DELay:PROCess
[SOURce<HW>]:BB:T2DVb:DELay:STATic
[SOURce<HW>]:BB:T2DVb:DELay:TOTal
class DelayCls[source]

Delay commands group definition. 12 total commands, 1 Subgroups, 6 group commands

get_deviation() float[source]
# SCPI: [SOURce<HW>]:BB:T2DVb:DELay:DEViation
value: float = driver.source.bb.t2Dvb.delay.get_deviation()

Sets the maximum permissible delay.

return:

max_dev_time: float Range: 1E-6 to 500E-6

get_dynamic() float[source]
# SCPI: [SOURce<HW>]:BB:T2DVb:DELay:DYNamic
value: float = driver.source.bb.t2Dvb.delay.get_dynamic()

Queries the transmission delay currently generated by the SFN delay .

return:

dyn_delay: float Range: 0 to 8.0

get_mute_p_1() bool[source]
# SCPI: [SOURce<HW>]:BB:T2DVb:DELay:MUTep1
value: bool = driver.source.bb.t2Dvb.delay.get_mute_p_1()

Activates muting the P1 symbol of the first T2 frame in a super frame. To mute the P1 symbol, the symbol is set to zero.

return:

mute_p_1: 1| ON| 0| OFF

get_process() float[source]
# SCPI: [SOURce<HW>]:BB:T2DVb:DELay:PROCess
value: float = driver.source.bb.t2Dvb.delay.get_process()

Queries the delay from the modulator input up to the SFN delay .

return:

proc_delay: float Range: 0 to 4.0

get_static() float[source]
# SCPI: [SOURce<HW>]:BB:T2DVb:DELay:STATic
value: float = driver.source.bb.t2Dvb.delay.get_static()

Sets the delay to shift the time of transmission positively or negatively.

return:

static_delay: float Range: -4.0 to 4.0

get_total() float[source]
# SCPI: [SOURce<HW>]:BB:T2DVb:DELay:TOTal
value: float = driver.source.bb.t2Dvb.delay.get_total()

Queries the sum of processing delay and dynamic delay.

return:

total_delay: float Range: -4.0 to 16.0

set_deviation(max_dev_time: float) None[source]
# SCPI: [SOURce<HW>]:BB:T2DVb:DELay:DEViation
driver.source.bb.t2Dvb.delay.set_deviation(max_dev_time = 1.0)

Sets the maximum permissible delay.

param max_dev_time:

float Range: 1E-6 to 500E-6

set_mute_p_1(mute_p_1: bool) None[source]
# SCPI: [SOURce<HW>]:BB:T2DVb:DELay:MUTep1
driver.source.bb.t2Dvb.delay.set_mute_p_1(mute_p_1 = False)

Activates muting the P1 symbol of the first T2 frame in a super frame. To mute the P1 symbol, the symbol is set to zero.

param mute_p_1:

1| ON| 0| OFF

set_static(static_delay: float) None[source]
# SCPI: [SOURce<HW>]:BB:T2DVb:DELay:STATic
driver.source.bb.t2Dvb.delay.set_static(static_delay = 1.0)

Sets the delay to shift the time of transmission positively or negatively.

param static_delay:

float Range: -4.0 to 4.0

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.source.bb.t2Dvb.delay.clone()

Subgroups