SPRADD9 September   2023 TMS320F2800132 , TMS320F2800133 , TMS320F2800135 , TMS320F2800137 , TMS320F2800152-Q1 , TMS320F2800153-Q1 , TMS320F2800154-Q1 , TMS320F2800155 , TMS320F2800155-Q1 , TMS320F2800156-Q1 , TMS320F2800157 , TMS320F2800157-Q1 , TMS320F280021 , TMS320F280021-Q1 , TMS320F280023 , TMS320F280023-Q1 , TMS320F280023C , TMS320F280025 , TMS320F280025-Q1 , TMS320F280025C , TMS320F280025C-Q1 , TMS320F280033 , TMS320F280034 , TMS320F280034-Q1 , TMS320F280036-Q1 , TMS320F280036C-Q1 , TMS320F280037 , TMS320F280037-Q1 , TMS320F280037C , TMS320F280037C-Q1 , TMS320F280038-Q1 , TMS320F280038C-Q1 , TMS320F280039 , TMS320F280039-Q1 , TMS320F280039C , TMS320F280039C-Q1 , TMS320F280040-Q1 , TMS320F280040C-Q1 , TMS320F280041 , TMS320F280041-Q1 , TMS320F280041C , TMS320F280041C-Q1 , TMS320F280045 , TMS320F280048-Q1 , TMS320F280048C-Q1 , TMS320F280049 , TMS320F280049-Q1 , TMS320F280049C , TMS320F280049C-Q1

 

  1.   1
  2.   Abstract
  3.   Trademarks
  4. 1Optimized ePWM Configurations
    1. 1.1 Cycle by Cycle (CBC) Protection
    2. 1.2 Reverse Current Control
    3. 1.3 ePWM Configurations Proposed
  5. 2How to Better Use the CMPSS for Totem Pole PFC
  6. 3How to Control the Slow Frequency MOSFETs
  7. 4How to Implement Reliable Zero-Crossing Detection
  8. 5How to Implement 2 Phase Interleaved Control
  9. 6References

How to Control the Slow Frequency MOSFETs

Generally, to further improve efficiency, MOSFETs will be used as the slow frequency FETs (driven at grid frequency, normally 50Hz or 60Hz), due to lower conduction loss compared to diodes, as shown as Q3 and Q4. Since it is driven at grid frequency, with always high or low state, some users might select GPIO to control the slow frequency MOSFETs. However, for the reliability consideration, it is still suggested to use ePWM output as the control signals, so that the fast protection response could be ensured for the MOSFETs during the fault conditions. Otherwise, the delay caused by the ISR to set low status for the GPIO might pose risks to the system.

To simplify the configuration, the continuous software force action of the AQ submodule can be used. For example, if using ePWMxA for Q3 and ePWMxB for Q4, in the positive cycle, the below settings can be applied.

EPWM_setActionQualifierContSWForceAction(base, EPWM_AQ_OUTPUT_A, EPWM_AQ_SW_OUTPUT_LOW);
EPWM_setActionQualifierContSWForceAction(base, EPWM_AQ_OUTPUT_B, EPWM_AQ_SW_OUTPUT_HIGH);

Note that when enabling the actions with TZ submodule for the slow frequency MOSFETs during fault conditions, one-shot trip mode should be used instead of CBC mode, since generally the MOSFETs selected for the slow frequency FETs are not suitable for hard switching conditions. Besides, after trip low with one-shot mode, the TZ flags could be cleared at the next zero-crossing point so as to enable the slow frequency MOSFETs with the least effect for the system.