Points
SCPI Commands :
FRANalysis:POINts:LOGarithmic
FRANalysis:POINts:MODE
FRANalysis:POINts:TOTal
- Commands in total: 3Subgroups: 0Direct child commands: 3
- get_logarithmic() int[source]
# FRANalysis:POINts:LOGarithmic value: int = driver.franalysis.points.get_logarithmic()
Selects the number of points that are measured per decade, if method
RsMxo.franalysis.points.mode()is set to DECade.- Returns:
pts_per_decade: 10 to 500
- get_mode() PointsMode[source]
# FRANalysis:POINts:MODE value: enums.PointsMode = driver.franalysis.points.get_mode()
Selects, if the number of points for the FRA are measured as total or per decade. You can set the number of points with method
RsMxo.franalysis.points.total()/ methodRsMxo.franalysis.points.logarithmic().- Returns:
points_mode: TOTal | DECade
- get_total() int[source]
# FRANalysis:POINts:TOTal value: int = driver.franalysis.points.get_total()
Set the total number of points for the FRA analysis, if method
RsMxo.franalysis.points.mode()is set to TOTal.- Returns:
total_points: 10 to 5000
- set_logarithmic(pts_per_decade: int) None[source]
# FRANalysis:POINts:LOGarithmic driver.franalysis.points.set_logarithmic(pts_per_decade = 1)
Selects the number of points that are measured per decade, if method
RsMxo.franalysis.points.mode()is set to DECade.- Parameters:
pts_per_decade – 10 to 500
- set_mode(points_mode: PointsMode) None[source]
# FRANalysis:POINts:MODE driver.franalysis.points.set_mode(points_mode = enums.PointsMode.DECade)
Selects, if the number of points for the FRA are measured as total or per decade. You can set the number of points with method
RsMxo.franalysis.points.total()/ methodRsMxo.franalysis.points.logarithmic().- Parameters:
points_mode – TOTal | DECade
- set_total(total_points: int) None[source]
# FRANalysis:POINts:TOTal driver.franalysis.points.set_total(total_points = 1)
Set the total number of points for the FRA analysis, if method
RsMxo.franalysis.points.mode()is set to TOTal.- Parameters:
total_points – 10 to 5000