I've blown up my power supply, this is my theory after looking at a diagram.
I've fed in to pin 9 and pin 10 complimentary PWM with a deadtime, verified this on oh-silly-scope using a Arduino UNO, all good. Signals as expected.
Code: Select all
int val = 80 ;
int dead = 20 ;
void setup() {
Serial.begin(115200);//
TCCR1B = TCCR1B & B11111000 | B00000010; // set timer 1 divisor to 8 for PWM frequency of 3921.16 Hz
TCCR1A = (TCCR1A & 0x0F) | 0xB0 ; // set pin 10 inverted
analogWrite (9, val-dead) ;
analogWrite (10, val+dead) ;
}
Run this on the board in the inverter and my power supply released all the magic. I noticed the diode on the high side on the diagram. My theory is I very briefly boosted the voltage above 80v and the diode lets it pass through to DC bus 2 and caused the boom?
With the upshot being that it cannot boost from DC Bus 2 to DC Bus 1 and therefore cannot be used as a charger on single phase for packs above 340VDC?