capacitance - Delphijustin industries https://delphijustin.biz Making use out of things! Mon, 01 Aug 2022 00:51:30 +0000 en-US hourly 1 https://wordpress.org/?v=6.2.9 https://delphijustin.biz/wp-content/uploads/2025/10/cropped-dongwa-192-32x32.png capacitance - Delphijustin industries https://delphijustin.biz 32 32 Capacitance substitution board https://delphijustin.biz/capacitance-substitution-board/?utm_source=rss&utm_medium=rss&utm_campaign=capacitance-substitution-board https://delphijustin.biz/capacitance-substitution-board/#respond Mon, 01 Aug 2022 00:51:27 +0000 https://delphijustin.biz/?p=4194 In this blog I will show you how to make a dip switches capacitor substitution board. Its very simple since capacitors add up in parallel. So if you look at the schematic you will get an idea.

The post Capacitance substitution board first appeared on Delphijustin industries.

]]>
In this blog I will show you how to make a dip switches capacitor substitution board. Its very simple since capacitors add up in parallel. So if you look at the schematic you will get an idea.

The post Capacitance substitution board first appeared on Delphijustin industries.

]]>
https://delphijustin.biz/capacitance-substitution-board/feed/ 0
Capacitor powered LED flashlight https://delphijustin.biz/capacitor-powered-led-flashlight/?utm_source=rss&utm_medium=rss&utm_campaign=capacitor-powered-led-flashlight https://delphijustin.biz/capacitor-powered-led-flashlight/#respond Tue, 20 Jul 2021 17:48:31 +0000 https://delphijustin.biz/?p=3798 Long time ago QVC sold a shakeable Flashlight that had no batteries just a shakeable generator and a super capacitor. This flashlight uses a 5vdc 1.5a wall wart to charge the capacitors. To figure out how long it will take to charge the flashlight you use this equation $$T=5R_{currentlimit}C$$ And for total discharge time $$T=5R_{LED}C$$ …

The post Capacitor powered LED flashlight first appeared on Delphijustin industries.

]]>
Long time ago QVC sold a shakeable Flashlight that had no batteries just a shakeable generator and a super capacitor. This flashlight uses a 5vdc 1.5a wall wart to charge the capacitors.

To figure out how long it will take to charge the flashlight you use this equation

$$T=5R_{currentlimit}C$$

And for total discharge time

$$T=5R_{LED}C$$

Where

T is time in seconds

Rcurrentlimit is the power resistor used in charging the capacitors in ohms

RLED is the LED resistor in ohms

C is total capacitance in farads

One thing you should know if the capacitors voltage is lower than the supply voltage you should put capacitors in series to increase the voltage rating on the capacitors. Usually you should use 2 capacitors in series and the supply voltage should be no more than capacitors voltage times 2. The diode will drop the voltage by some and also prevent discharging it threw the wall wart

https://youtu.be/aEMwYkuUkbI
YouTube video of this project

The post Capacitor powered LED flashlight first appeared on Delphijustin industries.

]]>
https://delphijustin.biz/capacitor-powered-led-flashlight/feed/ 0
De Sauty’s Bridge https://delphijustin.biz/de-sautys-bridge/?utm_source=rss&utm_medium=rss&utm_campaign=de-sautys-bridge https://delphijustin.biz/de-sautys-bridge/#respond Mon, 11 Jan 2021 02:48:03 +0000 https://delphijustin.biz/?p=2492 This bridge is good for measuring Capacitors. What you do is hookup high impedance headphones to the output(V2 in the NL5 Circuit). Then adjust the resistor(s) , you can use the calculator below to find a suitable resistance for the resistors. This works like a Wheatstone bridge except one side has capacitors. The calculator calculates …

The post De Sauty’s Bridge first appeared on Delphijustin industries.

]]>
This bridge is good for measuring Capacitors. What you do is hookup high impedance headphones to the output(V2 in the NL5 Circuit). Then adjust the resistor(s) , you can use the calculator below to find a suitable resistance for the resistors. This works like a Wheatstone bridge except one side has capacitors. The calculator calculates the unknown capacitor/resistor when the bridge is balanced. The resistors should be high and so should the function generator frequency and amplitude. The bridge is balanced when close to 0 volts is going through the headphones.

The following equation is used for figuring out the unknown capacitor(C1) when balanced. I used yacas to rewrite the equation for the other 3 variables.

$$C_{1}=C_{2}\frac{R_{2}}{R_{1}}$$

The equation will show up once MathJax loads

Here's a Javascript calculator:
Leave one answer blank, you can enter all of them just to calculate the ratios only.
C1:farads
C2:farads
R1:ohms
R2:ohms
Capacitance ratio(read-only):
Resistance ratio(read-only):
Accuracy Ratio(read-only):

Notes about this project:

  • This circuit requires a high impedance headphone(like ones designed for crystal radios) I tried it with headphones and it was quite loud for it to be balanced. I think this was because that it is sensitive to weaker signals.
  • The frequency will need to be high, so it will not work with AC Step down transformers.
  • This trick probably work best on a oscilloscope. With a oscilloscope you can use frequencies higher than sound frequencies so. Plus at lower capacitance the low current will not throw off the balance point.
  • It is probably best ti use a resistor substitution box instead of a pot. This is because with a single turn pot the resistance is hard to find and if the resistance goes below a certain level it can look like you found the correct resistance even when it is not.

With the bridge being balanced you can see it is really close to zero.

Balanced Graph

Here it is again but this time unbalanced

Unbalanced Graph

For this project we will use reference capacitors values 1nF 10nF 100nF and 1µF. R2 should be high as possible.

Professional De Sauty Bridge

Capacitor Symbol icon icon by Icons8

program desauty;
uses sysutils;
var c1,c2,r1,r2,cr,rr,ar:extended;
s:string;
label calculate;
begin
	calculate:
	c1:=0;c2:=0;r1:=0;r2:=0;
	write('Enter C1:');
	readln(s);
	if length(s)>0 then c1:=strtofloat(s);
	write('Enter C2:');
	readln(s);
	if length(s)>0 then c2:=strtofloat(s);
	write('Enter R1:');
	readln(s);
	if length(s)>0 then r1:=strtofloat(s);
	write('Enter R2:');
	readln(s);
	if length(s)>0 then r2:=strtofloat(s);
	if c1=0 then c1:=c2*r2/r1;
	if c2=0 then c2:=(c1*r1)/r2;
	if r1=0 then r1:=(c2*r2)/c1;
	if r2=0 then r2:=(c1*r1)/c2;
	cr:=c2/c1;
	rr:=r1/r2;
	ar:=cr-rr;
	Writeln('C1:',floattostr(c1));
	writeln('C2:',floattostr(c2));
	writeln('R1:',floattostr(r1));
	writeln('R2:',floattostr(r2));
	writeln('CRatio:',floattostr(cr));
	writeln('RRatio:',floattostr(rr));
	Writeln('ARatio:',floattostr(ar));
	if abs(ar)<2 then writeln('Balanced')
	else writeln('Unbalanced');
	write('Press enter to calculate again...');
	readln;
	goto calculate;
end.

The post De Sauty’s Bridge first appeared on Delphijustin industries.

]]>
https://delphijustin.biz/de-sautys-bridge/feed/ 0