was just gonna ask what you think needs attention? especially since you might be at work, so i know what to look out for .There a few things that need attention but the framework seems workable.
That's is kinda what I suspected was at stake.well to be honest, marks!
The main issue I see is the woefull lack of testing time needed to refine the algorithm and establish the optimum update rate for the control loop.can i ask what issues do you forsee?
Actually, I just had a thought that might help you out by avoiding the use of an interrupt all together.well i guess you think the algorithm is ok. so that is good to hear.
i'm not sure how easy it wil be to test it, just probably want to know if it looks logical.
was just gonna ask what you think needs attention? especially since you might be at work, so i know what to look out for .
if the voltage increased draws more current, then this if i am sure will not be moving in the right direction of the I-V curve, as i would have thought. so i think i am guessing it would be the reverseThat is the easiest thing of all. In your flowchart you indicate that when P1 > P0 you increment the value you output to the DAC. Incrementing the binary value fed to the DAC will result in an increase in the voltage applied to the mosfet gate. As I indicated, when the voltage increases on the gate more current is drawn from the solar panel by the mosfet active load. If this is consistent with what you want the active load to do then no change to your program logic is required. If not, then all you need to do is change the action from increment to decrement and you are good to go. This is how you invert the sense of the control.
idle_loop: // Top of idle loop....
// Delay loop....
clr Temp; // Clear register Temp....
inner_loop:
dec Temp; // Decrement register Temp...
brne inner_loop; // Test & Branch if Temp not equal to 0...
Call MPPT; // Call subroutine MPPT...
rjmp idle_loop; // Loop again...
There is no reason why the microcontroller should be getting hot.hi,
.....
Questions:
are microcontroller to get hot?
or maybe cos it was near a heat sink?
well it seems that the mppt is drawing current higher than the fixed resistor but the voltage is lower. any possible reasons?
THANKS!
| Thread starter | Similar threads | Forum | Replies | Date |
|---|---|---|---|---|
| H | PIC16F877A Based MPPT Project (Help) | Microcontrollers | 9 | |
| E | Help Starting MPPT Solar Project (Senior Design) | General Electronics Chat | 20 | |
| L | Need help with new MPPT design theory | General Electronics Chat | 1 | |
| S | Solar mppt help! | General Electronics Chat | 10 | |
| R | Help regarding MPPT | General Electronics Chat | 1 |