Intusoft logo

 


Intusoft Newsletter Issue #41, April 1995
Copyright ©2002 Intusoft, All Rights Reserved

In This Issue  
1 New Products at DAC 4 Mac Users Abandoned
2 Simulating Digital Filters and Systems 5 New MP SPICE
3 Mixed Environment Simulations 6 Current Mode Design with Current Conveyers


New Products At DAC

At this year’s Design Automation Conference, Intusoft will introduce and demonstrate several new products including:

The Array Processing Code Model Library, APCML, provides a variety of new array processing functions for use with the ISSPICE4 simulator. Many of these functions have never been available in SPICE before. The APCML also provides a generalized OLE 2.0 interface for users to add their own OLE 2.0 in- process servers.

 

BACK TO THE TOP


Simulating Digital Filters

ISSPICE4 supports digital circuits using an embedded event driven simulator. This capability is fully integrated with the analog transient analysis enabling any mixed mode system to be described by a single schematic design. No cumbersome co-simulation backplane is needed. In addition, the event driven simulator uses a general purpose algorithm that is not limited to digital elements. Both non-digital signals and models created with C code subroutines can be simulated. The Intusoft Code Modeling Kit (CMSDK) allows you to create your own alternate signal types and models. The “User Defined Signal” allows models to pass arbitrary data structures without the need for conversion to a pre-defined signal type (analog, digital, etc.). Digital simulation in ISSPICE4 is actually implemented as a special case of this user-defined signal capability where the digital state is defined by a data structure that holds a logic state and strength value.

The combination of the user-defined signal, C code model, and the event-based simulation capabilities allow ISSPICE4 to support mixed-level, as well as mixed-signal simulation. This new approach to modeling and simulation is the foundation of the sampled-data system models included with ISSPICE4. They also give a small indication of the power of the CMSDK. This article discusses the use of these new models in two digital filtering applications.

The digital approach to filtering offers several advantages over analog implementations. These include stable and repeatable performance, greater programmability, and filtering at ultra-low frequencies not practical for analog methods. The theory behind various digital filter design techniques is covered in several references [1-3]. Here, we will concentrate on the ISSPICE4 implementation.

Constructing Sample Data Systems

Continuous time signals can be represented by Laplace transforms or linear differential equations. In a similar manner, the z transform can be used to describe a sampled-data system in the form of linear difference equations. To realize difference equations using z transforms three basic elements (Figure 2) are needed: delays, multipliers, and summers. The multiplier and delay elements operate using real-valued
data that only changes when an event occurs. This “real” signal is not “analog” because it only changes at certain times and it s not “digital” because it has a floating point value. Use of this methodology minimizes the amount of calculations that must be made; greatly improving performance. The z-1 element delays its input by T seconds. T is the sampling period set by the digital clock signal. The representation used for a sampled delay arises from the fact that the z transform of x(n-1) is simply z-1 times the z transform of x(n). The z transform delay can also be built with an ideal transmission line [4]. This approach is efficient for designs using less than 5-10 delay elements. For SPICE 2 based programs, however, the transmission line can use excessive amounts of memory and run slowly. Fortunately, these transmission line problems have been fixed in ISSPICE4.

When ISSPICE4 simulates digital gates, the highest logic level and strength determine the status of a node when two or more outputs are connected. For real nodes, a “resolving” function in ISSPICE4 causes the outputs of all real elements to be summed. Therefore, the summing operation is performed automatically by simply connecting two or more outputs together. “Node Bridges” are used to connect nodes of different types. For example, the input analog signal is sampled by the analog-to-real bridge. A digital clock running at the sampling period is used to sample the data and clock the delay elements. Note that C code models can have one or more ports with different node types. Hence, a bridge is not needed for the delay’s clock input because a digital signal is expected. The filter output is
converted to an analog signal using a real-to-analog bridge. The multiplier, delay, and bridge elements are C code models created by Intusoft with the CMSDK. A new analog-to-real model was developed to support this work. The Windows DLL containing this new A-R model is posted on CompuServe and Internet. Those wishing to use the new model may download the DLL for FREE. This represents a good example of how easy it is to add new models to ISSPICE4. The DLL approach contrasts the update path used by other vendors which can take months and require major software updates.

IIR Low-Pass Filters

Figure 2, and the figure below, describe a second order IIR low-pass filter. The starting point in the design process begins with
the continuous transfer function in the Laplace domain:

