Skip to content
Snippets Groups Projects
Commit bfa31003 authored by Baptiste LENIAU's avatar Baptiste LENIAU
Browse files

Correct a huge bug leadings CLASS to fill a PWR MOX with 100% Pu !!

git-svn-id: svn+ssh://svn.in2p3.fr/class@462 0e7d625b-0364-4367-a6be-d5be4a48d228
parent f66d775b
No related branches found
No related tags found
No related merge requests found
...@@ -184,6 +184,7 @@ protected : ...@@ -184,6 +184,7 @@ protected :
bool fSubstitutionFuel; //!< true if a subtitution fuel as been set bool fSubstitutionFuel; //!< true if a subtitution fuel as been set
void FabricationPlantEvolution(cSecond t); //!< Deal the FabricationPlant Evolution void FabricationPlantEvolution(cSecond t); //!< Deal the FabricationPlant Evolution
void ResetArrays(); //!< empty the fFertileArray and fFissileArray
#ifndef __CINT__ #ifndef __CINT__
......
...@@ -253,6 +253,7 @@ void FabricationPlant::BuildFuelForReactor(int ReactorId, cSecond t) ...@@ -253,6 +253,7 @@ void FabricationPlant::BuildFuelForReactor(int ReactorId, cSecond t)
if(!IResult.second) if(!IResult.second)
IResult.first->second = EmptyIV; IResult.first->second = EmptyIV;
} }
ResetArrays();
} }
else else
{ {
...@@ -563,8 +564,15 @@ DBGL ...@@ -563,8 +564,15 @@ DBGL
else else
GetParc()->AddOutIncome( fFertileArray[0]*LambdaArray.back() ); GetParc()->AddOutIncome( fFertileArray[0]*LambdaArray.back() );
ResetArrays();
//Clear the Building Array (Fissile and Fertile)
DBGL
}
//________________________________________________________________________
void FabricationPlant::ResetArrays()
{
//Clear the Building Array (Fissile and Fertile)
fFissileArray.clear(); fFissileArray.clear();
fFissileArrayTime.clear(); fFissileArrayTime.clear();
fFissileArrayAdress.clear(); fFissileArrayAdress.clear();
...@@ -573,11 +581,8 @@ DBGL ...@@ -573,11 +581,8 @@ DBGL
fFertileArrayAdress.clear(); fFertileArrayAdress.clear();
fFertileList = fFissileList = IsotopicVector(); fFertileList = fFissileList = IsotopicVector();
DBGL
} }
//________________________________________________________________________
//________________________________________________________________________
pair<IsotopicVector, IsotopicVector> FabricationPlant::Separation(IsotopicVector isotopicvector, IsotopicVector ExtractedList) pair<IsotopicVector, IsotopicVector> FabricationPlant::Separation(IsotopicVector isotopicvector, IsotopicVector ExtractedList)
{ {
DBGL DBGL
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment