2

I know how to calculate proportions of resistor values in resistor divider, but dont know how to jump into "next level" and calculate the precise values of resistors from proportion :

For example to devide 10V to obtain 5V you can use: - 10 ohm R1 / 10 ohm R2 And as well you can use - 100kohm R1 / 100kohm R2

Proportion is the same 1/2 but it for sure is different.

What I have to look for, what I have to know to calculate this?


Is time also critical? I want to divide pulsing signal, want change only voltage range, but still I want to keep form/shape of this vawe.

Dave Tweed
  • 168,369
  • 17
  • 228
  • 393
user62774
  • 63
  • 1
  • 1
  • 6
  • This answer discusses how to calculate resistors when the current drawn, minimum and maximum voltages at the middle node are known. http://electronics.stackexchange.com/a/83659/8627 – jippie Jan 06 '15 at 21:01

3 Answers3

6

Two main factors are how much current can you draw (that is the voltage applied divided by the total resistance - sum of the two resistors. The second factor is what output impedance you want (or can tolerate) from the divider point. That value is the parallel combination of the two resistors if it's being fed from a stiff voltage source.

So in your example, assume 10V is applied, the 100K + 100K divider draws 50uA and has a source impedance of 100K||100K = 50K ohms (so if you load it with 50M ohms it will drop by about 0.1%)

In the case of the 10R + 10R, it will draw 500mA and have a source impedance of 5 ohms, so if you load it with 5K ohms it will drop about 0.1%.

The other practical factor if you still have some range in the above two constraints is that it's nice to be able to use commercially available resistor values. Maybe you can change the total resistance a bit to get it to fit with values that you can buy in the tolerance and power rating you need. If you can't buy the exact values you calculate and can't seem to make it fit, another approach is to pick one of the two values that you can buy and then find a parallel or series combination of standard values that makes the ratio correct (since the ratio is usually much more important than the total resistance).

For example, suppose you want to divide 12V down to 2.5V so you can measure it with a microcontroller, and the microcontroller can only tolerate 10K source impedance before errors increase.

So you might pick 38K and 10K, which has a source impedance of 7.92K, but 38K isn't a standard E96 value- the closest is 38.3K, which is an error of about 0.6%. You could also use 5.62K and 21.3K which would have a ratio error of only about 0.2% but would draw more current from the 12V input (and would still meet the 10K max source impedance limit, of course).

Edit: Given your added comment about AC signals, if you match the resistance (actually you match conductance- reciprocal of resistance) with capacitance across the divider you can maintain the same shape to the signals. Since resistors are not designed to have any specific capacitance, only stray and trace capacitance, you might have to adjust the capacitance across one of the resistors. That's essentially what you do when you adjust your 10:1 oscilloscope probe compensation.

Spehro Pefhany
  • 376,485
  • 21
  • 320
  • 842
4

To determine the values of resistors in a divider, you need to consider how much power you are willing to "waste" throught the divider, and how much current you will draw from the divider mid-point. Don't forget that any load you connect to the divider mid-point will appear as another resistor in parallel with the "bottom" resistor, and so must be included when calculating the resistor values.

Peter Bennett
  • 57,014
  • 1
  • 48
  • 127
1

I assume the question is how to go from proportions to explicit resistor values.

The main difference is the amount of current that will flow through your divider, and that is dictated by the application. As an example, if you're using a divider to measure a battery voltage in a uC design, where your ADC can see values of 0-3.3V, and your battery is 9-12.6V (as it would be in a 3S LiPo), you would want the highest resistor values that still provide a measurable amount of current to the uC to minimize the amount of current through it.

kolosy
  • 2,288
  • 6
  • 29
  • 51