A Digital Differential Analyzer (DDA), also sometimes called a Digital Integrating Computer[1], is a digital implementation of a Differential Analyzer. The differential analyser was a mechanical Analog computer designed to solve Differential equations by integration, using wheel-and-disc mechanisms to perform The integrators in a DDA are implemented as accumulators, with the numeric result converted back to a pulse rate by the overflow of the accumulator. An integrator is a device to perform the mathematical operation known as integration, a fundamental operation in Calculus. In a Computer 's central processing unit ( CPU) an accumulator is a register in which intermediate arithmetic and logic results are stored
The primary advantages of a DDA over the conventional analog Differential Analyzer are greater precision of the results and the lack of drift/noise/slip/lash in the calculations. The precision of a value describes the number of digits that are used to express that value The precision is only limited by register size and the resulting accumulated rounding/truncation errors of repeated addition. Digital electronics inherently lacks the temperature sensitive drift and noise level issues of analog electronics and the slippage and "lash" issues of mechanical analog systems. In Telecommunication, a drift is a comparatively long-term change in an attribute value or operational parameter of a System or equipment In Telecommunication, noise level is the Noise power, usually relative to a reference Slippage is any undesired movement Slippage can also refer to Slippage (book, the short story collection by Harlan Ellison. In Mechanical engineering, backlash, sometimes called lash or play, is clearance between mating components sometimes described as the amount of lost
For problems that can be expressed as differential equations, a DDA can solve them much faster than a general purpose computer (using similar technology). A differential equation is a mathematical Equation for an unknown function of one or several variables that relates the values of the A computer is a Machine that manipulates data according to a list of instructions. However reprogramming a DDA to solve a different problem (or fix a bug) is much harder than reprogramming a general purpose computer. Many DDAs were hardwired for one problem only and could not be reprogrammed without redesigning them.
Contents |
One of the inspirations for ENIAC was the mechanical analog Bush Differential Analyzer. ENIAC, short for Electronic Numerical Integrator And Computer, was the first general-purpose electronic Computer. It influenced both the architecture and programming method chosen. However, although ENIAC as originally configured, could have been programmed as a DDA[2], there is no evidence that it ever actually was. The theory of DDAs was not developed until 1949, one year after ENIAC had been reconfigured as a stored program computer.
The first DDA built was the Magnetic Drum Digital Differential Analyzer of 1950. The Magnetic Drum Digital Differential Analyzer (MADDIDA was a computer built by Northrop Aircraft Corporation in 1950
The basic DDA integrator, shown in the figure, implements numerical rectangular integration via the following equations.


Where Δx causes y to be added to (or subtracted from) S, Δy causes y to be incremented (or decremented), and ΔS is caused by an overflow (or underflow) of the S accumulator. Both registers and the three Δ signals are signed values. Initial conditions for the problem can be loaded into both y and S prior to beginning integration. In Mathematics, in the field of Differential equations an initial value problem is an Ordinary differential equation together with specified value called
This produces an integrator approximating the following equation.

Where K is a scaling constant determined by the precision (size) of the registers as follows.

Where radix is the numeric base used (typically 2) in the registers and n is the number of places in the registers.
If Δy is eliminated, making y a constant, then the DDA integrator reduces to a device called a rate multiplier, where the pulse rate ΔS is proportional to the product of y and Δx by the following equation.
There are two sources of error that limit the accuracy of DDAs[3]:
Both of these error sources are cumulative, due to the repeated addition nature of DDAs. Therefore longer problem time results in larger inaccuracy of the resulting solution.
The effect of rounding/truncation errors can be reduced by using larger registers. However, as this reduces the scaling constant K, it also increases problem time and therefore may not significantly improve accuracy and in real time DDA based systems may be unacceptable.
The effect of approximation errors can be reduced by using a more accurate numerical integration algorithm than rectangular integration (e. g. , trapezoidal integration) in the DDA integrators.