Phase-Shifted Full-Bridge Power Supply Design Based on DSP

Phase-Shifted Full-Bridge Power Supply Design Based on DSP

Abstract

This article mainly introduces a design method for a phase-shifted full-bridge switching power supply based on a Digital Signal Processor (DSP). The design goal is to achieve high efficiency and high stability output while addressing power loss and electromagnetic interference issues in traditional power supply designs. By introducing DSP control technology and phase-shift adjustment, high-precision control of the full-bridge circuit is realized. Experimental results show that this design has high efficiency and good dynamic response characteristics.

Theory

1. Phase-Shifted Full-Bridge Topology

The phase-shifted full-bridge circuit is a commonly used DC-DC converter topology. Its core consists of four MOSFET switches, which adjust the output voltage by controlling the conduction time of different switches through phase-shift control.

2. Application of DSP Controller

The Digital Signal Processor (DSP) can collect signals such as voltage and current in real-time and adjust the switching phase of the full-bridge circuit through phase-shift control algorithms to optimize power supply efficiency.

3. Working Principle

  • Switching timing: The conduction time difference of diagonal MOSFETs is changed through phase-shift technology to control output voltage and power.
  • Zero Voltage Switching (ZVS): MOSFETs are switched under zero voltage conditions through resonance, reducing switching losses.
  • PWM Modulation: The DSP outputs control signals through PWM to achieve high-precision phase-shift control.

4. Key Control Parameters

  • Input Voltage: 𝑉in
  • Output Voltage: 𝑉out
  • Switching Frequency: 𝑓sw
  • Duty Cycle and Phase Shift Angle: πœ™

Experimental Results

Experimental Conditions:

  • Input Voltage: 24V
  • Output Voltage: 12V
  • Switching Frequency: 50kHz
  • Load Current: 4.2A

Test Results

  • Efficiency Test The power supply efficiency was tested under different loads, with a maximum efficiency of 94%.

  • Output Voltage Fluctuation The output voltage fluctuation is less than 0.5%, proving that the system has good voltage regulation performance.

  • Dynamic Response In the case of load sudden changes, the system response time is less than 1ms, indicating that the DSP controller has strong dynamic adjustment capability.

Phase-Shifted Full-Bridge Power Supply Design Based on DSP

Sample Code

% Phase-shifted full-bridge control algorithm
clc; clear; close all;

% Parameter settings
Vin = 24;          % Input voltage (V)
Vout = 12;         % Output voltage (V)
fsw = 50e3;        % Switching frequency (Hz)
phi_max = pi/2;    % Maximum phase shift angle (radians)

% PWM control
t = 0:1e-6:1/fsw;  % Time step
theta = linspace(0, phi_max, length(t)); % Phase shift angle variation

% Simulate switching waveforms
Q1 = square(2*pi*fsw*t);          % Switch Q1
Q2 = square(2*pi*fsw*t + theta);    % Switch Q2 (phase-shifted)
Q3 = -Q1;                        % Diagonal switch Q3
Q4 = -Q2;                        % Diagonal switch Q4

% Display waveforms
figure;
subplot(4,1,1); plot(t, Q1); title('Switch Q1 Waveform'); ylim([-1.5 1.5]);
subplot(4,1,2); plot(t, Q2); title('Switch Q2 Waveform'); ylim([-1.5 1.5]);
subplot(4,1,3); plot(t, Q3); title('Switch Q3 Waveform'); ylim([-1.5 1.5]);
subplot(4,1,4); plot(t, Q4); title('Switch Q4 Waveform'); ylim([-1.5 1.5]);
xlabel('Time (s)');

Related Technologies

❝

  1. Mohan, N., Undeland, T. M., & Robbins, W. P. (2003). Power Electronics: Converters, Applications, and Design. John Wiley & Sons.
  2. Erickson, R. W., & Maksimovic, D. (2001). Fundamentals of Power Electronics. Springer Science & Business Media.
  3. Kazimierczuk, M. K. (2015). Pulse-Width Modulated DC-DC Power Converters. John Wiley & Sons.
  4. Krein, P. T. (1998). Elements of Power Electronics. Oxford University Press.

(The content of this article is for reference only; specific effects are subject to the images.)Phase-Shifted Full-Bridge Power Supply Design Based on DSP

Leave a Comment