|
@@ -92,7 +92,7 @@ class SafetyWarning:
|
|
|
cellshort_num=cellshort_sum.index(min(cellshort_sum))+1
|
|
|
cellshort=df_short_current['cellshort'+str(cellshort_num)] #获取内短路电芯的所有漏电流值,且最小值<阈值
|
|
|
cellshort_sum.remove(min(cellshort_sum)) #删除最小值,并判断其他所有电芯内短路电流>阈值
|
|
|
- if min(cellshort)<self.df_adjust_param.loc[24,'threshold'] and min(cellshort_sum)>self.df_adjust_param.loc[24,'threshold']:
|
|
|
+ if min(cellshort)<self.param.LeakCurrentLv2 and min(cellshort_sum)>self.param.LeakCurrentLv2:
|
|
|
cellshortfault=1
|
|
|
else:
|
|
|
cellshortfault=0
|