8

I read some documents like the PoE application, it used ORing to protect the reverse input current. I would like to know what ORing is. I googled it, but I cannot find the answer. It seems like a diode or something the datasheet uses diode to protect, but I am not sure what this is.

JRE
  • 67,678
  • 8
  • 104
  • 179
EEC
  • 403
  • 3
  • 10

1 Answers1

25

OR is a logical function - the output is high when either input is high. ORing is simply a way of saying perform the logical OR of a set of signals.

In the context of power supplies, when ORing is used, the output (the device) is powered by whichever supply typically has the highest voltage.

A simple power OR gate can be made by diodes in series with each supply, which prevent power from the higher voltage supply backflowing into the lower voltage supply.

Tom Carpenter
  • 63,168
  • 3
  • 139
  • 196
  • So, I can not only use a diode to do the OR function right? – EEC Jul 14 '21 at 11:00
  • 4
    EEC- No, there are other techniques besides diodes that can be used. FETs are used quite often as they offer lower ON resistance and so lower voltage drop than a diode. – SteveSh Jul 14 '21 at 11:17
  • Hi SteveSh Do have some related documents? I'd like to read. – EEC Jul 14 '21 at 11:28
  • 3
    @EEC [this](https://www.analog.com/en/technical-articles/a-low-loss-replacement-for-an-oring-diode.html) might be a good read. Product specific, but it gives some insight. Keyword: "Ideal Diode" and "Load switch" – Tom Carpenter Jul 14 '21 at 11:29
  • 3
    I parsed it a O-Ring and wondered what it was talking about. – Joshua Jul 14 '21 at 20:01
  • 3
    @Joshua - I couldn't decide between `or-ing`, `o-ring` and `0-ring`. These all sound _just_ like they could be a specific technical term. :D – Vilx- Jul 15 '21 at 06:58
  • 2
    @Joshua [O-ring](https://i.imgur.com/o1rhMOO.jpg), usually used as a seal to couple two parts. Very common part. – Mast Jul 15 '21 at 09:07
  • And it's named `OR`ing because the result is high if input 1 **OR** input 2 is high. Compare with `AND`ing where the result is hight if input 1 **AND** input 2 are high. There's also `XOR` (exclusive OR: result is high if input 1 **OR** input 2 is high, **but not both**), and negations (`NAND`, `NOR`)... Of course in this specific case where it's not really the logic but the power that matters, those probably wouldn't make much sense. – jcaron Jul 15 '21 at 13:57