Impedance
SCPI Commands :
FRANalysis:IMPedance[:MODE]
FRANalysis:IMPedance:DATA
FRANalysis:IMPedance:ENABle
FRANalysis:IMPedance:STARt
FRANalysis:IMPedance:STOP
FRANalysis:IMPedance:SCALe
- Commands in total: 6Subgroups: 0Direct child commands: 6
- get_data() List[float][source]
# FRANalysis:IMPedance:DATA value: List[float] = driver.franalysis.impedance.get_data()
Returns the impedance results as a list of comma-separated values in Ohm.
- Returns:
data: Comma-separated list of values
- get_enable() bool[source]
# FRANalysis:IMPedance:ENABle value: bool = driver.franalysis.impedance.get_enable()
Enables the impedance waveform for the impedance analysis.
- Returns:
state: OFF | ON
- get_mode() FrAnalysisMeasMode[source]
# FRANalysis:IMPedance[:MODE] value: enums.FrAnalysisMeasMode = driver.franalysis.impedance.get_mode()
Selects the measurement method for the impedance analysis.
- get_scale() AxisMode[source]
# FRANalysis:IMPedance:SCALe value: enums.AxisMode = driver.franalysis.impedance.get_scale()
Sets the scale mode for the impedance trace.
- get_start() float[source]
# FRANalysis:IMPedance:STARt value: float = driver.franalysis.impedance.get_start()
Set the lower and upper value of the vertical scale for the impedance trace.
- get_stop() float[source]
# FRANalysis:IMPedance:STOP value: float = driver.franalysis.impedance.get_stop()
Set the lower and upper value of the vertical scale for the impedance trace.
- set_enable(state: bool) None[source]
# FRANalysis:IMPedance:ENABle driver.franalysis.impedance.set_enable(state = False)
Enables the impedance waveform for the impedance analysis.
- Parameters:
state – OFF | ON
- set_mode(meas_md: FrAnalysisMeasMode) None[source]
# FRANalysis:IMPedance[:MODE] driver.franalysis.impedance.set_mode(meas_md = enums.FrAnalysisMeasMode.SERies)
Selects the measurement method for the impedance analysis.
- Parameters:
meas_md – SHUNt: Shunt through SERies: Series through VCURrent: Voltage current
- set_scale(vertical_scale_mode: AxisMode) None[source]
# FRANalysis:IMPedance:SCALe driver.franalysis.impedance.set_scale(vertical_scale_mode = enums.AxisMode.LIN)
Sets the scale mode for the impedance trace.
- Parameters:
vertical_scale_mode – LIN | LOG
- set_start(vertical_start: float) None[source]
# FRANalysis:IMPedance:STARt driver.franalysis.impedance.set_start(vertical_start = 1.0)
Set the lower and upper value of the vertical scale for the impedance trace.
- Parameters:
vertical_start – 2E-09 to 1000000000
- set_stop(vertical_stop: float) None[source]
# FRANalysis:IMPedance:STOP driver.franalysis.impedance.set_stop(vertical_stop = 1.0)
Set the lower and upper value of the vertical scale for the impedance trace.
- Parameters:
vertical_stop – 2E-09 to 1000000000