Solar Panel MPPT methods
macrobeak
Posts: 354
As you know, solar panels have a sharp power peak and need a MPPT (maximum power point tracker) to maximise the power output.
I enjoy building bare-bones panel-motor combinations (for water pumps and water drones) without a battery, and it is very satisfying squeezing the maximum wattage out of the panels.
Up to now I have only used the P&O (purturb and observe) method which is a little crude and invasive.
In the latest ASME mag I see a paper on solar panel and wind turbine Extremum Seeking (continuous oscillatory perturbation with convergence).
The control maths is quite daunting, but I suspect that this can be simplified somewhat into practical algorithims for a Prop or Stamp.
Does anyone have any practical experience with this topic?
I enjoy building bare-bones panel-motor combinations (for water pumps and water drones) without a battery, and it is very satisfying squeezing the maximum wattage out of the panels.
Up to now I have only used the P&O (purturb and observe) method which is a little crude and invasive.
In the latest ASME mag I see a paper on solar panel and wind turbine Extremum Seeking (continuous oscillatory perturbation with convergence).
The control maths is quite daunting, but I suspect that this can be simplified somewhat into practical algorithims for a Prop or Stamp.
Does anyone have any practical experience with this topic?
Comments
To start here is the tech report for the entire boat . In it is some of the data we used on our home brew MPPT
http://www.cns.uni.edu/eboat/images/Tech_Report.pdf
Bear in mind I did very little SW but most of the hardware on it .
This circuit works by adding the logarithm of current to the logarithm of voltage. The resulting sum is approximately the logarithm of power which will reach a maximum at the same current/voltage that the power reaches a maximum. Note: the logarithm and summing circuits will need adjustment with actual components. As it's built it's calculating [Log(A*V^2)] which will give some error in the MPPT position.
Marty
Those are essentially the same thing, and the approaches that appeal the most to me, are the ones mentioning using the converter ripple as the 'continuous oscillatory perturbation'.
In a switching converter there will already be some dV effects at the Cell terminals, and the choices from there seem to be either
a) A fast ADC, triggered to measure 3 points on the charge-slope portion of the switching ripple.
or
b) Gated Sample and integrate, I think using 3 phased windows on the ramp.
The advantage of b) is the results average over many SMPS cycles, and would probably be suited to a zone type design.
ie You reality check I/V and if well clear of MPPT point, just use a simple 'go that way' control algorithm.
If the panel looks to being loaded close to the MPPT zone, then use the more complex 3 point checking algorithm.
Since you will need to sample at the PWM switching speed anyway, to avoid that ripple messing with any lower modulation, to me is it simplest to just use the PWM modulaiton.
Choose a Solar Cell load Cap that gives some useful modulation ripple, (easy to change) and then something like a Prop+HC4052 would do a simple 3 sector sync sample, easiest with a fixed off time PWM.
A HC4052 can sample both dI (via ripple, which I think can be simply AC coupled to the sampler) and dV via a voltage divider.
The resulting 6 sample-average caps (3 x I, 3 x V) can be plotted as you sweep the load, and a low cost, slower ADC can be used.
The centre sample in both is used a reference, and the readings either side tell you where on the curve you are.
The maths is then not complex.
I will do this the fast way (individual pwm cycle) and the slow way (oscillation of pwm stream).
Incidentally, if you wiki or google Extremum Seeking Control, you will find it is a branch of adaptive control with applications in solar, turbines, lasers, distance measurement, automatic break systems, paper and processing industry and so on.
The attached paper gives a summary.
Interesting, they seem to include notes on what I called Zone Approach above - ie one algorithm to get to close to the operating point, and then apply the modulated-check
It should even be possible to learn the family of MPPT points, so the 'first guess' from outer zone could improve with experience.
Split of the Solar RAMP time (PWM off time) into 3 sampling windows should be fairly easy on a Prop.
Duane J