4

When looking at example schematics of a 555 astable circuit, they all show the two resistors in series with the C. I'm wondering how this differs from the schematic I've created below;

enter image description here

Here R6 is used to load C3 and R5 to discharge, which should allow for more control of the duty cycle, e.g. having 50% duty cycle. What would be the reason not to use this schematic, am I missing something?

Frank
  • 143
  • 3

2 Answers2

5

Imagine what happens when Discharge is pulled low by the internal transistor, R5 and R6 will form a voltage divider with Trigger and Threshold connected to the center of the divider. With it like that the voltage on those pins will be never get below Vcc/2 and it needs to get down to Vcc/3 for the timer to be triggered.

schematic

simulate this circuit – Schematic created using CircuitLab

You may be able to use resistors with a different ratio than 1:1, something just under 2:1 seems to work in simulation and may give you a 50% duty cycle but you'd have to try it with real components to see if it will work reliably. There are other circuits to get a 50% duty cycle.

GodJihyo
  • 17,628
  • 1
  • 16
  • 45
  • 1
    While R6 and R5 can't have equal values as shown by the OP, there are combinations of values that would work, provided that Vth of the combo is less than 1/3 Vcc. But the calculation of the resulting time interval gets a LOT more complicated! – Dave Tweed Jul 04 '23 at 17:05
  • @DaveTweed Updated my answer to address this. If I get time I might be able to work out the math. Just playing around with it in LTspice with a model that's known to not be totally accurate it seems to work but it stops at a 2:1 resistor ratio. Not sure how a real 555 would act. – GodJihyo Jul 04 '23 at 18:39
0

The biggest drawback is that the math gets a lot more complicated. The discharge time is no longer a linear function of one of the resistor values.

When the discharge pin is grounded, you now have both R5 and R6 determining the voltage on the capacitor. You can treat them as a Thevenin source with voltage

$$V_{TH} = V_{CC} \left(\frac{1}{1 + \frac{R6}{R5}}\right)$$

and resistance

$$R_{TH} = \frac{1}{\frac{1}{R6} + \frac{1}{R5}}$$

So the discharge waveform becomes an exponential curve dropping from \$\frac{2}{3}V_{CC}\$ down toward \$V_{TH}\$. If we define \$V_0 = \frac{2}{3}V_{CC} - V_{TH}\$ and the time constant \$\tau = R_{TH} C\$, then this curve is

$$V(t) = V_{TH} + V_0 e^{-\frac{t}{\tau}}$$

The discharge ends when \$V(t) = \frac{1}{3} V_{CC}\$, so we can make that substitution on the left hand side and then solve for \$t\$ to find out what the discharge time is. If we say \$k = \frac{V_{TH}}{V_{CC}} =\frac{1}{1 + \frac{R6}{R5}}\$, we can write it as:

$$t = -\tau \ln\left(\frac{1 - 3k}{2 - 3k}\right)$$

From this, we can make a couple of observations. First, there is no solution when k is 1/3 or greater, since this makes the argument of the logarithm zero or negative. This means that R6/R5 must be less than 2 — R5 must be less than 1/2 of R6.

Second, solving this to get a value of R5 for a particular time value (e.g., the same value as the 0.693×R6×C charging time) is a similarly complicated derivation. I'll leave that for you to work out if you're interested in pursuing it.

In more practical terms, the closer R5 gets to 0.5×R6, the more sensitive the circuit becomes to component tolerances, including things like the exact voltage on the discharge pin during the discharge cycle.

Dave Tweed
  • 168,369
  • 17
  • 228
  • 393