1

I'm going to use a RS485 modbus connection which requires a twisted pair. Now I also need power, that will be a 5V line and a ground. The distance will be about 3 meters max. Can i use a twisted pair for the 5V and gnd as well? Or will that result in a voltage drop?

  • 1
    You will always get a volt drop down cable if you are taking current. – Andy aka May 29 '18 at 11:12
  • 1
    Check this [link](https://electronics.stackexchange.com/questions/290310/does-using-twisted-pair-wiring-make-sense-only-for-differential-signalling) – Pryda May 29 '18 at 11:17
  • 1
    The company I work at designs gas detection systems for car parks. The detection nodes use modbus RTU or canbus. We use 3x2x0,8mm² STP cables to couple the nodes to the loop. To save on cabling and avoid the hassle of bringing different types of cables to the project, we use one pair of the cable to pass the 24V power supply to the nodes. Our detection loops are generally over 500 meters long and work without problems. – Bart May 29 '18 at 11:26
  • @Bart thanks for verifying with an excisting application. I guess it won't be a problem at all then :) The 2 nodes on the RS485 modbus RTU get their own power (one only gnd) and have a minimum of 3.3V signal I believe. I will be using like 24AWG wiring tho, but still.. – Matthijs van Hest May 29 '18 at 11:34
  • We did not however make a theoretical analysis of this, but commissioning tests never revealed problems. Of course your device needs proper decoupling from the power supply, and you need to keep the voltage drop low. Our sensors (CO and LPG) sink about 300 mA each from the 24V supply, which is doubly fed into the loop. For very long loops we use 2 wire pairs for the power supply. – Bart May 29 '18 at 11:42
  • Thanks for the details. On 3 meter with an arduino and some small signals and LED's i don't think it will be a problem :) – Matthijs van Hest May 29 '18 at 11:47
  • I must make a side note however, our detection nodes probably work at a much lower voltage than 24V, probably 5V, which is regulated down inside the device, so a steep voltage drop will not be as hurtful to the system. – Bart May 29 '18 at 12:02
  • That's a pretty important side note yes haha. I can crank up the voltage at the supply side to 5.5 if the drop is too much. The devices close-by should be able to handle that as well without burning haha. – Matthijs van Hest May 29 '18 at 12:05

1 Answers1

2

There are a couple things to take note of to know if this will work:

  1. Peak current draw of your load: $$I_p$$
  2. The acceptable voltage drop your load can accept: $$V_d$$
  3. The resistance of your cable: $$R_C$$

If:

$$I_p \times R_c \leq V_d$$

Then you're good to go.

Makoto
  • 893
  • 6
  • 16
  • Supply is 2.4A max. Do'nt expect to draw that much tho. Voltages above 3.3V are usually good enough. So 1.7 volt drop. The cable i'm thinking of is 0.5 ohm per 5 meter. 2.4 x 0.5 = 1.2. Which is lower than 1.7. These are maximum values. Should be ok haha.. But thanks for the formula! – Matthijs van Hest May 29 '18 at 11:51
  • 1
    For short current peaks, proper decoupling should reduce the magnitude of voltage drops. For the average current draw, yes, the cable resistance should be sufficiently low as you indicate. – Bart May 29 '18 at 11:53
  • @MatthijsvanHest if possible, I would put a DC/DC converter at both ends of the cable. Step up to something like 12V or 24V at the supply end, and step back down to 5V at the sink. That way the current down the cable will be lower (higher volt = lower current) so lower losses, and you'll get a regulated 5V at the other end. – Tom Carpenter May 29 '18 at 11:53
  • @TomCarpenter that would be very reliable yes. It's going to be enclosed, and therefor I don't like to use dc converters (heat) too much. Also there's a budget, so I rather have a very very very small voltage drop than more components which can break and such. But thanks for the advice, will keep it in mind ;) – Matthijs van Hest May 29 '18 at 11:56
  • @MatthijsvanHest Indeed, I hope you won't be drawing 2.4A through a 24AWG wire in a bundle (like regular Cat5 is). Check "awg ampacity" in google. – dim May 29 '18 at 12:33
  • 2
    @MatthijsvanHest 95% efficient DC/DCs are readily available and quite inexpensive nowadays. The trouble with the calculation is the current flows through *both* VCC and GND cables, so you actually have 6m of cable (3m there, 3m back), so you'll end up with about 3.5V, assuming no other source of loss (e.g. is your 5V supply exactly 5V? or does it drop to 4.8V or maybe lower under load). Further, 1.5V is not a "very very very small voltage drop" - it equates to about 3.5W dissipated in your cable, far more than a DC-DC converter would dissipate. – Tom Carpenter May 29 '18 at 12:38
  • @dim no, I expect no more than 0.5A to MAX 1A. part of the 2.4A is powering other devices which don't use this cable ;) – Matthijs van Hest May 29 '18 at 12:50
  • @TomCarpenter the very very very small voltage drop is my expectation. The 1.5V is about the absolute maximum. I will look into the DC converters then as backup solution, any recommendations? Also I can adjust the supply voltage to 5.5. The close by devices using the same powerline should be able to handle 5.5 as well. – Matthijs van Hest May 29 '18 at 12:53