Skip to main content

Isolated Switch Mode Power Supplies

Geoffrey Hunter
mbedded.ninja Author
warning
This page is in notes format, and may not be of the same quality as other pages on this site.

Overview

For regular non-isolated buck, boost, regulators, SEPIC and Ćuk regulators see the Switch Mode Power Supplies (SMPS) page.

Isolated SMPS topologies:

NameAdvantages
FlybackRequires no inductor (uses the transformer). Simple. Low cost.
FlybuckHigher freq. than flyback (= smaller components/better efficiency).
Forward
Photo of the Traco TSP600-124 24V 600W DIN-mounted power supply, which runs of mains power. This is medium power isolated switch-mode power supply unit.

Flyback Converters

A flyback converter is a type of isolated power converter. It can be thought of as a buck-boost converter with the inductor split to form a transformer. The basic schematic is shown below:

VOUTNo additional inductor neededon secondary sideIsolationbarrierNote polarity oftransformerwindingsD1COUTVINT1SW1RLOAD
Schematic of a basic flyback converter, with no feedback. Transformer T1 is usually called a "mutually coupled inductor".

Flyback converters are unique in the fact that they use the transformer as both a transformer (to provide voltage/current conversion and isolation) and inductor (for storage of energy in it's magnetic field). All other isolating SMPSs only use the transformer for voltage/current conversion and isolation, and require a separate inductor on the secondary side for performing the buck/boost regulation. The flyback converter to the most used isolating SMPS topology used1.

Principle Of Operation

  1. Switch SW1SW1 closes. The primary of the transformer is connected directly to the input. The current ramps up linearly in the transformer, storing energy in it's magnetic field. Since the voltage on the secondary is negative (note the polarity dots on the windings), diode D1D1 is reverse biased and does not conduct, leaving COUTC_{OUT} to supply energy to the load (which it does from energy stored in the previous cycle).

  2. Switch SW1SW1 opens. The primary current drops (very rapidly). Suddenly, the secondary voltage becomes positive, and D1D1 conducts. This supplies energy to both COUTC_{OUT} and the load.

tip

TIP: At first you may be thinking, but wait, because inductors don't like changes in current, isn't the transformer going to create a huge primary side voltage when the switch is opened? This would be true for a standalone inductor, but because the magnetic field is coupled to the secondary side, the moment the switch opens and the primary-side current stops, the current in the secondary side starts. However, there is still the problem of parasitic inductance. This is a portion of the total primary inductance which is not coupled over to the secondary. This does create a large voltage spike, and has to be dealt with zeners/TVS diodes.

The output voltage is given by Eq \refeq:voutvinflyback\ref{eq:vout-vin-flyback}.

\labeleq:voutvinflybackVOUT=VINNPSD1D\begin{align} \label{eq:vout-vin-flyback} V_{OUT} = \frac{V_{IN}}{N_{PS}} \frac{D}{1 - D} \end{align}

where:
NPSN_{PS} is the windings ratio from primary to secondary, NPNS\frac{N_P}{N_S}
DD is the duty cycle, and varies from 00 to 11. It is defined as:

D=tonT\begin{align} D = \frac{t_{on}}{T} \end{align}

Feedback

Without feedback, regulation for a flyback converter can be as good a 5-10% (assuming the input voltage is known and constant). If you need tighter precision of the output voltage, or if the input voltage varies wildly, you will need to add feedback.

The TL431 precision shunt voltage reference in tandem with an optocoupler is a popular way of providing feedback from the secondary side back to a flyback converter. As shown below, it's REF pin is connected via resistor divider to VOUTV_{OUT}, and it sinks as much current through the optocoupler's LED to keep VREFV_{REF} at 2.5V2.5V, hence providing just enough feedback drive to regulate the output voltage.

U3TL431VOUTNo additional inductor neededon secondary sideControlcircuitryRFB1RFB2RLEDIsolationbarrierNote polarity oftransformerwindingsFBGATED1COUTTL431 sinks as muchcurrent as neededthrough the optocouplerLED to keep it’s REF pinat 2.5V2.5VVINU1U2
Schematic of a flyback regulator with optocoupler-based feedback. The TL431 plays a pivotal role in the feedback loop, essentially sinking as much current through the LED of the optocoupler to keep it's REF voltage at 2.5V (which is a proportion of the output voltage). Compensation components have been omitted for brevity.

Flyback converters are used extensively in Power over Ethernet (PoE) applications.

Controllers

  • LM3481

Flybuck Converters

TODO: Add info here.

Forward Converters

TODO: Add info here.

Footnotes

  1. Lee, S.W. (2020, May). Practical Feedback Loop Design Considerations for Flyback Converter Using UCC28740. Texas Instruments. Retrieved 2021-08-27, from https://www.ti.com/lit/an/sluaa66/sluaa66.pdf.