In this Topic Hide
.GRAPH signal_name|"expression" |
+ [ persistence = persistence ] |
+ [ axisname = axisname ] |
+ [ graphname = graphname ] |
+ [ axistype = digital|grid|axis|auto ] |
+ [ curvelabel = curvelabel ] |
+ [ xlabel = xlabel ] |
+ [ ylabel = ylabel ] |
+ [ xunit = xunit ] |
+ [ yunit = yunit ] |
+ [ xmin = xmin ] |
+ [ ymin = ymin ] |
+ [ xmax = xmax ] |
+ [ ymax = ymax ] |
+ [ analysis = analyses_list ] |
+ [ ylog = lin|log|auto ] |
+ [ xlog = lin|log|auto ] |
+ [ nowarn = true|false ] |
+ [ initXLims = true|false] |
+ [ complete = true|false ] |
+ [ order = order ] |
+ [ colour = colour ] |
Parameter name | Type | Description | ||||||
---|---|---|---|---|---|---|---|---|
signal_name | expression | string | Specifies item to be plotted. If this is an expression, then it must be enclosed in double quotation marks or curly braces. | ||||||
persistence | integer | Number of curves to be displayed at once. On repeated runs, any curves from earlier runs remain until the number of curves exceeds this value at which point the oldest is deleted automatically. If this parameter is absent or zero, the curves are never deleted. | ||||||
graphname | string | If specified, the curves will be directed to their own graph sheet within the current window. The value of graphname is arbitrary and is used to identify the graph so that multiple .graph statements can specify the same one. It works in a similar way to axisname an example of which is given below. This name is not used as a label for display purposes but simply as a means of identification. | ||||||
axistype | string |
Can be one of four values to specify type of y-axis:
|
||||||
axisname | string | This is only used if AXISTYPE is specified. The value of AXISNAME is arbitrary and is used to identify the axis so that multiple .GRAPH statements can specify the same one. An example of this is given below. This name is not used as a label for display purposes but simply as a means of identification. Axes can be labelled using ylabel and xlabel. | ||||||
curvelabel | string | Label for curve displayed in graph legend. If omitted, the label will be the signal name or expression. | ||||||
xlabel | string | Label for x-axis. Default is reference of curve being plotted (E.g. time, frequency etc.) | ||||||
ylabel | string | Label for y-axis. If there is only a single curve, this will default to the label for the curve otherwise the default is blank. | ||||||
xunit | string | Units for x-axis. Default is units of reference. | ||||||
yunit | string | Units for y-axis. Default is units of curves plotted provided they are all the same. If any conflict, the default will be blank | ||||||
xmin | real | Minimum limit for x-axis. Must be used with xmax. | ||||||
xmax | real | Maximum limit for x-axis. Must be used with xmin. | ||||||
ymin | real | Minimum limit for y-axis. Must be used with ymax. | ||||||
ymax | real | Maximum limit for y-axis. Must be used with ymin. | ||||||
analysis | string |
Specifies for what analysis modes the plot should be enabled. By default it will be enabled for all analysis modes. Any combination of the following strings, separated by a pipe ('|') symbol.
|
||||||
ylog | string |
One of three values
Default if omitted: LIN |
||||||
xlog | string |
One of three values
Default if omitted: AUTO |
||||||
nowarn | Boolean | If true, no warnings are given if an attempt is made to plot a non-existent signal. Default: false. | ||||||
initXLims | Boolean |
When this is TRUE, the x-axis limits are initialised according to the analysis. E.g. if the analysis is transient and runs from 0 to 1mS, the x-axis will start with these limits. If set to FALSE, the x-axis limits are calculated to fit the curve and updated incrementally. You should set this to FALSE if you are plotting an expression whose x values are not the same as the x values for the analysis e.g. using the XY() function for an X-Y plot.
The default value of this option is usually true but can be changed using the option NoInitXAxisLimits . Type at the command line: "Set NoInitXAxisLimits" to change default to false. |
||||||
complete | Boolean |
If true, the plot is not produced until the analysis is completed. Otherwise the plot is updated at a rate determined by the global option ProbeUpdatePeriod. This is forced for some types of plot as certain expressions cannot be plotted incrementally.
This can be set using the options dialog box ( ). Default: false. |
||||||
order | string | Arbitrary string used to control the display order of digital traces. Digital traces are displayed in an order that is determined by the alphanumeric sort order of the order value. If omitted, the curvelabel value is used instead. | ||||||
colour | string |
Number representing an RGB value of the colour of the final trace. The number, when converted to hexadecimal, is in the form:
bbggrr where bb is the blue value, gg is the green value and rr is the red value. So, 16711680 - FF0000 in hexadecimal is deep blue. |
||||||
.GRAPH supersedes the older and less flexible .TRACE. The latter is, however, still supported and may sometimes be convenient for specifying multiple signals on one line.
If specifying several .GRAPH statements to plot a number of curves on the same graph, you should make sure that the various parameters are consistent. If for example, a conflict arises if you specify xmin and xmax for two .GRAPHs that plot curves in the same graph sheet, and the values for xmin and xmax are different for each. You can specify xmin and ymin for just one of the .GRAPH statements or you can specify for all and make sure they are all the same. The same applies to other non-Boolean parameters i.e. ymin, ymax, xlabel, ylabel, xunits and yunits. The parameter initXLims, however must be specified with the same value for all .GRAPH statements specifying the same graph sheet.
Conflicting values of ylog and xlog are resolved by plotting the curves on separate axes or graph sheets respectively.
To create an X-Y plot, use the XY() function (Script Reference Manual/Function Reference/XY for full details of available functions). You should also specify "initXLims=false". E.g.
.GRAPH "XY( imag(vout), real(vout) )" initXLims=false |
+ xlog=LIN complete=true |
The above will create a Nyquist plot of the vector VOUT.
You can enter an expression as well as single vectors to be plotted. A problem arises when plotting expressions incrementally that are regularly updated while the simulation is running. SIMetrix versions prior to v5 could not incrementally evaluate expressions, so each time the plot of an expression was updated, the expression had to be recalculated from the beginning. This was inefficient and it has always been recommended that the complete=true flag was added in these circumstance to inhibit incremental plotting.
SIMetrix - from version 5 - now has the ability to incrementally evaluate some expressions and there is no longer a recommendation to set complete=true. However, certain expression cannot be incrementally evaluated and when such expressions are entered, incremental plotting will automatically be disabled and the plot won't appear until the run is complete.
A notable example of expressions that cannot be incrementally evaluated is anything containing the phase() function. This is because the phase() function uses a state machine to determine when the phase wraps from -180 to 180 and back. An offset is then applied to make the phase plot continuous. Because of the state machine, it is always necessary to evaluate this function from start to finish which makes incremental evaluation difficult. An alternative is to use instead the arg() function. This is the same as phase, but does not have the state machine and always gives an output that lies between +/- 180 degrees.
You can use .GRAPH to create spectrum plots using FFTs or Fourier. However, FFT is quite difficult to use on its own as it needs interpolated data. So, a new user defined function called Spectrum() has been developed that is especially designed for use with .GRAPH. Usage is:
Spectrum(vector, numPoints [, start [, stop]]) |
vector | Vector or expression |
numPoints | FFT size - must be a binary power of 2 |
start | Start time - default = 0 |
stop | Stop time - default = end of data |
.GRAPH C2_P curveLabel="Amplifier output" nowarn=true |
Plots the vector C2_P and gives it the label 'Amplifier output'. As NOWARN is TRUE, no warning will be given if C2_P does not exist.
.GRAPH vout_quad |
+ axisType="grid" |
+ axisName="grid1" |
+ persistence=2 |
+ curveLabel="Quadrature" |
+ nowarn=true |
+ analysis = TRAN|DC |
.GRAPH vout |
+ axisType="grid" |
+ axisName="grid1" |
+ persistence=2 |
+ curveLabel="In Phase" |
+ yLabel="Filter Outputs" |
+ nowarn=true |
+ analysis = TRAN|DC |
The above illustrates the use of the parameters AXISTYPE and AXISNAME. Both the vectors specified by the above .GRAPH statements will be plotted on the same but separate grid. Because both grids have been given the AXISNAME grid1, each curve will be plotted on the same one. If the values of axisname for the above were different, each curve would be plotted on a separate grid. The ANALYSIS parameter has been specified in both cases, so plots will only be created for transient and dc sweep analyses.
|