3

After getting a great answer on how to couple a signal on to a DC line, I wonder what EMC considerations that has to be done with using a bias-T circuit used for communications with a ~130kHz QPSK signal, modulated on top of a 24V DC line which should draw about 3-4 Amperes.

Please add any suggestions to my current schematic draft: bias-t

EDIT: My main concern is external influence from magnetic fields caused by mains which may run close to my circuit and/or noise from higher frequency generators like mobile phones or other RF signal wires running in close proximity. My system should be installed on a lot of different sites (industrial, home, ships), so an approximation of what kind of noise I can expect is fairly difficult. Also, how should I ground my system? I guess signal ground an actual ground should be seperated by a fairly large impedance, but my knowledge on this comes very short.

chwi
  • 1,241
  • 2
  • 11
  • 21
  • To help us give you a complete answer, can you say a little bit more about your problem: How do you plan to construct this device? If its on a PCB, how many layers do you plan to use? What kind of enclosure do you plan to put it into? – The Photon Jan 12 '13 at 00:12
  • I plan to design it on a two layer PCB with no thoughts around enclosure at the moment. SMD-components except for the RF choke which needs to be quite large. It will be powered by a battery, and not any kind of switch-mode supply. – chwi Jan 12 '13 at 00:42

1 Answers1

2

I'll assume that the RF portion of the circuit is laid out with the normal considerations for EMC in RF, and you're asking about any special considerations related to the fact this circuit is a bias-tee.

An added DC voltage/current on an RF circuit doesn't add any particular extra EMC risks to the RF circuit.

On the other hand, if some of your RF leaks in to the DC portion of the circuit (in this case, basically the traces/wires back to the 24 V battery), then it you could have a problem. Mainly because that portion of the circuit is probably not designed so well to minimize EMI.

I'd say the best way to reduce this risk is to be sure you won't leak rf power into the dc circuit. The main way this can happen is through inter-winding capacitance of the choke inductor. Make sure you know what is the inter-winding capacitance for your inductor and make an estimate of how much rf will leak out before you proceed. Unfortunately I can't really give you a rule of thumb for how much leakage is too much --- only an idea about what issues you need to think about.

Edit

Your edited question asks about electromagnetic susceptibility. The regulations on susceptibility generally say something like, "operation of your system should not be disrupted by conforming radiators in its environment." Since the circuit you're designing is composed entirely of passive components, its unlikely to be disrupted, even by quite strong nearby radiators.

That said, maybe you're concerned about signals being picked up by your circuit and transmitting down the line to the connected equipment. Good rf design to suppress radiation will also give good susceptibility performance, so I won't say more about that.

You might be especially concerned about your choke inductor picking up magnetic fields from nearby mains wiring. I've never seen this in real life, but then again I've never worked with such a low rf frequency and the corresponding big inductor you'll need for the choke.

But I can at least make a suggestion: Add locations on board for a filter to catch the mains frequency in whatever location you'll install the circuit. Initially, build the device without any filter, and measure the performance. If you do have a problem, then stuff the components to add the filter.

If the inductor picks up magentic signals, it will act like a current source. So you need the filter to either act like an open in series with the inductor at resonance, or a short in parallel to prevent the interference signal from reaching the rest of the circuit. The series filter solution is probably a bad idea because its inductor will need to be oversized to deal with your 4 A DC currents. That leaves a shunt filter configuration:

enter image description here

From a quick search I found a 10 mH inductor available at reasonable cost with 19 Ohm series resistance. That was enough to broaden the response of this filter out to give relatively low impedance from 10 to 200 Hz. Of course the impedance minimum is given by the series resistance. You may want to search out a lower-resistance coil to reduce the minimum impedance and increase the impedance at your 130 kHz rf frequency. You'll want to simulate this with the rest of your circuit to nail down the details and make final part selections.

The Photon
  • 126,425
  • 3
  • 159
  • 304
  • Thank you @ThePhoton, I edited my question with some info. You are giving good thoughts on intra-system situation (source and victim within the same system), but I also need to consider external noise sources which may affect my system. – chwi Jan 12 '13 at 09:50
  • Actually my answer isn't restricted to intra-system issues. The reason to keep the rf out of the dc part of the circuit is to reduce emissions (radiated or conducted) that can affect other systems. – The Photon Jan 12 '13 at 16:47