Respected,
I am Electronics student as current working on boost chopper circuit. I want to convert 3.7V to 19.5V using PWM of Arduino as shown in the attached link.
According to requirements, Vin = 3.7V Vout = 19.5V, D = 81.02%, R = 50 Ohm, I = 2.5A, F = 100kHz.
According to the formula, Lmin = (D((1-D)^2)R)/(2F) = 7.3uH
Cin = (I*D* (1-D)*1000)/(F*75m) = 50mF
Cout = (D)/(R*Vout*F) = 8.30nF
Using this formula I got required values, but still I am getting incorrect voltage. Is formula's are wrong or the circuit connection or the code. Where do I need to do improvement? Please guide.
The Code i used for developing 81.02% duty cycle is :
int ledPin = 9;
void setup()
{
pinMode (ledPin, OUTPUT);
}
void loop()
{
analogWrite(ledPin, 206);
}
https://postimg.cc/image/f4kkolo0n/https://postimg.cc/image/gm6100853/