Using the trapezoidal rule, the Laplacian operator, s, may be replaced by

and the continuous transfer function may be transformed to the discontinuous, canonical one:

Setting the damping coefficient to d=0.25, the cutoff frequency to wo/2þ=1 kHz, and the sampling period to T=100 µs, one obtains the transfer function:


Both the impulse and step response of this system are derived in [4] and are confirmed with the ISSPICE4 simulation shown in Figure 3. Note the transmission line based delay and Laplace expressions can both be used in the AC and transient analy- ses, whereas the event driven model only works in the time domain.

FIR Filter Performs Signal Averaging [4]

An application for FIR filters is the enhancement of signals buried in noise. When signal and noise are covering different bands of frequency, separation with conventional recursive filters is possible. However, when both spectral ranges are overlapping, selection has to be made by other methods.

Generally, signals differ from noise by their periodic behavior and their inherent redundancy. Noise, on the other hand, is random and stochastic. As an example, one should imagine a noisy television test image travelling from a transmitter to a receiver over great distances. Increasing the gain doesn’t enhance quality because the signal and noise are both emphasized, leaving the signal-to-noise ratio unchanged. Yet, when the video image is exposed to the light sensitive film of a camera for a fairly long period of time, a significant improvement in quality may be observed. The quality is further improved with the time of the exposure.

The bright and dark parts of a video image that form the test pattern appear at the same position on the film, exposing it more intensively than the noise with every new picture. This process is called signal averaging and leads to an improvement in the signal-to-noise ratio that is proportional to the square root of the number of repetitions. However, this process is only valid if the information content during the integration period isn’t subjected to considerable changes. The transfer rate and integration period are antagonists and have to be harmonized.

It is very important to know the period of the signal frequency which has to be detected in the noise. With a high number of repetitions, the averager becomes very narrow banded and the pass band has to be tuned accurately to the signal frequencies of interest. Waveforms of signals remain preserved because harmonics coincide with the comblike pass bands. Sidebands, noise and other frequencies, which are not at integer multiples of the signal frequency will be suppressed.

he circuit in Figure 4 demonstrates the enhancement of a signal buried in noise. A FIR filter with 9 sections and Dirichlet weighting is used. The input signal is created by adding an ISSPICE4 time domain noise generator, with 500mv RMS noise signal, to a 1Vp-p sine wave. The sampling period, T, is exactly tuned to the known period of the signal (1 Hz). Therefore, all the sine waves appearing at the taps are equal in phase and summed up linearly with the number of sections. Random variations, on the other hand, are alternately positive or negative, thus growing only with square root of the number of summations. The summation occurs by connecting the output
of each delay element together. Figure 5 shows the results. While this simulation could be performed with analog elements, the event driven algorithm (68.96s) is 50% faster than the standard SPICE matrix solution algorithm (103.43s).

The ability to mix digital elements like state machines, sampled-data elements like FIR and IIR filters, and analog circuitry is unique to Intusoft’s implementation of SPICE. It offers superior capability over dedicated DSP software and other competitive products which are limited in their ability to mix signal domains.

References
[1] “Electronic Filter Design Handbook”, A. Williams, McGraw-Hill, 1981, Chapter 11

[2] “Digital Filters: Analysis and Design”, A. Antoniou, McGraw-Hill, 1979

[3] “Digital Signal Processing”, A. Oppenheim, R. Schafer, Prentice-Hall, 1975

[4] “A SPICE Cookbook”, K. Muller, Intusoft, 1991

BACK TO THE TOP


Mac Users... Feeling Abandoned?

Has your software company recently abandoned you? Well if you’re a PSpice©; customer you’re now alone. Microsim™ has officially decided to stop selling Macintosh software. Its clear they have decided that other areas of EDA are more important than Macintosh support. As if there weren’t enough reasons to switch to Intusoft, Microsim has made the decision for you. Intusoft welcomes you.
To make your transition easier Intusoft has put together a special offer. For current owners of PSpice for the Macintosh* you can take advantage of a 20% discount when you order an ICAP package for the Macintosh. But don’t wait too long. This offer is valid only for a limited time (until August 4, 1995).
All ICAP systems come with integrated schematic entry. So if you are tired of entering netlists you have another reason to make the switch. Intusoft also offers compatibility with PSpice specific syntax. Generally, models and circuits may be run as is. Most non-standard PSpice statements have an equivalent representation in ISSPICE4. In any case, Intusoft offers FREE PSpice model translation and assistance on adapting your existing circuit simulations.
Table 1, Summary of Intusoft Macintosh Software Options

 Software

 Computer

 SPICE
 Current Price  New Price
