Profile
SCPI Commands :
FRANalysis:AMPLitude:PROFile:COUNt
FRANalysis:AMPLitude:PROFile:MODE
- Commands in total: 7Subgroups: 3Direct child commands: 2
- get_count() int[source]
# FRANalysis:AMPLitude:PROFile:COUNt value: int = driver.franalysis.amplitude.profile.get_count()
Sets the number of defined points for the amplitude profile.
- get_mode() AmplitudeProfileVoltageChange[source]
# FRANalysis:AMPLitude:PROFile:MODE value: enums.AmplitudeProfileVoltageChange = driver.franalysis.amplitude.profile.get_mode()
Selects if the voltage change is done as a single step or as a ramp.
- set_count(value: int) None[source]
# FRANalysis:AMPLitude:PROFile:COUNt driver.franalysis.amplitude.profile.set_count(value = 1)
Sets the number of defined points for the amplitude profile.
- set_mode(amplitude_profile_voltage_change: AmplitudeProfileVoltageChange) None[source]
# FRANalysis:AMPLitude:PROFile:MODE driver.franalysis.amplitude.profile.set_mode(amplitude_profile_voltage_change = enums.AmplitudeProfileVoltageChange.RAMP)
Selects if the voltage change is done as a single step or as a ramp.
- Parameters:
amplitude_profile_voltage_change – SINGle | RAMP
Cloning the Group
# Create a copy of the original group, that exists independently
profile_copy = driver.franalysis.amplitude.profile.clone()
Subgroups