TI中文支持网
TI专业的中文技术问题搜集分享网站

关于DC-DC BOOST电路过压保护的问题请教下

您好!
有个关于BOOST电路过压保护的问题请教下:
对比了TI的HV Solar MPPT DC-DC Converter 套件和太阳能套件Solar Explorer Kit 的HV_Solar_DC_DC-Main.c和SolarExplorer-Main.c,
发现Boost电压超过阈值需要进行过压保护时,都是关断DC-DC boost开关管后面的管子,
比如前者是关断LLC部分的两个管子:
                       if(Gui_wLLCOutputVolt > 4100)

{
EALLOW;
EPwm3Regs.TZFRC.bit.OST = 1;//Turn off LLC PWM when LLC output is 410V
EDIS;
}

后者是关断DC-DC后面DC-AC桥臂的四个管子:
case 2: // Check if DC Bus is greater than 33V , as currently the inverter is off this woudl happen quickly

     if(Gui_Vboost>_IQ9(31.0))//
{
PVInverterState=3;
……
}
……
break;
case 3: // Wait for shut down sequence
if(Gui_InvStop==1)
{
……
// Trip the PWM for the inverter
// software force the trip of inverter to disable the inverter completely
EALLOW;
EPwm1Regs.TZFRC.bit.OST=0x1;
EPwm2Regs.TZFRC.bit.OST=0x1;//关断DC-AC电路的四个开关管
EDIS;
……
}

为何没有去关断boost对应的开关管呢?
因为在实验中,我们的DC-DC boost电路出现Vboost升压过高,烧毁了DC-DC的开关管,后面DC-AC的四个管子倒是好的。
谢谢回复。

Seven Han:

您用的是controlsuite的例程吗?软件版本号是多少呢?是TI的EVM板么?

您好!
有个关于BOOST电路过压保护的问题请教下:
对比了TI的HV Solar MPPT DC-DC Converter 套件和太阳能套件Solar Explorer Kit 的HV_Solar_DC_DC-Main.c和SolarExplorer-Main.c,
发现Boost电压超过阈值需要进行过压保护时,都是关断DC-DC boost开关管后面的管子,
比如前者是关断LLC部分的两个管子:
                       if(Gui_wLLCOutputVolt > 4100)

{
EALLOW;
EPwm3Regs.TZFRC.bit.OST = 1;//Turn off LLC PWM when LLC output is 410V
EDIS;
}

后者是关断DC-DC后面DC-AC桥臂的四个管子:
case 2: // Check if DC Bus is greater than 33V , as currently the inverter is off this woudl happen quickly

     if(Gui_Vboost>_IQ9(31.0))//
{
PVInverterState=3;
……
}
……
break;
case 3: // Wait for shut down sequence
if(Gui_InvStop==1)
{
……
// Trip the PWM for the inverter
// software force the trip of inverter to disable the inverter completely
EALLOW;
EPwm1Regs.TZFRC.bit.OST=0x1;
EPwm2Regs.TZFRC.bit.OST=0x1;//关断DC-AC电路的四个开关管
EDIS;
……
}

为何没有去关断boost对应的开关管呢?
因为在实验中,我们的DC-DC boost电路出现Vboost升压过高,烧毁了DC-DC的开关管,后面DC-AC的四个管子倒是好的。
谢谢回复。

Igor An:

对于过压保护的保护策略可以有多种,例程中是优先保护负载端,对于boost这边也是有保护的,只是不在你看到这个位置动作。

当过压发生时,需要根据策略优先保护某一级,因为过压产生的原因可能是前端boost异常,也可能是后端控制异常导致(某些可以双向流动的拓扑),因此可以根据产品的保护策略优先保护一级,然后再保护另一级。一般的产品保护优先级排列是:人(包括操作员和用户),负载设备,自身(设备本身)。

当然,最好是三方面都不出问题,但优先顺序会有不同。

赞(0)
未经允许不得转载:TI中文支持网 » 关于DC-DC BOOST电路过压保护的问题请教下
分享到: 更多 (0)