Monday, April 27, 2015

The Nachbaur Diode Limiter, Part 2: Selecting the resistors

This post is part two in a series of three.
Part one discussed the basics.
Part three discusses some other variations on the circuit.

It's not difficult to determine the resistances to use in the Nachbaur diode limiter circuit, starting with an arbitrary set of input voltages for each knee point in the curve, as long as the constraints discussed in part one are met.  The following spreadsheet (on Google Sheets) will perform the calculation: Nachbaur Limiter Calculator (voltage input)

If you select output voltages that don't meet the constraints mentioned in part one, you will get errors or odd outputs like negative-valued resistors.  You can save a copy of this sheet to your own Google Drive to edit.

Instead of using some arbitrary voltages, I wanted to fit a smooth curve with a fairly simple definition to the transfer function, and use that to set the voltages.  Mostly, I wanted to select:
  1. The input voltage corresponding to the last knee in the curve.
  2. The number of diodes in the ladder.
  3. The final gain (or limiting ratio).
A few notes on the math that comes out of this:
  • It's much easier to fit a curve to the inverse of the transfer function, since the diode voltage drops constrain the output voltage to known values.  This avoids having to derive inverse functions to perform the resistor selection.  Thus, this is the approach I took.
  • You can fit a parabola, Vin(v) = av² + bv + c, or a cubic function Vin(v) = av³ + bv² + cv + d, several different ways, but for a parabola, the final gain cannot be selected; for either polynomial, the curve meeting all the requirements is not guaranteed to be monotonic.  If you consider the first diode's part of the curve to be linear, you also have to constrain the slope of the polynomial at that point.
  • You can fit a simple power law curve Vin(v) = a (bv)p to the points.  In order for the ratio to increase, it requires p > 1.  You also can't constrain the slope at the end.    (If you choose the slope at the end, you can't constrain the input voltage at the final knee).
I also tried some experiments with combinations of linear and exponential/hyperbolic functions, but the curves tended to be too "hard", with impractically large resistance values at one end of the ladder,
and very small on the other.

The curve I ended up choosing as the "best" is a combination of a linear term and a power law scaled to fit.  The power law is then easily shaped by exponent (to get the right final ratio).  It's also guaranteed to be positive, monotonically increasing, and with a first derivative (limiter ratio) increasing from zero (as long as the exponent is greater than one), which is important for its smoothness when connected piecewise to Vin(v) = v (which describes the behavior before the first diode turns on).

The following spreadsheet will perform the calculation:  Nachbaur Limiter Calculator (power+linear)

Fitting a continuous function was not really necessary though, since we're approximating the diodes' behavior (diodes turn fully on at once, and have a fixed voltage drop) and we're only calculating the inverse transfer function at integer multiples of a diode forward voltage drop anyway.  I came up with this discrete option: If d represents a diode voltage drop, and p represents the final limiter ratio, we can calculate the increase in required input voltage at step N as d pi/N. The input voltage after step then is the sum:
...which doesn't seem so bad, until you try to solve for p, so that you can choose the final knee voltage.  In that case, the solution requires the Lambert W function, which spreadsheets don't seem to have and cannot be expressed in terms of elementary functions.  I guess you could just tinker with it until it works, or use your spreadsheet's goal seek function.

This spreadsheet will perform the calculation: Nachbaur Limiter Calculator (exponential ratio increase)

Interestingly, it turns out that the combination of resistors generated by this version resembles Fred's original resistor choices most closely. Just set your final limiting ratio to 9 to match his.  Also, when we get to Part three, we'll see that there's a way to tailor this version to fit the required voltages and ratio, while solving some other practical issues at the same time.

Although all the mathematics were fun, it turns out that for my planned application, there is a practical problem to using this circuit with any combination of resistors: An implementation with many diode steps requires a higher input voltage swing than I can manage. For the last limiter step to do its job, the input signal needs to go well beyond the highest knee voltage.  Some other tweaks are necessary.   But, if you're doing a tube circuit that can manage the voltage swing, you can still use it as-is.

Next post: Other variations.

Sunday, April 19, 2015

The Nachbaur Diode Limiter, Part 1: Basics

This post is part one in a series of three.
Part two discusses transfer function shapes and resistor selection.
Part three discusses some other variations on the circuit.

As part of a forthcoming project I'm going to call The Phantom Clipper, I revisited the limiter circuit included in the late Fred Nachbaur's "Dogzilla" amplifier.

In Fred's description of the circuit, he says he selected the resistors in the circuit "using a combination of simulated and empirical experiments to arrive at a smooth and easily-managed limiting curve."

In order to make use of it in a much different circuit, I wanted to analyze it a bit more closely, and come up with an algorithm to easily select all the resistors based on the desired transfer function.

Here's just the limiter portion of his circuit (inside the red outline):

It's a clever little circuit that effectively functions as a voltage divider attenuator, and uses a stack of anti-parallel small-signal diodes to switch additional resistors into the attenuator, increasing the attenuation of the divider as the input signal increases:
  • Around 0 volts in, none of the diodes conduct, so no current flows through any of the resistors, and it's as if the divider circuit were not there.
  • As the input voltage increases to reach the forward voltage drop of one diode, D27 switches on to make a voltage divider with R72 on top and R71 on bottom.  Gain = R71 / ( R71 + R72 ).
  • The voltage at the node between R71 and it's adjacent diodes D26 & D27 gets clamped at the diodes' forward drop, so further increases in voltage are attenuated by a divider with R72 on top (still), but R70 & R71 in parallel on the bottom. Gain = R71∥R70 / ( R71∥R70 + R72).
  • This continues until the output voltage reaches the total voltage drop of 5 diodes in series (about 3.5V), where the circuit functions as a divider with all five resistors R67 - R71 in parallel on the bottom.
  • Since the diodes are in anti-parallel pairs, the transfer function is symmetrical for the negative voltages.
Here's a graph of the positive half of the transfer function (green), with the voltage at each diode shown in the other colors.  You can see how the slope of the curve (gain) reduces as each diode switches in. You'll also notice the "knees" in the graph are not hard transitions, but a gradual bend towards the new slope.


So the circuit requires the transfer function to have a few properties:
  1. The transfer function must be monotonic.
  2. For input voltages up to ± one diode voltage drop, about ±0.7 volts, VOUT=VIN (gain = 1).
  3. Parallel resistances mean gain can only decrease for higher input voltage (it can't be an expander).
  4. Knee points (where the gain transitions) must occur at multiples of diode drop for output voltage.
  5. The input voltage where the last stage switches on is not easily determined directly from component values, but only by iterating through each step.
I created a spreadsheet (using Google Sheets) to calculate the approximate transfer function at each of the knee points, based on the resistors. Here it is: Nachbaur Limiter Calculator (resistor input).  You can make a copy to your own Google Drive to edit.

Next post: Selecting the resistors based on the desired transfer function.