3
\$\begingroup\$

I designed a solar charge controller using arduino and MOSFET IRF9530. Main purpose was to charge 12V 7aH battery and then control the load. Here load is a solar blinker which needs 12v and around 1Amp. Following is the schematic of the circuit. The circuit is working fine.

enter image description here

In the above circuit, resistor R1 R2 are used as voltage divider to sense the solar voltage by reading the analog values of A0 pin. If the solar voltage is good, then digital pin D1 is turned on, so MOSFET conducts solar volts to battery and battery starts charging. By reading the analog values at A1 pin, we can read the battery voltage and if battery voltage is good then turning on the digital pin D2 will start the load.

Later on I thought of modifying the circuit in such a way that if the sun light is good and we are getting enough voltage from panel, then turn on the load using solar voltage and keep charging the battery. If there is no sunlight & battery has enough voltage, then the load will be using battery voltage. So I made the following changes:

enter image description here

Changes which I have done is that I added another pair of transistor and mosfet and connected them to digital pin3. SO if there is a good solar voltage and I want to turn on the load using solar voltage then I will make the D2 low and D3 high so solar volts will be given to the load via 7812 because I don't want to give higher voltages like 19-20v to the load. If there is no sunlight, then D3 will be low and D2 will be high to give battery voltage to load. I have used the diode D2 D3 to block the voltage.

To control the switching of load between solar and battery voltage, I have written folling code in arduino:

if(solVolt > 14 )
{
 //Its a bright day & we are receiving full sunlight
 //so turn on the load using solar voltage
 digitalWrite(solarLoadPin,HIGH);
 digitalWrite(batteryLoadPin,LOW);
 digitalWrite(solarLed, HIGH);
 digitalWrite(batteryLed, LOW);
}
else if(solVolt < 12 && batVolt > 12.4)
{
 //Its a dark night and we are not receiving sunlight
 //so turn on the load using battery voltage
 digitalWrite(solarLoadPin,LOW);
 digitalWrite(batteryLoadPin,HIGH);
 digitalWrite(solarLed, LOW);
 digitalWrite(batteryLed, HIGH);
}
else if(batVolt <= 10.8)
{
 digitalWrite(batteryLoadPin,LOW);
 digitalWrite(batteryLed, LOW);
}

Now I have few questions regarding this design:

  1. Is this circuit fine? I tested the circuit by first plugging only battery and load. So the load was on and working fine. Battery Led was on showing load is using battery. But as soon as I plug in panel, it didn't switch to the solar voltage. I unplugged everything and then plugged in panel and battery so the load was on and using the solar voltage but the voltage was very low while the voltage from the solar panel was 18-19v.

  2. Battery not charging? I unplugged the load and only allowed battery to charge. Battery volts at that time was 12.44 but instead of charging, voltage reduces to 12.40

  3. Solar voltage vs current? There was very low sunlight and the panel was still showing 18v. I think it should show low voltage, around 12v when there is not a bright sunlight. But its voltage was high. So does that means, its output current will be low in this situation as Power = volts x amps. So if volts is high, amps will be low.

Basically I need to design the circuit which automatically switch between solar voltage and battery voltage depending upon the conditions of the day and night.

\$\endgroup\$
0

1 Answer 1

4
\$\begingroup\$

Basically I need to design the circuit which automatically switch between solar voltage and battery voltage depending upon the conditions of the day and night.

Why not consider one of Linear technology's Power Path Prioritizers like the LTC4419: -

enter image description here

The chip is good for up to 18V so no worries there. Imagine your solar panel were connected to where it shows the 5V wall adapter connection. It changes over from one supply to the other fairly quickly: -

enter image description here

There is also the LTC4416 PowerPath Controller: -

enter image description here

\$\endgroup\$
3
  • \$\begingroup\$ 12V Solar panels have a Vout greater the 12V. Over 20 open connection, and about 17-18 when active. That may not be an issue if there is a charge controller especially if it is a MPPT. This is a nice solution, you got my vote. I'm currently look at the LTC 4355 & 57 for a 48V system. \$\endgroup\$ Commented Feb 25, 2017 at 3:01
  • \$\begingroup\$ @Misunderstood I would assume you can use a voltage divider + something like a MP9488GS-P to step the voltage to say 5V. I.e.. you'd use a switch over that can do V1 and V2 sense and control G1 and G2 but use a voltage divider at V1 and V2 and then when that happens the gate it's switching is actually powering a buck voltage regulator, not direct powering. This, I would think, should solve the entire problem as long as you can get a voltage divider to work within the range that the powerpath controller will accept based on the source voltages.... \$\endgroup\$ Commented Oct 29, 2021 at 16:38
  • \$\begingroup\$ @Misunderstood Alternatively use 2 of the buck voltage regulators, and use the Powerpath switchover for the stepped down voltage, or simply use your circuit you had as is, and use the step down regulator's enable pin to control low voltage disconnect. \$\endgroup\$ Commented Oct 29, 2021 at 16:39

Not the answer you're looking for? Browse other questions tagged or ask your own question.