(as of 8/4/95)
 ISSPICE1.5MNC  All Macs/Power Mac  2G.6  $95  $95
 ISSPICE3  All Macs/Power Mac  3F.2  $795  $990
 ICAP/4M  All Macintoshs  3F.2  $1750  $2240
 ICAP/4PM  Power Mac only  3F.2  $1750  $2240
 ICAP/4Macintosh  All Macintoshs  3F.2  $2595  $3300
No Coprocessor versions of ICAP/4M are available.
You can be confident that Intusoft will continue to support ALL Macintosh platforms, now and in the future, including the
powerful Power Macintosh. Intusoft is still the ONLY SPICE vendor supporting the entire Macintosh line of computers.
While other vendors have dropped support Intusoft has added a variety of products. Table 1 will help you in choosing the
version that’s just right for you.
The recommended version for Macintosh computers with a coprocessor is ICAP/4Macintosh. ICAP/4Macintosh is the most advanced version of SPICE available today. The difference between ICAP/4M and ICAP/4Macintosh is that ICAP/4Macintosh has special interactive features (interactive parameter sweeping, superior real time waveform display), more SPICE models (5000 vs. 3000), and waveform cross-probing directly on the schematic. The native code Power Macintosh version of ICAP/4M, called ICAP/4PM, is also
available right now. A native code version of ICAP/4Macintosh will be available at a later date and you will be able to update for
the price difference. Native code means that the software is compiled only for the Power Macintosh. The recommended version for Macintosh computers without a coprocessor (PowerBook/LC) is the no coprocessor version of ICAP/4M.
Prices and Limited Time Offer
Due to added support and development costs associated with the Macintosh and Power Macintosh line of computers, the
price of Macintosh products will be going up August 4, 1995. So now is the time to purchase simulation tools and support that will
last you for years to come.

*Offer does not extend to evaluation, student, or demo versions. Other competitive products of equal or greater value may also qualify. Contact Intusoft or your local dealer for more information. Product serial # and a photocopy of distribution disk #1 must accompany order. Offer good until 8/4/95.

Microsim is a trademark and PSpice is a registered trademark of Microsim Corp.

BACK TO THE TOP


New Multi-Processor SPICE

At DAC Intusoft will unveil a new multithreaded, multiprocessor version of ISSPICE4 running under Windows NT. The main portions of the Newton-Raphson algorithm, namely, the model evaluation and load, and sparse-matrix solution have been parallelized in this new version of ISSPICE4. This allows the SPICE simulation speed to nearly double simply by adding another processor.

The simulator starts by partitioning the circuit in a binary tree structure. The depth of the tree can be selected based on the number of available processors. The circuit is partitioned based on our proprietary iterative mincut heuristic algorithm.

There are three basic analysis types in SPICE: AC, DC, and transient. AC analysis is the easiest to parallelize since the solution at each frequency is independent. By contrast DC and transient analyses are iterative processes repeatedly performing the following steps until convergence is achieved:

LOAD: In this step the device model equations are evaluated and the circuit jacobian matrix is updated to setup a non-symmetric sparse system of linear equations.

SOLVE: In this step the equations from the previous step are solved using a sparse LU decomposition followed by forward
and backward substitution.

It is not unusual for the above steps to take up to 90% of the total simulation time. Intusoft has developed a proprietary algorithm that parallelizes the execution of these two steps at each iteration resulting in a significant (linear) decrease in the simulation time.

Each Newton-Raphson iteration is divided into tasks which are executed serially or concurrently. Those tasks that are performed serially are said to be in a single thread phase and the ones that are executed concurrently are said to be in a multithread phase. In a multiprocessor environment, each process in a multithread phase can be dynamically assigned to a processor by the operating system (in this case Windows NT). The operating system also provides the necessary event flags used for the synchroni- zation between processes. The LOAD and SOLVE steps at each iteration are executed in a multithread phase. In addition, at each iteration entire subcircuits resulting from the circuit partitioning) can be declared latent. Such subcircuits do not have to be processed for subsequent iterations until the latency criteria is no longer satisfied. This means that even in a single thread environ- ment (Windows 95) our implementation will identify these latent subcircuits and save a significant amount of LOAD time per iteration.


