Moving

SCPI Commands :

[SOURce<HW>]:FSIMulator:MDELay:MOVing:LOSS
[SOURce<HW>]:FSIMulator:MDELay:MOVing:STATe
[SOURce<HW>]:FSIMulator:MDELay:MOVing:VPERiod
class MovingCls[source]

Moving commands group definition. 5 total commands, 1 Subgroups, 3 group commands

get_loss() float[source]
# SCPI: [SOURce<HW>]:FSIMulator:MDELay:MOVing:LOSS
value: float = driver.source.fsimulator.mdelay.moving.get_loss()

Sets the insertion loss of the moving path for moving propagation.

return

loss: float Range: 0 to 50

get_state() bool[source]
# SCPI: [SOURce<HW>]:FSIMulator:MDELay:MOVing:STATe
value: bool = driver.source.fsimulator.mdelay.moving.get_state()

This command activates the moving fading path for moving propagation.

return

state: 1| ON| 0| OFF

get_vperiod() float[source]
# SCPI: [SOURce<HW>]:FSIMulator:MDELay:MOVing:VPERiod
value: float = driver.source.fsimulator.mdelay.moving.get_vperiod()

This command sets the speed of the delay variation of the moving fading path for moving propagation. A complete cycle comprises one pass through this ‘Variation Period’.

return

vperiod: float Range: 10 to 500

set_loss(loss: float) None[source]
# SCPI: [SOURce<HW>]:FSIMulator:MDELay:MOVing:LOSS
driver.source.fsimulator.mdelay.moving.set_loss(loss = 1.0)

Sets the insertion loss of the moving path for moving propagation.

param loss

float Range: 0 to 50

set_state(state: bool) None[source]
# SCPI: [SOURce<HW>]:FSIMulator:MDELay:MOVing:STATe
driver.source.fsimulator.mdelay.moving.set_state(state = False)

This command activates the moving fading path for moving propagation.

param state

1| ON| 0| OFF

set_vperiod(vperiod: float) None[source]
# SCPI: [SOURce<HW>]:FSIMulator:MDELay:MOVing:VPERiod
driver.source.fsimulator.mdelay.moving.set_vperiod(vperiod = 1.0)

This command sets the speed of the delay variation of the moving fading path for moving propagation. A complete cycle comprises one pass through this ‘Variation Period’.

param vperiod

float Range: 10 to 500

Cloning the Group

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

Subgroups