1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
%$Id: plot.tex,v 1.2 96/03/30 18:03:33 al Exp $
% man commands plot .
%------------------------------------------------------------------------
\section{{\tt PLOT} command}
\index{plot command}
\index{graphics: set-up}
\index{plotting: set-up}
%------------------------------------------------------------------------
\subsection{Syntax}
\begin{verse}
{\tt PLot}\\
{\tt PLot} {\it mode points ...} ...\\
{\tt PLot} {\it mode + points ...} ...\\
{\tt PLot} {\it mode - points ...} ...\\
{\tt PLot} {\it mode} CLEAR
\end{verse}
%------------------------------------------------------------------------
\subsection{Purpose}
Select points in the circuit for graphic output. Select graphic output.
%------------------------------------------------------------------------
\subsection{Status}
The plotting leaves something to be desired. Only two signals can be
plotted at a time. The output file is corrupt when plotting is on.
%------------------------------------------------------------------------
\subsection{Comments}
The `{\tt plot}' command selects where to look at the circuit, or where to
hook the oscilloscope probe.
There are separate lists of probe points for each type of analysis.
To list the probe points, use the bare command `{\tt plot}'.
The syntax for each point is always {\it parameter(node)(limits)},
{\it parameter(componentlabel)(limits)}, or {\it parameter(index)(limits)}.
Some require a dummy index.
For more information on the data available see the {\tt print} command.
You must set the scaling. If you do not, the default range is fixed at -5
to 5. ACS cannot auto-scale because it generates the plot during simulation,
so the necessary information is not available yet. Spice can auto-scale only
because it waits for the simulation to complete before producing any output.
{\tt Plot} uses the same variables as {\tt print}. See the print command
for a list of what is available.
The options {\tt plot} and {\tt noplot} on any analysis command turn
plotting on and off a single run. The {\tt plot} command turns
plotting on and tabular output off. The {\tt print} command turns plotting
off and tabular output on.
You can add to or delete from an existing list by prefixing with
{\tt +} or {\tt -}. {\tt plot ac + v(3)} adds v(3) to the existing
set of AC probes. {\tt plot ac - q(c5)} removes q(c5) from the
list. You can use the wildcard characters {\tt *} and {\tt ?} when
deleting.
Plotting is limited to 2 items.
%------------------------------------------------------------------------
\subsection{Examples}
\begin{description}
\item[{\tt plot ac vm(12)(0,5) vm(13)(-5,5)}] The magnitude of the voltage
at node 12 with a range of 0 to 5, and node 13 with a range of -5 to 5 for
AC analysis.
\item[{\tt plot dc v(r26)}] The voltage across {\tt R26} for DC analysis.
Since there is no range, default values will be used.
\item[{\tt plot tran v(r83)(0,5) p(r83)(0,1u)}] Plot the voltage and power
of {\tt R83} in the next transient analysis. The voltage scale is 0 to 5.
The power scale is 0 to 1 microwatt.
\item[{\tt plot}] List all the probes for all modes.
\item[{\tt plot dc}] Display the DC plot list.
\item[{\tt plot ac CLear}] Clear the AC list.
\end{description}
%------------------------------------------------------------------------
%------------------------------------------------------------------------
|