Los
SCPI Commands :
[SOURce<HW>]:FSIMulator:SCM:LOS:DISTance
[SOURce<HW>]:FSIMulator:SCM:LOS:KFACtor
[SOURce<HW>]:FSIMulator:SCM:LOS:STATe
- class LosCls[source]
Los commands group definition. 12 total commands, 3 Subgroups, 3 group commands
- get_distance() float [source]
# SCPI: [SOURce<HW>]:FSIMulator:SCM:LOS:DISTance value: float = driver.source.fsimulator.scm.los.get_distance()
Sets the distance between the base station (BS) and the user terminal (UT) .
- return
los_3_ddistance: float Range: 0 to 1000
- get_kfactor() float [source]
# SCPI: [SOURce<HW>]:FSIMulator:SCM:LOS:KFACtor value: float = driver.source.fsimulator.scm.los.get_kfactor()
Sets the ricean K factor.
- return
factor: float Range: -50 to 0
- get_state() bool [source]
# SCPI: [SOURce<HW>]:FSIMulator:SCM:LOS:STATe value: bool = driver.source.fsimulator.scm.los.get_state()
Adds a line-of-sight (LOS) component to the cluster.
- return
state: 1| ON| 0| OFF
- set_distance(los_3_ddistance: float) None [source]
# SCPI: [SOURce<HW>]:FSIMulator:SCM:LOS:DISTance driver.source.fsimulator.scm.los.set_distance(los_3_ddistance = 1.0)
Sets the distance between the base station (BS) and the user terminal (UT) .
- param los_3_ddistance
float Range: 0 to 1000
- set_kfactor(factor: float) None [source]
# SCPI: [SOURce<HW>]:FSIMulator:SCM:LOS:KFACtor driver.source.fsimulator.scm.los.set_kfactor(factor = 1.0)
Sets the ricean K factor.
- param factor
float Range: -50 to 0
- set_state(state: bool) None [source]
# SCPI: [SOURce<HW>]:FSIMulator:SCM:LOS:STATe driver.source.fsimulator.scm.los.set_state(state = False)
Adds a line-of-sight (LOS) component to the cluster.
- param state
1| ON| 0| OFF
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.source.fsimulator.scm.los.clone()
Subgroups