EE3300/EE5300 Electronics Applications Week 3 Self-Study Notes
Motivation
Suppose that you’re building a battery powered device that will perform some signal processing with op-amps. Your op-amp designs need dual power supplies (e.g.
You construct the circuit shown in Figure 1. The voltage divider (R1 and R2) sets the voltage midpoint, which is stabilised by C3. To ensure a low-impedance virtual ground, you set up the op-amp buffer U1. The power rails are decoupled by capacitors C1 and C2.
A “supply splitter” circuit in which an op-amp is used to create a virtual ground at the midpoint of a single power supply. This is an LTSpice schematic set up with a time-varying load that switches from open circuit (109 Ω) to 900 Ω after 20 μs.
Zoom:However, the circuit performance is terrible! The simulated output voltage is shown in Figure 2.
Simulation result from the circuit in Figure 1, generated by LTSpice and plotted in Matlab. The output voltage is AC coupled (i.e. the DC value of 4.5 V has been subtracted for clarity).
Zoom:Changing the load current by just 5 mA causes large oscillations in the ground voltage. The >100 mV swings in ground level will mess up the accuracy of your circuit. What happened? You did everything “right”: decoupling the power supplies, ensuring a stable reference voltage, and using an op-amp buffer so that the load current’s return path is isolated from the voltage divider R1-R2.
This is an example of a circuit with marginal stability. Our goal this week is to learn what stability means and what factors affect it. Ultimately the goal is to learn how to design circuits that avoid these kinds of problems.
When feedback goes wrong (an intuitive explanation)
Any circuit with feedback has the potential to oscillate. Let’s analyse the general block diagram of feedback and see how it can go wrong.
(a) The basic negative feedback loop. (b) The feedback network redrawn with the subtraction operation shown explicitly. Signal examples show the normal case. (c) Negative feedback can become positive feedback if the feedback signal adds constructively. The signal examples show how the feedback signal can add to the input, rather than subtracting from it.
Zoom:The standard negative feedback loop in Figure 3 (a) can be redrawn to make the negative sign more explicit, as shown in Figure 3 (b).
Starting at the top-left, the signal
However, consider what happens if the loop gain includes a phase shift.
Figure 3 (c)
shows the critical situation
where the feedback signal
Therefore, we must learn how to design electronics to avoid this kind of unstable feedback. In general, whenever you design a feedback loop, you must consider whether it can exhibit oscillatory behaviour. You must check for stability to make sure that your circuits won’t enter this unstable, run-away state.
The Barkhausen stability criterion
Recall that the transfer function of a closed-loop feedback system is
where
What happens if
We are therefore interested to know if there is a frequency
The Barkhausen criteria is a sufficient but not necessary condition for instability, i.e. if the system meets these criteria, then it is definitely unstable, but there are unstable systems that do not meet these criteria.
An important case arises when the loop gain is greater than 1 at the critical phase shift of -180°. If the system satisfies the minimum phase criteria (which electronic circuits generally do), then such a situation is unstable. The minimum phase criteria is that all poles and zeros of the system are in the left half of the complex plane. For non-minimum phase systems, you need more sophisticated methods such as the Nyquist criterion to analyse stability.
The Barkhausen criteria for minimum phase systems is as follows. The circuit is unstable if there exists a frequency
Show non-minimum phase system examples
Equations
Example 1
Suppose you have a system with an open-loop gain of 2 and phase shift of -180° at all frequencies (i.e.
This system is stable, despite the fact that there is a frequency at which the loop gain is greater than 1 at -180° phase shift.
Example 2
The system with open-loop gain
is unity-gain (
Try it! Here’s some Matlab code to experiment with.
s = tf('s'); % Define the Laplace variable
A = 100*(s+10)^2/s^3;
B = 1;
figure();
bodeplot(A*B);
grid on;
figure();
step(A/(1+A*B));
This is not a minimum phase system because of the poles at the origin.
How this relates to electronics
Recall that last week we learned how to analyse the loop gain of a feedback circuit. It turns out that stability will be controlled by the frequencies of the poles and zeros of the loop gain. These in turn are determined by the values of the resistors, capacitors, and inductors in the circuit. Hence, the general principle will be to analyse the circuit to find the loop gain, produce the Bode plot, and assess stability using the Barkhausen criterion.
Gain and phase margins
The gain margin and phase margin are criteria that measure how close a system comes to the edge of stability. These measures can be thought of as “safety margins.”
The gain and phase margins can be evaluated from Bode plots of the loop gain, as shown in Figure 4.
To find the gain margin, first locate the frequency where the phase shift is -180°. The system is stable if the gain at this frequency is less than 1. The gain margin is the amount by which the gain could rise before there is instability.
To find the phase margin, first locate the frequency where the gain is 0 dB. The system is stable if the phase shift at this frequency is smaller than -180° (i.e. closer to zero). The phase margin is the amount by which the phase could fall before there is instability.
Bode plots of loop gains for (a) a stable and (b) unstable system. The stable system can be recognised because the gain has fallen below 1 (= 0 dB) before the phase has reached -180°.
Zoom:We also define the gain crossover frequency
It is important to emphasise that these plots show the loop gain (
Figure 4 (a) shows a stable amplifier. The critical phase of -180° occurs when the gain has already fallen below 0 dB.
In contrast, Figure 4 (b) shows the loop gain of an unstable amplifier. The phase crosses -180° when the gain is still very high. Consequently, the system will oscillate.
Why unity-gain is the most problematic
Feedback is more of a problem when the loop gain is increased. Consider that increasing the loop gain will shift the magnitude plot upwards. If it shifted far enough, then the the 0 dB point will coincide with -180° and the system will be unstable.
In many practical situations, the open-loop transfer function
Let’s revisit the closed-loop transfer function:
In words, the closed-loop gain is approximately
Evaluating stability
The example below shows how stability can be analysed from first principles.
Example 1
Consider the three-stage circuit shown in Figure 5.
Assume each transistor is biased identically. Component values are
Is this amplifier stable? What happens if the gain is reduced by a factor of 50 or a factor of 150?
Simplified three-stage amplifier circuit. The capacitor
Solution
Recognise that the amplifier consists of three repeated common-source
amplifiers. Each stage has a voltage gain of
This system uses voltage-controlled voltage feedback (series-shunt feedback). Therefore, we find the loop gain by injecting a test voltage
and hence the loop gain is
To produce a sketch, we need to know the loop gain at DC.
Converting to dB,
The loop gain has three coincident poles at
A sketch of the Bode plot is shown in Figure 6. From this sketch we can see that the amplifier will be unstable (because the 180° phase occurs when the gain is well above 0 dB).
Rough sketch of the Bode plot of the loop gain for the three-stage system.
Zoom:In the next section, we explore what happens to this circuit when the gain is reduced.
The implications of the phase margin
The phase margin shows how much the amplifier tends to overshoot when facing a step change in input. In the language of control systems, a system with a low phase margin is underdamped.
Considering the three-stage amplifier circuit from Example 1, suppose that we adjust the feedback factor
In each case, we’ll achieve a different phase margin and consequently different settling behaviour. The results are shown in Figure 7.
Drag the slider below to adjust the feedback factor
The analysis plotted in Figure 7 is based on the transfer function that was derived in Example 1. It’s plotted using the Matlab bodeplot
and step
functions. Of course, the transfer function does involve some simplification, e.g. the bias network and coupling capacitors are not included and the summing network is idealised. Hence it is useful to carry out a detailed simulation of the circuit.
A Micro-cap circuit model is shown in Figure 8. The transistors are generic_N
devices with
Circuit model for the three-stage amplifier.
Zoom:The step response (where
Simulated step response of the three-stage amplifier with
Notice the similarity to the step response in Figure 7 when you select
Typical phase behaviour of op-amps
So far, we have learned that the loop gain must drop below 0 dB before the phase reaches -180°. However, this creates a tension for op-amp designers. Op-amps should have a very high open-loop gain but also they need to be able to handle many different circuit configurations, which may or may not introduce additional phase shift. How can we ensure that the op-amp is stable regardless of the circuit that it is placed in?
To address this challenge, general purpose op-amps use a technique called “compensation.” The op-amp designer deliberately introduces a pole at low frequencies so that the gain begins to roll off early. The intent is to sacrifice gain in order to ensure that the overall loop gain will reach 0 dB early enough to prevent oscillations.
Compensation is usually implemented by placing a capacitor on the signal path inside the op-amp. (Some op-amps have pins to allow external compensation capacitors too.) In integrated circuits, a large capacitance would take up an excessive amount of space, so the capacitor is usually placed across one of the gain stages so that it can be Miller multiplied. This is known as “Miller compensation.”
An indicative schematic of a Miller-compensated op-amp is shown in AoE Figure 4.100 (p. 283). Notice the compensation capacitor, internal to the op-amp. You might find it helpful to read the surrounding text to understand the situations where you might choose a “decompensated” op-amp.
The open-loop gain of a typical compensated op-amp is shown in Figure 10. There is one pole at low frequencies (e.g. perhaps 10 - 100 Hz). The op-amp designer ensures that higher frequency poles and zeros are pushed above the gain-bandwidth product so that they don’t affect stability.
A consequence of this low-frequency pole is that the op-amp has an open-loop phase shift across most of its operating bandwidth. In normal situations, the phase shift is corrected by the feedback mechanism, so you don’t see this phase shift in normal closed-loop operation. However, remember that stability is determined by the loop gain
Typical open-loop gain (
The rate of closure should be -20 dB/decade for stability
The rate of closure is the slope of the magnitude plot when it crosses the 0 dB axis. It provides a shortcut method to investigate the phase margin.
The rate of closure tells you how many poles occur at lower frequencies. The number of poles tells you how much phase shift has occurred. Therefore, the rate of closure is an indicator of stability.
Show why this is an approximation.
This is an approximation because the phase shift doesn’t happen all-at-once at the frequency of the pole or zero. The phase shift is spread out over approximately 2 decades on either side of the pole or zero. Therefore the rate of closure is most informative when the poles and zeros are well separated from each other and from the crossover frequency.
The various cases are illustrated in Table 1.
Number of poles before the crossover frequency | Rate of closure (slope at 0 dB crossover) | Phase shift at 0 dB crossover | Phase margin |
---|---|---|---|
1 | Good | ||
2 | Marginal (will show ringing) | ||
3 | Unstable (will oscillate uncontrollably) |
The effect of the rate of closure is illustrated in Figure 11. The figure shows the loop gain and step response for a system with one low-frequency pole (as is typical of an op-amp) plus a adjustable pole and zero introduced by the feedback network.
The controls allow you to adjust the frequency of a pole and zero that would be introduced by the design of the feedback network. By adjusting the controls, you should be able to notice:
- If you push the feedback network’s poles and zeros far to the right, they have negligible impact and the response is dominated by the op-amp’s own pole.
- If the rate of closure is too high, then the step response is oscillatory.
- The step response is very slow when there is a low-frequency zero.
- When the pole and zero are close together and not too far from the crossover frequency, the system has a fast response and minimal overshoot or ringing.
Bode plot and step response for systems with various pole and zero frequencies. The first pole
Design strategies to improve the phase margin
Reading task
The supply splitter circuit that we introduced at the top of this page comes from AoE Figure 4.73 (p. 263). The book includes measurements of the oscillations (complementing the simulation results that we plotted in Figure 2).
- Read the discussion about this circuit in the book.
- Read section 4.6.2 Capacitive loads (p. 264) and examine the suggested design remedies.
Adding a series resistor
The reading above introduced the idea of adding a series resistor to the output of an op-amp (e.g. AoE Figure 4.78 A). The impact of this resistor may seem slightly mysterious. It’s worth examining it in more detail.
Consider the simple case of a voltage follower as shown in Figure 12 (a). Notice the position of the feedback path.
(a) A voltage follower driving a capacitance load with included series resistance to improve phase margin. The inside of the op-amp is represented by its Thévenin equivalent circuit. (b) Test circuit for calculating the loop gain.
Zoom:To determine the loop gain, we cut the circuit at a convenient location (such as the feedback connection). The circuit uses voltage-controlled voltage feedback, so we introduce a test voltage as shown in Figure 12 (b).
Analysing the circuit,
where
Using voltage division,
Finally, the loop gain
Notice that this transfer function has a pole at
Bode plot of the loop gain showing the effect of the series resistor. Thanks to the zero, the rate-of-closure is reduced to -20 dB/decade, and the phase margin is improved. If the zero were missing, then the rate-of-closure would be -40 dB/decade (as shown by the red dashed line).
Zoom:The Bode plot allows you to determine the required size of the series resistor. Using specific numbers for the op-amp’s DC gain and dominant pole location, you can place the zero at a suitable frequency so that the rate of closure is improved to -20 dB/decade before the loop gain drops to 1.
Split feedback
The problem with the simple series resistor is that the resistor will affect the output voltage. The feedback network isn’t monitoring the DC output voltage.
A solution is to introduce a split feedback network in which the DC feedback comes from the actual output voltage while high frequency feedback comes from the op-amp’s output. This can be achieved using a capacitor as shown in AoE Figure 4.78 B (p. 264).
We will investigate this design in the tutorial.
Oscillators
An oscillator is a circuit designed to produce a periodic waveform, for example, a sine wave or a square wave. Often the design goal is to produce a circuit that oscillates at a single specific frequency. Other times, the requirement may be to have an adjustable frequency. The output should be free from distortions and track the desired shape, e.g. a sine wave or a square wave.
Relaxation oscillators
A relaxation oscillator uses the
A simple example of a relaxation oscillator using a comparator is shown in AoE Figure 7.1 (p. 426). Spend some time studying this circuit. Make sure you understand:
- Which resistor and capacitor determine the frequency of oscillation?
- How the reference voltage adjusts depending on whether the output voltage is high or low.
- Why you would prefer to use a comparator instead of an op-amp for this circuit? (Hint: comparators don’t typically have internal compensation capacitors; so think about what this means in terms of circuit behaviour).
- What is the mechanism behind the “speed up” capacitors mentioned in the book? How do they help?
Hint: if any of these questions are not clear to you, then you should ask the questions in the workshop classes.
The 555 timer
The 555 timer is a famous integrated circuit that serves as a versatile oscillator.
Some typical 555 circuits are described in AoE section 7.1.3 (p. 428). Skim through this section. It’s helpful to know about these circuits so that they come to your mind if you need to a simple oscillator.
Phase shift oscillators
A phase shift oscillator uses an
A simple example is shown in AoE Figure 7.23 (p. 439). Notice the repeated RC stages that create such a phase shift as to deliberately violate the Barkhausen criterion.
LC resonant circuits
For high frequency (
Therefore, if we choose the inductor and capacitor values appropriately, we can select the desired frequency of oscillation.
Colpitts oscillator
Simple example of Colpitts oscillator.
Zoom:A Colpitts oscillator uses an
The bias network is not shown. For normal discrete implementations
the current source
The oscillation frequency is close to the
Then the resonant frequency is
The approximation arises because of factors such as the input impedance
seen at the emitter of
Treating this circuit as a common-base amplifier, the output can be
taken from the collector of
Summary
Here are some key ideas from this week:
- The downside of feedback is that it can cause oscillations. We can use the gain and phase margin as criteria to evaluate how close a circuit is to the edge of stability.
- Stability is controlled by the loop gain
where is the open-loop transfer function and is the feedback network’s transfer function. This means unity gain feedback ( ) is the most problematic for stability. - Most op-amps have built-in compensation capacitors that introduce a low-frequency pole, implying that the open-loop gain
has a phase shift of -90° across most of the operating bandwidth. - If the feedback network
introduces additional lagging phase shift within the bandwidth of the op-amp, then the result may oscillate. - An oscillator is a circuit deliberately designed to produce periodic waveforms.