BirthDeath

SCPI Commands :

[SOURce<HW>]:FSIMulator:BIRThdeath:FRATio
[SOURce<HW>]:FSIMulator:BIRThdeath:POSitions
[SOURce<HW>]:FSIMulator:BIRThdeath:SOFFset
[SOURce<HW>]:FSIMulator:BIRThdeath:SPEed
[SOURce<HW>]:FSIMulator:BIRThdeath:STATe
class BirthDeathCls[source]

BirthDeath commands group definition. 13 total commands, 3 Subgroups, 5 group commands

get_fratio() float[source]
# SCPI: [SOURce<HW>]:FSIMulator:BIRThdeath:FRATio
value: float = driver.source.fsimulator.birthDeath.get_fratio()

Sets the ratio of the actual Doppler frequency to the set Doppler frequency with birth death propagation fading.

return

fratio: float Range: -1 to 1

get_positions() int[source]
# SCPI: [SOURce<HW>]:FSIMulator:BIRThdeath:POSitions
value: int = driver.source.fsimulator.birthDeath.get_positions()

Sets the number of possible hop positions in the delay range. 0 us < (…:BIRT:POS - 1) x …:DEL:GRID + …:DEL:MIN < 40 us

return

positions: integer Range: 3 to 50

get_soffset() float[source]
# SCPI: [SOURce<HW>]:FSIMulator:BIRThdeath:SOFFset
value: float = driver.source.fsimulator.birthDeath.get_soffset()

Sets the time until the start of the next birth death event. With dual-channel fading, this allows the user to intentionally displace the birth death events of the two faders with respect to one another.

return

soffset: float Range: 0 to 429

get_speed() float[source]
# SCPI: [SOURce<HW>]:FSIMulator:BIRThdeath:SPEed
value: float = driver.source.fsimulator.birthDeath.get_speed()

Sets the speed of the moving receiver for birth death propagation. The default speed unit is m/s. Units different than the default one must be specified.

return

speed: float Range: 0 to dynamic, Unit: m/s

get_state() bool[source]
# SCPI: [SOURce<HW>]:FSIMulator:BIRThdeath:STATe
value: bool = driver.source.fsimulator.birthDeath.get_state()

This command selects the birth death propagation fading configuration and switches the fading simulation on and off.

return

state: 1| ON| 0| OFF

set_fratio(fratio: float) None[source]
# SCPI: [SOURce<HW>]:FSIMulator:BIRThdeath:FRATio
driver.source.fsimulator.birthDeath.set_fratio(fratio = 1.0)

Sets the ratio of the actual Doppler frequency to the set Doppler frequency with birth death propagation fading.

param fratio

float Range: -1 to 1

set_positions(positions: int) None[source]
# SCPI: [SOURce<HW>]:FSIMulator:BIRThdeath:POSitions
driver.source.fsimulator.birthDeath.set_positions(positions = 1)

Sets the number of possible hop positions in the delay range. 0 us < (…:BIRT:POS - 1) x …:DEL:GRID + …:DEL:MIN < 40 us

param positions

integer Range: 3 to 50

set_soffset(soffset: float) None[source]
# SCPI: [SOURce<HW>]:FSIMulator:BIRThdeath:SOFFset
driver.source.fsimulator.birthDeath.set_soffset(soffset = 1.0)

Sets the time until the start of the next birth death event. With dual-channel fading, this allows the user to intentionally displace the birth death events of the two faders with respect to one another.

param soffset

float Range: 0 to 429

set_speed(speed: float) None[source]
# SCPI: [SOURce<HW>]:FSIMulator:BIRThdeath:SPEed
driver.source.fsimulator.birthDeath.set_speed(speed = 1.0)

Sets the speed of the moving receiver for birth death propagation. The default speed unit is m/s. Units different than the default one must be specified.

param speed

float Range: 0 to dynamic, Unit: m/s

set_state(state: bool) None[source]
# SCPI: [SOURce<HW>]:FSIMulator:BIRThdeath:STATe
driver.source.fsimulator.birthDeath.set_state(state = False)

This command selects the birth death propagation fading configuration and switches the fading simulation on and off.

param state

1| ON| 0| OFF

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.source.fsimulator.birthDeath.clone()

Subgroups