Electrical – 15kV high voltage pulse generator circuit – how to have digital control

archigh voltagemosfetpowermosfetpulse

First of all I'm fairly new to making a more complicated circuit.

I'm trying to make a PCB with an ATmega328PB chip on it. With that chip I want to control a high voltage pulse generator (arc lighter.)

Now I found the 15kV high voltage pulse generator that I want to use because of its size.

15kV arc lighter

I also found a schematic that can control this high voltage pulse generator.

Schematic of high pulse generator

enter image description here

I tried to make the same schematic for this forum but I'm not sure it is correct so please spare me on that.

This schematic is triggered by completing the power circuit.

Now I need some way to get this triggered by a high/low signal from the ATmega328PB (a digital signal if I'm correct.)

schematic

simulate this circuit – Schematic created using CircuitLab

Things I've thought of:

Adding a second MOSFET to the ground line.

schematic

simulate this circuit

Both schematics work that is the first thing. But with the second schematic, once it is turned on it stays on. That is one thing I don't need. I've tried to do it with and without the pull down resistor but nothing works.

I'm sorry if some of the components in the schematic aren't right because the voltage or current they can handle but that is not what I'm trying to ask.

The only thing I want to know is how to control the on and off function of the arc lighter.

Thanks in advance if you need more info or I did something totally wrong please tell me because I need to learn a lot.

Best Answer

I assume you have drawn the schematic incorrectly since you said that this works, but what you have drawn can never work.

In your first schematic the polarity for the N-Chan IRF530 FET shown is definitely incorrect.

Lets start by correcting the schematic, I think it should look like this when you use a FET:

schematic

simulate this circuit – Schematic created using CircuitLab

There are a couple of problems with the circuit above:

  1. The IRF530 is only rated to 100 V and there is a likelihood of the back EMF generated to hit 5-600 V. If the output breaks over then it would reduce the back EMF generated, but if you move the output terminals far enough apart to prevent breakover, the voltage developed across the FET could rise considerably above 500 V. If you say you have this working, I must assume that the IRF530 is entering avalanche but it seems likely that it would fail eventually.
  2. The VGS(th) for the IRF530 is 4 V maximum, that means there is a likelihood that some devices would not start oscillating at 4.2 V ….and even more in the range of devices may not work down to 3. 6 V (If you are using a LiIon battery).
    If you are using an MCU that works at 5 V you are in a better position and the IRF530 would reliably start with a 5 V supply.

A more suitable device for this application may be the Infineon IPA50R380CE. This device supports a minimum of 500 V across the drain/source and has reasonable avalanche capability. This device would start oscillation down to about 3.5 V so would work for a LiIon battery implementation as well as a 5V implementation.

Providing digital control

To enable an MCU to turn the high voltage generator on/off you could take a couple of approaches:

  1. Switch the power supply on/off (which is what you tried to show in your second schematic, but what you showed would not work). This would require a P-Chan FET to turn the supply off/on.
  2. Clamp the feedback so that the generator cannot start.

I've chosen to use #2 and updated the schematic to show this approach:

schematic

simulate this circuit

Note: This circuit appears to have been originally designed for use with a BJT, and the changes to use a FET complicate the circuit somewhat (since there is no equivalent to the base current). I give no gaurantee that the schematic shown above will work for you, and you'd need lots of details on the transfomer to check exactly what is needed.