BACK TO THE TOP


Current Mode Design Techniques

Current mode design techniques are not new, but the development of high performance complementary bipolar processes with excellent matching properties has allowed current mode principles to be fully exploited. The emergence of monolithic devices has led to a renewed awakening of the benefits of current mode design and produced a wealth of circuits with broadband properties [1].

The current conveyor (CC) was first introduced by Smith and Sedra [2, 3] and has proven to be a versatile analog building block. It can perform many familiar signal processing functions with new levels of performance for detector, converter, rectifier, filter and amplifier designs.

The basic structure (Figure 7) of a CC is simply a voltage-mode op-amp with output current-mirrors. The CC comprises a low impedance current-input/voltage-output (X), a high impedance voltage input (Y) and current output (Z). The port relationships of the conveyor are: Vx=Vy, Iy³0 and Iz=Ix. The CC has precise unity current gain between X and Z, rather than the poorly defined high open-loop gain of the voltage op-amp. The advantage is that the closed-loop gain-bandwidth conflict of negative feedback voltage-mode op-amp circuits is avoided.

CC circuits can also be implemented using off-the-shelf voltage-mode op-amps in a variety of configurations [1, 4, 5]. High precision is obtained using a floating structure, while wide bandwidths and high slew rate are obtained using supply current sensing techniques. With this technique you could indeed build a cheap CC using a µa741 up to its nominal unity gain bandwidth! Examination of the architecture of a current-feedback op-amp (Figure 7) reveals that the basic CC structure is used internally. In implementing a current-feedback op-amp, hardware vendors have disguised the CC in favor of a topology more familiar to voltage-mode op-amp users. Only recently has the CC appeared independently in a monolithic device making it truly useful in many designs. [10, 11]

30MegHz Full-Wave Precision Rectifier

Rectification of low-level signals is an important aspect of signal processing. The traditional approach using diodes and op-amps can encounter distortion during the zero-crossing due to the op-amp’s finite small-signal dV/dt behavior. This fact limits high frequency operation. Various schemes have been reported using the CC configured as a differential V-to-I converter followed by pre-biased diode rectification to produce significant performance improvements [6, 7, 8]. Applying a bias to the bridge aids performance by reducing the maximum dynamic impedance of the bridge at crossover.

Figure 8 shows a precision full-wave rectifier using 2 CCs. The CC is modeled using the élantec 2082 current mode multiplier macromodel [11]. Another alternative would be to use a current-feedback op-amp macromodel, such as the 2260, without the output stage, since the core of a current-feedback op-amp is a CC. All of the new models in the élantec data book are compatible with ISSPICE4 and are included on the newsletter floppy disk for subscribers.

The ISSPICE4 simulator allows you to easily sweep circuit and model values. In this case, after setting up the rectifier circuit, VBIAS was interactively swept to find its effect. Figure 8 shows waveforms from two VBIAS settings, 0V and 0.3V, at a frequency of 4MegHz. The results show excellent correlation with measured data [3, 4]. Different models and key device parameters were also explored with simulations at 30MegHz revealing strong diode related sensitivities. It was found that Schottky diodes with low CJO and recovery time (i.e. BAT85, BAT81, HP2817, HP2202, and HP2280) work best. Although Schottky diodes offer the best speed advantages diode-
connected complementary transistors (like the EN2016/EP2015) can offer a cheaper alternative, especially in a monolithic implementation.

The current conveyor is new to the marketplace so many applications have not been explored. In future newsletter articles we will investigate other current mode designs and how interactive simulation can help you tackle them.


References

