home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 13 / 13.iso / p / p063_1 / 1.ddi / EVAL.CIR < prev    next >
Encoding:
Text File  |  1991-01-31  |  8.0 KB  |  183 lines

  1. EVAL.cir - An Illustration of PSpice Capabilities
  2. * This circuit, a differential pair driving a comparator and a counter,
  3. * shows many of the capabilities of PSpice.
  4. * It creates a large amount of output for such a small circuit.  Normally,
  5. * only a few kinds of analysis, such as transient analysis, would be run.
  6. * This command sets options for the run.
  7. .OPT ACCT NOMOD NOPAGE RELTOL=.001
  8.  
  9. * Sets the width of the output to 80 columns.
  10. .WIDTH OUT=80
  11.  
  12. * Sets the temperature for the run to 35 degrees celsius.
  13. .TEMP 35
  14.  
  15. * This command does a DC sweep.  The voltage source VIN is swept from
  16. *   -0.125 volts to 0.125 volts in steps of 0.005 volts.  The non-linear
  17. *   device equations are used.
  18. .DC VIN -0.125 0.125 0.005
  19.  
  20. * There is no command to do a small-signal bias point calculation.  It
  21. *   is done automatically after the DC sweep is finished.  The non-linear
  22. *   device equations are used to find the bias point.  Then, the linearized,
  23. *   small-signal equivalent circuit at the bias point is saved for the .TF,
  24. *   .SENS, .AC, and .NOISE analysis.  This command prints out the small-
  25. *   signal parameters for each device.
  26. .OP
  27.  
  28. * This command does a small-signal transfer function calculation assuming
  29. *   VIN is the input and V(5), the voltage at node 5, is the output.
  30. .TF V(5) VIN
  31.  
  32. * This does an AC analysis.  The real and imaginary response of the circuit
  33. *   is calculated as the inputs are swept from 100 kilohertz to 10 gigahertz
  34. *   by decades with 10 points per decade.  The only AC input this circuit has
  35. *   is VIN.  This is a linear analysis.
  36. .AC DEC 10 100KHZ 10GHZ
  37.  
  38. * This command does noise calculations during the AC analysis.  Each
  39. *   device's noise contribution is calculated and propogated to node 5.
  40. *   All the contributions are rms-summed at node 5.  Besides the total
  41. *   output noise printout done for every frequency, a detailed table of
  42. *   each device's contribution is done every 30'th frequency.
  43. .NOISE V(5) VIN 30
  44.  
  45. * This command does a transient analysis.  It first re-calculates the
  46. *   circuit's bias point, then calculates the circuit's time response
  47. *   from 0 nanoseconds to 1 microsecond using the full, non-linear device
  48. *   equations, including non-linear capacitances.  PSpice uses a variable
  49. *   time step for the calculations, but this command causes the results
  50. *   to be interpolated onto a 5 nanosecond print interval.  Transient
  51. *   analysis is the most frequently used analysis in PSpice.
  52. .TRAN 20NS 5uS
  53.  
  54. * This does a harmonic decomposition on the waveform V(5) calculated
  55. *   during transient analysis.  It calculates the magnitude and phase
  56. *   of the fundamental (5 megahertz) and the first eight harmonics.
  57. *   The graphics post-processor, Probe, goes further and contains
  58. *   a full FFT, allowing complete spectra to be displayed.
  59. .FOUR 1MEG V(5)
  60.  
  61. * This command does a Monte Carlo analysis of the circuit.  It runs
  62. *   the DC sweep 5 times using the tolerances in .MODEL statements
  63. *   and compares the waveform V(4,5) from each run against the nominal
  64. *   V(4,5).  It then lists a table of each run's deviation from the 
  65. *   nominal.  The Monte Carlo option can also do Worst Case and Sensitivity
  66. *   analysis.
  67. .MC 5 DC V(4,5) YMAX
  68.  
  69. * PSpice allows parameters to be defined and used in expressions
  70. *   throughout the circuit file.  Parameters may also be passed into
  71. *   subcircuits as arguments and used inside.  Here, we define a
  72. *   fudge factor for the supply voltages.
  73. .PARAM FACTOR=1.2
  74.  
  75. * The following statements describe the circuit to PSpice.  It is a
  76. *   simple differential pair, with +12 and -12 volts as the supplies.
  77.  
  78. * VIN is the input for this circuit.  It has an amplitude during AC analysis
  79. *   of 1 volt and a sine waveform during transient of .1 volt at 5 megahertz.
  80. VIN 100 0 AC 1 SIN(0 0.1 1MEG)
  81.  
  82. * The power supplies are + and - SUPPLY volts.  As mentioned above,
  83. *   expressions containing parameters can be used for values throughout
  84. *   the circuit file.  Expressions are enclosed by "{" and "}" and allow
  85. *   arithmetic expressions.
  86. VCC 101 0 DC {10*FACTOR}
  87. VEE 102 0 {-10*FACTOR}
  88.  
  89. * The transistors' nodes are in the order collector - base - emitter.
  90. *   All transistors must refer to a model (QNL in this case).
  91. Q1 4 2 6 QNL
  92. Q2 5 3 6 QNL
  93.  
  94. * Models for resistors are optional.  If used they can specify such things
  95. *   as scaling, temperature coefficients, and tolerances.
  96. RS1 100 2 1K 
  97. RS2 3 0 1K
  98. RC1 4 101 CRES 10K
  99. RC2 5 101 CRES 10K
  100. Q3 6 7 102 QNL
  101. Q4 7 7 102 QNL
  102. RBIAS 7 101 20K
  103. CLOAD 4 5 5PF
  104.  
  105. * This statement describes the CRES resistor by giving the values for
  106. *   the parameters.  Each type of model has its own set of parameters.
  107. *   All parameters have default values.  In CRES we have set the scaling
  108. *   factor to 1, the linear temperature coefficient to .02, and the
  109. *   quadratic temperature coefficient to .0045, and given each resistor
  110. *   a 5% tolerance on its value during Monte Carlo analysis.
  111. .model CRES res (
  112. +    R=1 DEV 5%    TC1=.02
  113. +    TC2=.0045
  114. +    )
  115. * The bipolar transistor model is the Gummel-Poon model.  It uses the
  116. *   same equations as in the UC Berkeley Spice program.  There are
  117. *   actually 55 model parameters, but most of these are for second-order
  118. *   effects that are rarely used.  Most bipolar models for realistic
  119. *   circuits specify between 12 and 25 parameters and default the rest.
  120. *   Here, we have set the forward beta to 80, the base resistance to
  121. *   100 ohms, the collector-substrate capacitance to 2 picofarads, the
  122. *   forward transit time to 0.3 nanoseconds, the reverse transit time to
  123. *   6 nanoseconds, the base-emitter capacitance to 3 picofarads, the
  124. *   base-collector capacitance to 2 picofarads, and the forward Early
  125. *   voltage to 50 volts.  The capacitances are actually voltage dependent.
  126. *   These numbers are the zero-bias values.
  127. .model QNL npn (
  128. +    BF=80    RB=100
  129. +    CCS=2PF    TF=0.3NS
  130. +    TR=6NS    CJE=3PF
  131. +    CJC=2PF    VA=50
  132. +    )
  133. * The Analog Behavioral Modeling option allows one to define a transfer
  134. *   function by formula and/or by table.  Here, we implement an ideal
  135. *   comparator to convert the differential output across nodes 4 and 5 into
  136. *   a TTL output on node 'comp_out'.  The voltage across 4 and 5 is
  137. *   multiplied by 1e3 and that value is looked up in the table.  The
  138. *   table has an output of 0v for inputs < -5, 5v for inputs > 5,
  139. *   and output=input in between. So, the comparator has a gain of 1,000 
  140. *   and saturates at 0v and 5v.
  141. * Although not shown here, one can also define linear transfer functions
  142. *   by Laplace transform formulas or by frequency response tables.
  143. E1    10 0    TABLE {V(4,5)*1e3}    (-5v,0v 5v,5v)
  144. RE1    10 comp_out    200     ; Output series resistance
  145. CCOMP   comp_out   0    20pf    ; Output load capacitance
  146.  
  147. * Power supply for digital circuits.  We use the library digital power
  148. * supply subcircuit.
  149. XDIGPWR  0 DPWR 0   DIGIFPWR   PARAMS: VOLTAGE = 5V
  150.  
  151. * The Digital Simulation option simulates digital components.  Instead
  152. *   of voltages and waveforms, it calculates 1's and 0's and propogation
  153. *   delays.  PSpice automatically creates interface components between
  154. *   analog and digital sections or circuitry.  Here, we drive a 74393,
  155. *   4-bit, ripple counter from the output of the comparator (XCOMP or RE1).
  156. X1  comp_out 110 QA QB QC QD DPWR 0 74393
  157.  
  158. * This is a digital stimulus which resets the counter
  159. U2 stim(1,1) DPWR 0     ; digital power supplies
  160. +    110 
  161. +    IO_STM  ; use the library digital IO model for a stimulus device
  162. +    0NS    1
  163. +    40NS    0
  164.  
  165. * These commands provide print and plot output for selected voltages
  166. *   and currents.  The plots are the so-called "line printer" plots.
  167. *   That is, plots made out of characters.  To get real, high-resolution
  168. *   plots you need to use Probe; it is invoked by the .PROBE command.
  169. .PRINT DC V(4) V(5)
  170. .PLOT DC IC(Q2) 
  171. .PLOT AC VCM(Q2) VCP(Q2)
  172. .PLOT NOISE INOISE ONOISE 
  173. .PLOT TRAN V(4,5) V([comp_out])    D(QA) D(QB)
  174. * This .PROBE statement will save all analog and digital voltage and current
  175. * values for use by Probe.
  176. .PROBE
  177.  
  178. .LIB eval.lib   ; Read models from the library
  179.  
  180. .END
  181.