Capacitance of a Simple CircuitThe solution for a simple circuit with a resistance, R, and a
capacitance, C, in series with a battery voltage, V, is
The following is based on a cue card that can be processed directly in any word processor, using MATHSERV. FX = "10^6*(X*V*(1 - exp(-T/(R*X))) - Q)" **** required charge in coulombs, Q = 10^-5 := 0.00001 **** battery volts, V = 10 **** resistance in ohms, R = 2000 **** required time in seconds, T = 4*10^-3 := 0.004 C = bisect(FX, 0.000001, .000002, .00000001) := 1.2578E-6 * test Q = C*V*(1 - exp(-T/(R*C))) := 0.00001001 You can easily modify this to use the online solver.
For example, if your values are as above, you would
set up the equation: What you enter for ymin and ymax depends on whether you used the magnification factor 10^6, in which case -6 and +6 will do nicely. The answer should be 0.000001255. |