[1]C. Toumazou and G. A. S. Machado, course notes, IV EBMicro Intensive Short Course on High Frequency Analog Circuit Design for Communication Systems, Proceedings of the IV Brazilian Microelectronics School, Recife 1/15-20/1995.
[2]K.C. Smith, A. Sedra, “The current conveyor: a new circuit building block”, Proc. IEEE, 1968
[3]K.C. Smith, A. Sedra, “A second generation current conveyor and its applications”, IEEE Trans. on CT, Vol CT-17, pp 132-134, Feb 1970.
[4]C. Toumazou, F.J. Lidgey, A. Payne, “Emerging Techniques for high frequency BJT amplifier design: a current mode perspective”, 1994 Int.Conf. on Elec. C&S, Cairo Egypt
[5]C. Toumazou, F.J. Lidgey, D.G. Haigh (eds), “Analog IC Design: the current mode approach”, Peter Peregrinus/IEE London 1990.
[6]C. Toumazou, F.J. Lidgey, S. Chattong, “High frequency current conveyor precision full-wave rectifier”, Electronic Letters, Vol. 30 #10, 5/12/94
[7]B. Wilson and V. Mannama, “Current-mode rectifier with improved precision”, Electronic Letters, Vol. 31 No. 14, Feb. 16, 1995
[8]K. Hayatleh, S. Porta and F. J. Lidgey, “Temperature-independent current conveyor precision rectifier”, Electronics Letters, Vol 30 #25 12/94.
[9]R. W. J. Barker and B. L. Hart, “Versatile precision full-wave rectifier”, Electronics Letters, Vol 13 pp 143-144, 1977.
[10]“CCII01 current conveyor data sheet”, LTP Electronics Ltd, 27 Park End Street, Oxford, OX1 1HU, UK tel/fax 44 (0)1865 200 767
[11]élantec Data Book 1996, Tarob Court, Milpitas, CA 95035, USA

Author’s Note: The author wishes to thank Gerson Machado for his invaluable efforts in this and other newsletter articles.

BACK TO THE TOP


“Mixed-Environment” Simulations

It is clear that the functionality provided transitions ISSPICE4 from a circuit simulator into a mixed environment (hardware/software) simulator capable of tackling system level designs that other simulators can’t.

Schematically, the APCML objects connect like any other electronic device. Input and output objects convert between
real world hardware, or data stored in files, with either traditional SPICE elements or high level algorithms. For example, you will
be able to stimulate your design with sound from a file, or microphone, as shown in Figure 1. The sound can then be compressed and processed by traditional analog or digital circuitry, or by an algorithm such as an FFT or wavelet transform. Using the interactive capability of ISSPICE4 you will be able to study both electronic and algorithmic variations. In Figure 1 the compression ratio is swept to hear how the output sound changes. Note that part of the compressed data stream is simulated with traditional SPICE simulation algorithms. It is then recombined before output to the speaker. Connection to the underlying analog simulator allows the user to push down into the details of a design hierarchy in order to compare the detailed implementation with a more abstract system view.

The APCML provides source code and OLE 2.0 in-process server DLL’s for a number of functions (Figure 6). Each of the
APCML objects can have methods needed by other applications. For example, you could add an interface to render a pictorial or graphical view for a schematic capture application. Intusoft will add some of these interfaces in the forthcoming release of an OLE2 compatible ICAP/4 system. The interconnection between ISSPICE4 and the OLE 2.0 objects are provided by the APCML DLL. You can add your own array objects by using a C++ compiler capable of building OLE 2.0 32 bit in-process server DLL’s. The source code for the servers, included with the APCML, is provided so that you can develop your own servers. Most array processing extensions can be made using the APCML, however, the CMSDK is required to extend the functionality of APCML DLL. It should be noted that
the APCML object were created with the CMSDK.

 Wavelet Transforms:

Transform, Inverse, Compression to sparse, Compressed inverse from sparse

Variable Radix FFTs:

FFT (complex), Inverse FFT, FFT (time to frequency)...

Matrix Math - non-sparse:

Add, subtract, multiply, solve

Input:

Sound input from .WAV file or microphone, Image input from a TIFF file

Output:

Sound output to speaker and a .WAV file, Image output to a TIFF file

Figure 6, The list of new models in the Array Processing Library. Schematic symbols allow each function to be graphically interconnected.

New HDL Development Kit Released

The Code Model Software Development Kit, or CMSDK, allows you to develop analog and mixed signal HDL models using C
code subroutines. The Intusoft HDL differs from competitive offerings which are proprietary and only work with UNIX based
simulators. With the kit you can greatly expand the functionality of ISSPICE4 by adding your own models and functions.

What’s Included in the CMSDK and Special Pricing

The CMSDK consists of a compiler and other tools, code model examples and source, include files, and documentation on how
to create HDL models. The toolkit is supported under Microsoft Visual C++ 1.1 or 2.x under Windows NT or Windows95. While
models must be developed under NT or Windows95, they can be used with ISSPICE4 under any Windows (3.1x) version.
The limited time offer originally due to end April 15 has been extended to June 15, 1995. The price of the CMSDK is $2500.
After 6/15/95 the list price will be $3500.

BACK TO THE TOP


Copyright ©2002 Intusoft, All Rights Reserved