Soft Start, Sequencing

Last modified by Microchip on 2024/01/16 20:03

The control of Switch Mode Power Supplies (SMPS) has traditionally been done in the analog domain. Thanks to the high performance of Microchip's Digital Signal Controller (dsPIC® Digital Signal Controllers (DSCs)), many auxiliary functions such as Soft Start and Power Sequencing can be embedded into the dsPIC DSC in the digital domain. In this section, we'll focus on the operation and implementation of these two special functions.​

Note:
Soft start and power sequencing can be implemented in the Level 2 Integration Level.

Soft Start

When a power conversion system first starts up, the various passive components, such as capacitors and inductors, are completely depleted. In that situation, a sudden rise in the supply voltage can cause large voltage and current spikes in the system. Therefore, it's important to have a soft start mechanism implemented in all stages of the power supply to ensure that system components do not undergo unnecessary stress. As a result, many modern high-performance applications require special care in designing the power conversion applications. Two recurring requirements are the ability to freely select the slope of the voltage being supplied to the system devices (soft start) and the ability to turn on (and off) the devices in a pre-selected sequence (power sequencing).

Soft start provides these basic features:

  • When the system is switched on, the output voltage should rise from zero to the final value (ramp up) following a smooth ramp.
  • When the system is switched off, the output voltage should fall from the initial value to zero (ramp down or decay) following a smooth ramp.

When the system is switched on, the output voltage must ramp up from zero to the steady state value smoothly. This is because it reduces the inrush current, which could damage the components, and reduces the overshoot and oscillations that may otherwise be generated. The same mechanism should also be applied from the steady state voltage to zero (decay) when switching off the unit.

Power sequencing diagram

In analog designs of power conversion systems, soft start is done mainly by using external resistors and capacitors, although many analog controllers provide a built-in soft-start feature. Analog controllers, however, provide limited flexibility in choosing the soft start time duration and startup delay. While it's possible, the implementation of delays and sequencing are implemented by specialized devices, which add costs and system complexity. In analog soft start implementations, there are normally two different approaches. Either the PWM chip has a preset ramp duration or it can be set using external resistors and capacitors.

The disadvantages of analog soft start are:

  • Lack of versatility if the ramp duration is set by the external analog controllers.
  • The ramp duration varies according to the components' tolerances, temperature, and humidity specifications.

In the dsPIC DSC, soft start can be easily implemented using a soft start routine for each stage of the power supply, each with a configurable duration (ramp up or down) and delay by using a digital power supply implementation, eliminating the shortcomings of analog implementations. For each output voltage, the corresponding reference voltage (Vref) is driven by the system in order to follow the desired ramp. The desired voltage ramp can then be generated by the soft start routine in the dsPIC DSC.

Soft start diagram

An example of a soft start routine is shown in the accompanying code.

1 void PFCSoftStartRoutine()
2 {
3 Delay_ms(STARTUP_DELAY)
4 pfcVoltagePID.controlReference = pfcInitialOutputVoltage;
5 while (pfcVoltagePID.controlReference <= PFCVOLTAGE_REFERENCE)
6 {
7 Delay_ms(SOFTSTART_INCREMENT_DELAY);
8 pfcVoltagePID.controlReference += PFC_SOFTSTART_INCREMENT;
9 }
10 pfcVoltagePID.controlReference = PFCVOLTAGE_REFERENCE;
11 }

​The soft start routine is called immediately after initialization of the dsPIC DSC. A startup delay is first called, and then the output voltage reference is set to the measured output voltage. The reference is then incremented by a fixed amount until the final desired reference is reached. At this point, the soft start routine ends and normal system operation begins. The digital controller (DSC) allows for very flexible use of this soft start routine. The same routine can be called with different parameters at different times. For example, if the system is attempting to restart after a fault has occurred, the startup delay and soft start duration can be modified to a different value adding flexibility and versatility to your power conversion design.

Back to top

Sequencing

In multi-stage power supplies, there is also a need for sequencing the outputs in a predefined manner, as some outputs are dependent on others. This can be accomplished using a separate sequencing chip, or by using the housekeeping MCU with additional circuitry. A digital power supply eliminates the need for additional hardware because all sequencing and soft start routines can be implemented as part of the power supply control software.

In complex power conversion systems, such as multi-stage power supplies, you may have a number of different chips (controllers, FPGAs, memories, and so on) that require different voltage levels and a specific, well-defined sequence of turning on (and off). In other words, different chips in the system may require more than one supply voltage (VDD) causing power sequencing issues. See the accompanying figure. This means that a specific order must be followed (for instance first the MCU, then the FPGA, followed by the rest of the circuits). Predefined ramp up and ramp down duration are often defined by chip manufacturers and must be generated accordingly. In many cases, it is required that these voltages ramp from zero to the nominal output voltage (and vice-versa at switch off) in the correct order and with predefined ramp durations.

Power sequencing diagram

Due to the needs of controlling multiple outputs in some power conversion designs. the dsPIC DSC can cope with all these required functionalities while at the same time taking care of the soft start, power sequencing, over-current, over-voltage protection, and communication.

Sequencing can be implemented in a number of flexible configurations without any additional circuitry. Sequential and ratiometric sequencing schemes are shown in the accompanying image.

Sequential sequencing diagram

Ratiometric diagram

A digital power supply offers great flexibility in picking and choosing the soft start and sequencing schemes without the addition of dedicated chips or complex circuitry. In digital power sequencing, if one converter is dependent on the output of another stage, the software can set flags to indicate when one converter is completely turned on, and that the voltage is ready for the next stage to begin ramping up.

Back to top