Product Documentation
Virtuoso Visualization and Analysis XL SKILL Reference
Product Version IC23.1, November 2023

Mu_prime

Mu_prime(
t_resultsDirectory
)
=> o_waveform / nil

Description

Returns the alternative stability factor that indicates the minimum distance between the center of the unit Smith chart and the source unstable region.

Arguments

t_resultsDirectory

Path to the results directory that contains results of S-Parameter analysis.

Value Returned

o_waveform

Waveform object represnting the minimum distance between the origin of the unit Smith chart and the load unstable region.

nil

Waveform object cannot be created because of an error.

Examples

The following example creates a Waveform window and returns its window ID.

awvCreatePlotWindow()
=> window:3

The following example opens simulation results of S-Parameters analysis stored in the specified results directory.

openResults("/servers/user/MU/simulation/ampTest/spectre/schematic/psf")
=> "/servers/user/MU/simulation/ampTest/spectre/schematic/psf"

The following example creates a waveform object Mu_primeWaveform, representing the minimum distance between the center of the unit Smith chart and the source unstable region.

Mu_primeWaveform=Mu_prime("/servers/userMU/simulation/ampTest/spectre/schematic/psf")
=> srrWave:0x37627450

The following example plots the waveform object Mu_primeWaveform.

awvPlotWaveform(
    awvGetCurrentWindow()
    list(Mu_primeWaveform)
    ?expr list("Mu_prime")
    ?color list("y6")
    ?index list(1)
    ?lineType list("line")
    ?lineStyle list("dash")
    ?lineThickness list("thick")
    ?showSymbols list(t)
    ?dataSymbol list(3)
    )
=> t


Return to top
 ⠀
X