|
@@ -421,7 +421,12 @@ namespace OTSClassifyEngine
|
|
|
a_nIncId = OTS_PARTICLE_TYPE::INVALID;
|
|
|
return TRUE;
|
|
|
}
|
|
|
- double sumOfCarboOxideFe = dOweight + dCarbonWeight + dFeWeight;
|
|
|
+ double sumOfCarboOxideFe=0;
|
|
|
+ if (dCarbonWeight > 0 || dFeWeight > 0)
|
|
|
+ {
|
|
|
+ sumOfCarboOxideFe = dOweight + dCarbonWeight + dFeWeight;
|
|
|
+ }
|
|
|
+
|
|
|
if (sumOfCarboOxideFe > 60)
|
|
|
{
|
|
|
a_nIncId = OTS_PARTICLE_TYPE::INVALID;
|