Skip to main content

Not All Circuit Grounds are Created Equal - Grounding Series Part I

I was once asked by a friend/colleague if it is alright to pick any of the grounds in the circuit to make a measurement. I answered it depends on what you are trying to measure, and I reminded that what he calls ground is supposedly a "reference" to his circuit, and will be a reference to his measurement. There will be multiple "ground" points in the circuit, and not all of them are created equal.

What we call ground is ideally zero volts but this is often confusing, because there really can only be one point in the circuit that is truly zero volts. Given a ground plane or ground traces in our PC board, they can actually be at varying potentials due to errors introduced in the circuits by what we call ground loops.


Figure 1 Ground Loop

There will be errors unique to each individual ground points. These errors may or may not affect your circuit's performance depending on the applications. We can perhaps get away with our little concept of ground being always zero if the errors don't matter in our circuit, but when it comes to low level signal and precision applications these small errors need to be accounted for.

Ground provides a common current return path to our sources and supplies in the circuits. What we really would like our ground to be is a low impedance node, same as how we would like our supplies to be. Having a low impedance means current may come and go our ground node without introducing an error, and thus maintaining its potential. The key to understanding ground errors and avoiding them is knowing where the current flows in the circuit. What comes out of one power source eventually has to come back to it. Kirchoff's Current Law at work here, and nothing violates it.


Picking a point of reference to your measurement, or to the another part of the circuit can make a big deal of a difference if that reference includes the errors produced by some other part of the circuit that is either returning a huge or dynamically changing current, i.e, an AC.

If all current are dc, the errors will be caused by trace resistances, or maybe contact resistances if present in our PC board. DC current takes the path of least resistance, therefore, the shortest possible route. An AC current in contrast takes the least impedance path. How significant the errors will be depends namely on the amount of current flow, frequency, and the conductor trace parasitics, which can be resistive or inductive.

Consider a 10 mA DC current flowing through a 5 centimeters long copper trace which will typically have a 0.1 ohm. This will create a 1mV voltage drop on the trace. For low level applications, 1 mV might already matter greatly. For a 12-bit Analog to Digital Converter (ADC) with as 5V full scale which has about 1.2mV resolution, that introduces an 83% error, and we haven't even talked about the errors that AC signals can cause because conductors are like small inductors and eats up its share of the voltage pie at high frequencies!

Part II of the series has already been posted on this site.

Recommended Readings and References:
An IC Amplifier's Guide to Coupling, Grounding...by Paul Brokaw
Staying Well Grounded by Hank Zumbahlen



Comments

Post a Comment

Popular posts from this blog

Arduino Transistor DC Motor Control

Arduino boards have PWM (Pulse Width Modulation) outputs that can be used to control like the speed of a DC motor. On a Pro Micro, those outputs are encircled white on the board. You can program it such that it outputs on a scale of 1-255, 1 being the slowest and 255 being the fastest. PWM gives out pulses whose width is varied (modulated) while the period is constant. The longer it is high, the higher power it delivers to the circuit. PWM can be used to drive a transistor (switch) which in turn drives the motor ON and OFF. The longer the switch is ON, the higher the power delivered to the motor, and thus faster. The circuit consists of a transistor Q1 (TIP31) NPN transistor, driven by the PWM from Arduino. The resistor is to limit the current to the base, but enough to operate the transistor in saturation when the input is high. The diode is to protect the motor from any back emf that might come from the motor when the current is cut off. The circuit is supplied by a 9V battery. ...

What Can You Do With Two Transistors (BJT)? Part 2 - Transistor Regulator

In the first installment of this series, we talked about what exciting things we can do with just two transistors, in particular BJT transistors. Some of us might probably think that we don't talk a lot about BJT transistors nowadays, not with the thrill, excitement, and trend brought about by high advancements in the technology in the Internet of Things, Machine Learning, Machine Intelligence, Advanced Algorithm, etc.. But we argue that these little circuits and components are constantly in the background of the advancements we see around us and we should not ignore them, as much we will not ignore what we currently enjoy and what the future holds for us. Let's continue to look at the Two-Transistor Series Regulator we talked about in Part 1 . The circuit below is a different version, now using the transistor to provide feedback from the output. This makes the output voltage higher. The output is still derived from the zener voltage. The output voltage is now a s...

To Use Star Ground or Ground Plane? Grounding Series Part II

Building circuits whether on a PC (Printed Circuit) board or a breadboard, grounding have always been important. Careful grounding becomes critical on applications where performance and integrity of the signals are of prime importance. Examples are low-level application such as in audio, in precision sensing and measurement circuits, and in mixed analog and digital circuits . When do we use star ground and ground plane? What is the difference between the two? Which is actually better? We will try to answer first what the difference between the two is. Star Ground Also sometimes called mecca ground, this is based on the concept of creating a single return point in the circuit as a common reference in order to avoid ground loops and thus circuit errors (See figure 1 [1]). In the figure, we could see the input signal return path is shared, assuming very high input impedance and no significant current flowing in it. Those in the path of significant current flow, such as the power supp...