Pm

SCPI Commands :

[SOURce<HW>]:BB:GENeral:PM:DEViation
[SOURce<HW>]:BB:GENeral:PM:FREQuency
[SOURce<HW>]:BB:GENeral:PM:PERiod
[SOURce<HW>]:BB:GENeral:PM:SHAPe
[SOURce<HW>]:BB:GENeral:PM:[STATe]
class PmCls[source]

Pm commands group definition. 5 total commands, 0 Subgroups, 5 group commands

get_deviation() float[source]
# SCPI: [SOURce<HW>]:BB:GENeral:PM:DEViation
value: float = driver.source.bb.general.pm.get_deviation()

Sets the phase modulation deviation in radians or degrees.

return:

pm_deviation: float Range: 0 to 6, Unit: rad

get_frequency() float[source]
# SCPI: [SOURce<HW>]:BB:GENeral:PM:FREQuency
value: float = driver.source.bb.general.pm.get_frequency()

Sets the frequency of the modulation signal.

return:

phase_freq: float Range: 0.1 to 100E3

get_period() float[source]
# SCPI: [SOURce<HW>]:BB:GENeral:PM:PERiod
value: float = driver.source.bb.general.pm.get_period()

Queries the period of the modulation signal.

return:

phase_per: float Range: 100E-9 to 100

get_shape() BasebandModShape[source]
# SCPI: [SOURce<HW>]:BB:GENeral:PM:SHAPe
value: enums.BasebandModShape = driver.source.bb.general.pm.get_shape()

Queries the shape of the modulation signal.

return:

pm_shape: SINE

get_state() bool[source]
# SCPI: [SOURce<HW>]:BB:GENeral:PM:[STATe]
value: bool = driver.source.bb.general.pm.get_state()

Activates the standard and deactivates all the other digital standards and digital modulation modes in the same path.

return:

phim_mod_state: 1| ON| 0| OFF

set_deviation(pm_deviation: float) None[source]
# SCPI: [SOURce<HW>]:BB:GENeral:PM:DEViation
driver.source.bb.general.pm.set_deviation(pm_deviation = 1.0)

Sets the phase modulation deviation in radians or degrees.

param pm_deviation:

float Range: 0 to 6, Unit: rad

set_frequency(phase_freq: float) None[source]
# SCPI: [SOURce<HW>]:BB:GENeral:PM:FREQuency
driver.source.bb.general.pm.set_frequency(phase_freq = 1.0)

Sets the frequency of the modulation signal.

param phase_freq:

float Range: 0.1 to 100E3

set_period(phase_per: float) None[source]
# SCPI: [SOURce<HW>]:BB:GENeral:PM:PERiod
driver.source.bb.general.pm.set_period(phase_per = 1.0)

Queries the period of the modulation signal.

param phase_per:

float Range: 100E-9 to 100

set_shape(pm_shape: BasebandModShape) None[source]
# SCPI: [SOURce<HW>]:BB:GENeral:PM:SHAPe
driver.source.bb.general.pm.set_shape(pm_shape = enums.BasebandModShape.SINE)

Queries the shape of the modulation signal.

param pm_shape:

SINE

set_state(phim_mod_state: bool) None[source]
# SCPI: [SOURce<HW>]:BB:GENeral:PM:[STATe]
driver.source.bb.general.pm.set_state(phim_mod_state = False)

Activates the standard and deactivates all the other digital standards and digital modulation modes in the same path.

param phim_mod_state:

1| ON| 0| OFF