From 1d9dc584bcc797807413ed5c40d53334fe73ccf3 Mon Sep 17 00:00:00 2001 From: Baptiste Mouginot <mouginot.baptiste@gmail.com> Date: Mon, 30 Jun 2014 16:27:49 +0000 Subject: [PATCH] =?UTF-8?q?Full=20FabricationPLant=20management=E2=80=A6?= =?UTF-8?q?=20(need=20to=20test=20it)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: svn+ssh://svn.in2p3.fr/class@283 0e7d625b-0364-4367-a6be-d5be4a48d228 --- source/branches/CLASSV3/include/CLASS.hxx | 2 +- .../branches/CLASSV3/include/CLASSBackEnd.hxx | 8 +- .../CLASSV3/include/FabricationPlant.hxx | 53 +-- .../CLASSV3/include/IrradiationModel.hxx | 2 +- .../branches/CLASSV3/include/PhysicModels.hxx | 9 +- source/branches/CLASSV3/include/Pool.hxx | 3 +- source/branches/CLASSV3/include/Reactor.hxx | 12 +- source/branches/CLASSV3/src/CLASS.cxx | 2 +- source/branches/CLASSV3/src/CLASSBackEnd.cxx | 3 + .../branches/CLASSV3/src/FabricationPlant.cxx | 379 ++++++++++++++---- source/branches/CLASSV3/src/Makefile | 3 +- .../CLASSV3/src/PWR_THPU_FabricationPlant.cxx | 4 +- .../CLASSV3/src/PWR_THU_FabricationPlant.cxx | 4 +- source/branches/CLASSV3/src/Pool.cxx | 16 +- source/branches/CLASSV3/src/Reactor.cxx | 14 +- source/branches/CLASSV3/src/Storage.cxx | 14 +- 16 files changed, 391 insertions(+), 137 deletions(-) diff --git a/source/branches/CLASSV3/include/CLASS.hxx b/source/branches/CLASSV3/include/CLASS.hxx index 45eb760e5..3d48b925c 100755 --- a/source/branches/CLASSV3/include/CLASS.hxx +++ b/source/branches/CLASSV3/include/CLASS.hxx @@ -200,7 +200,7 @@ public : IsotopicVector GetGod() const { return fGod; } //!< Return the God Providings IsotopicVector - void AddGodIncome(ZAI zai, double quantity) { AddGod(zai*quantity); } //!< Add a ZAI*quantity to GodIncome + void AddGod(ZAI zai, double quantity) { AddGod(zai*quantity); } //!< Add a ZAI*quantity to GodIncome void AddGod(IsotopicVector isotopicvector) { fGod.Add(isotopicvector); } //!< Add a isotopicVector to GodIncome void AddWaste(ZAI zai, double quantity) { AddWaste(zai*quantity); } //!< Add a ZAI*quantity to Waste void AddWaste(IsotopicVector isotopicvector) { fWaste.Add(isotopicvector); } //!< Add a isotopicVector to Waste diff --git a/source/branches/CLASSV3/include/CLASSBackEnd.hxx b/source/branches/CLASSV3/include/CLASSBackEnd.hxx index 7a84b0061..ee6e40ac0 100644 --- a/source/branches/CLASSV3/include/CLASSBackEnd.hxx +++ b/source/branches/CLASSV3/include/CLASSBackEnd.hxx @@ -52,12 +52,17 @@ class CLASSBackEnd : public CLASSFacility //@{ DecayDataBank* GetDecayDataBank() { return fDecayDataBase;} //!< Return the pointer to the decay DataBank + vector<IsotopicVector> GetIVArray() const { return fIVArray; } //!< Return the IsotopicVector Array + vector<cSecond> GetIVArrayArrivalTime() const { return fIVArrayArrivalTime;} //!<Return the pointer to the OUtBackEndFacility + int GetIVNumber() const { return fIVArray.size();} bool GetStorageType() const { return fIsStorageType;} //!< Return the storageType CLASSBackEnd* GetOutBackEndFacility() const { return fOutBackEndFacility;} //!<Return the pointer to the OUtBackEndFacility - IsotopicVector GetIV(int i) const { if(i < (int)fIVArray.size()) return fIVArray[i]; + IsotopicVector GetIV(int i) const { if(i < (int)fIVArray.size()) return fIVArray[i]; else return IsotopicVector(); } + + //@} //********* Set Method *********// @@ -87,6 +92,7 @@ class CLASSBackEnd : public CLASSFacility protected : IsotopicVector GetDecay(IsotopicVector isotopicvector, cSecond t); //!< Get IsotopicVector Decay at the t time vector<IsotopicVector> fIVArray; ///< Vector containning all the fuel stored. + vector<cSecond> fIVArrayArrivalTime; ///< Vector containning all the fuel stored. CLASSBackEnd* fOutBackEndFacility; //!< Facility getting the fuel at the end of the cycle //********* Internal Parameter *********// diff --git a/source/branches/CLASSV3/include/FabricationPlant.hxx b/source/branches/CLASSV3/include/FabricationPlant.hxx index 54c2cede5..b919caa3b 100644 --- a/source/branches/CLASSV3/include/FabricationPlant.hxx +++ b/source/branches/CLASSV3/include/FabricationPlant.hxx @@ -88,9 +88,8 @@ public : void SetDecayDataBank(DecayDataBank* decayDB) {fDecayDataBase = decayDB;} //! Set the Decay DataBank void SetUpdateReferenceDBatEachStep(bool val){ fUpdateReferenceDBatEachStep = val;} //!< Set fUpdateReferenceDBatEachStep variable - void SetStorage(Storage* storage) { fStorage = storage; } //!< Set the Pointer to the Storage - - void SetChronologicalTimePriority(bool bval = true) { fChronologicalTimePriority = bval;} //!< Set the chronological priority (true for chronological, false unstead) + + void SetFiFo(bool bval = true) { fFiFo = bval;} //!< Set the chronological priority (true for chronological, false unstead) void SetSubstitutionFuel(EvolutionData fuel); //!< To use a subtition fuel if the fabrication fail (not enough material in stock) @@ -108,13 +107,12 @@ public : */ //@{ - Storage* GetStorage() { return fStorage; } //!< Return the Pointer to the Storage - + vector<Storage*> GetFissileStorage() { return fFissileStorage; } //!< Return the Pointer to the Storage + vector<Storage*> GetFertileStorage() { return fFertileStorage; } //!< Return the Pointer to the Storage + map<int, IsotopicVector > GetReactorFuturIncome() const { return fReactorFuturIV;} //!< Return the List of the Futur Fuel IV - IsotopicVector GetFullFabrication(); //!< Return the Sum of all Fuel waiting to be put in a reator - EvolutionData GetReactorEvolutionDB(int ReactorId); //!< Return the EvolutionData of Reactor ReactorId IsotopicVector GetDecay(IsotopicVector isotopicvector, cSecond t); //!< Get IsotopicVector Decay at the t time @@ -132,18 +130,20 @@ public : */ //@{ - void SetSeparartionEfficiencyIV(ZAI zai, double factor); ///< Add Valorisable Element - void Evolution(cSecond t); //!< Perform the Evolution - virtual void BuildFuelForReactor(int ReactorId); //!< Build a Fuel for the reactor ReactorId - void RecycleStock(double fraction); //!< Take a franction of the current stock - IsotopicVector GetStockToRecycle(); //!< Get the next stock to recycle - void DumpStock(); //!< Update the Stock status after building process - EvolutionData BuildEvolutiveDB(int ReactorId, IsotopicVector isotopicvector); - //!< Build the Evolution Database for the Reactir ReactorId Fuel - void TakeReactorFuel(int ReactorId) ; //!< Remove the Fuel of reactor ReactorId + void SetSeparartionEfficiencyIV(ZAI zai, double factor); ///< Add Valorisable Element + void Evolution(cSecond t); //!< Perform the Evolution + + void BuildFuelForReactor(int ReactorId); //!< Build a Fuel for the reactor ReactorId + void DumpStock(vector<double> lambdaArray); //!< Update the Stock status after building process + void TakeReactorFuel(int ReactorId) ; //!< Remove the Fuel of reactor ReactorId - void BuildFissileArray(IsotopicVector FissileList); + + void BuildFissileArray(); + void BuildFertileArray(); + IsotopicVector BuildFuelFromEqModel(vector<double> LambdaArray); + + void SortArray(int i); //@} @@ -161,15 +161,22 @@ protected : map< int,IsotopicVector > fReactorFuturIV; ///< List of the Futur Fuel Isotopic Vector used in the reactor - Storage* fStorage; - vector<Storage*> fFissileStorage; //!< Pointer to the Storage to recycle used to get the fissile part of the fuel - vector<Storage*> fFertileStorage; //!< Pointer to the Storage to recycle used to get the fertile part of the fuel - Storage* fReUsable; //!< Pointer to the Storage using for recycling unused Product + vector<Storage*> fFissileStorage; //!< Pointer to the Storage to recycle used to get the fissile part of the fuel + vector<IsotopicVector> fFissileArray; + vector<cSecond> fFissileArrayTime; + vector< pair<int,int> > fFissileArrayAdress; + IsotopicVector fFissileList; - vector< pair<int, double> > fFractionToTake; //!< The Temporary Storage IsotopicVector + vector<Storage*> fFertileStorage; //!< Pointer to the Storage to recycle used to get the fertile part of the fuel + vector<IsotopicVector> fFertileArray; + vector<cSecond> fFertileArrayTime; + vector< pair<int,int> > fFertileArrayAdress; + IsotopicVector fFertileList; + + Storage* fReUsable; //!< Pointer to the Storage using for recycling unused Product - bool fChronologicalTimePriority; //!< Set the Chronological Priotity (for the Stock Management) or the anti-chronological one + bool fFiFo; //!< Set the First In First Out bool fSubstitutionFuel; //!< true if a subtitution fuel as been set EvolutionData fSubstitutionEvolutionData; //!< EvolutionData of the subtitution fuel diff --git a/source/branches/CLASSV3/include/IrradiationModel.hxx b/source/branches/CLASSV3/include/IrradiationModel.hxx index e0e3915f7..4c28397a8 100644 --- a/source/branches/CLASSV3/include/IrradiationModel.hxx +++ b/source/branches/CLASSV3/include/IrradiationModel.hxx @@ -56,7 +56,7 @@ class IrradiationModel : public CLASSObject \param double Power, constant power to use for irradation \param double irradiationtime, time of the irradiation */ - virtual EvolutionData GenerateEvolutionData(IsotopicVector IV, EvolutionData XSSet, double Power, double cycletime) { return 0;} + virtual EvolutionData GenerateEvolutionData(IsotopicVector IV, EvolutionData XSSet, double Power, double cycletime) { return EvolutionData();} //} diff --git a/source/branches/CLASSV3/include/PhysicModels.hxx b/source/branches/CLASSV3/include/PhysicModels.hxx index cc6fe9c18..d2bbd440e 100644 --- a/source/branches/CLASSV3/include/PhysicModels.hxx +++ b/source/branches/CLASSV3/include/PhysicModels.hxx @@ -11,10 +11,11 @@ @authors BLG,BaM @version 1.0 */ - #include "CLASSObject.hxx" - #include "EquivalenceModel.hxx" - #include "XSModel.hxx" - #include "IrradiationModel.hxx" +#include "CLASSObject.hxx" +#include "EquivalenceModel.hxx" +#include "XSModel.hxx" +#include "IrradiationModel.hxx" +#include "EvolutionData.hxx" using namespace std; diff --git a/source/branches/CLASSV3/include/Pool.hxx b/source/branches/CLASSV3/include/Pool.hxx index 3198f6bee..5f452de38 100755 --- a/source/branches/CLASSV3/include/Pool.hxx +++ b/source/branches/CLASSV3/include/Pool.hxx @@ -122,7 +122,7 @@ public : //@{ vector<cSecond> GetCoolingStartingTime() const - { return fCoolingStartingTime; } //!< Return the vector of Cooling Sstarting Time + { return GetIVArrayArrivalTime(); } //!< Return the vector of Cooling Sstarting Time void RemoveIVCooling(int i); //!< Remove a Cooling IsotopicVector void AddIV(IsotopicVector isotopicvector); //!< Add an Isotopicvector to the IVArray @@ -154,7 +154,6 @@ protected : //********* Isotopic Quantity *********// //--------- Cooling ---------// - vector<cSecond> fCoolingStartingTime; ///< Vector of the Cooling Starting Time vector<int> fCoolingIndex; ///< Vector of the Cooling Index int fCoolingLastIndex; //!< Number of Cooling IV Treated vector<int> fCoolingEndOfCycle; //!< Index of the Cooling IV reaching the End of a Cooling Cycle diff --git a/source/branches/CLASSV3/include/Reactor.hxx b/source/branches/CLASSV3/include/Reactor.hxx index 06c8ab9ce..d353b0166 100755 --- a/source/branches/CLASSV3/include/Reactor.hxx +++ b/source/branches/CLASSV3/include/Reactor.hxx @@ -21,7 +21,7 @@ class CLASS; class CLASSBackEnd; //class Pool; class EvolutionData; -class FuelDataBank; +class PhysicModels; class FabricationPlant; class Storage; class LogFile; @@ -72,7 +72,7 @@ public : \param creationtime creation time \param lifetime working time duration. */ - Reactor(LogFile* log, FuelDataBank* fueltypeDB, + Reactor(LogFile* log, PhysicModels* fueltypeDB, FabricationPlant* fabricationplant, CLASSBackEnd* Pool, cSecond creationtime , cSecond lifetime); //} @@ -90,7 +90,7 @@ public : \param HMMass Mass of Heavy Metal in the Reactor \param BurnUp Burnup reach by the fuel at the end of the cycle */ - Reactor(LogFile* log, FuelDataBank* fueltypeDB, + Reactor(LogFile* log, PhysicModels* fueltypeDB, FabricationPlant* fabricationplant, CLASSBackEnd* Pool, cSecond creationtime , cSecond lifetime, cSecond cycletime, double HMMass, double BurnUp); @@ -110,7 +110,7 @@ public : \param BurnUp Burnup reach by the fuel at the end of the cycle \param ChargeFactor effective charge of the reactor. */ - Reactor(LogFile* log, FuelDataBank* fueltypeDB, + Reactor(LogFile* log, PhysicModels* fueltypeDB, FabricationPlant* fabricationplant, CLASSBackEnd* Pool, cSecond creationtime , cSecond lifetime, double Power, double HMMass, double BurnUp, double ChargeFactor); @@ -159,7 +159,7 @@ public : EvolutionData GetEvolutionDB() const { return fEvolutionDB; } //!< Return the Evolution database of the Fuel - FuelDataBank* GetFuelType() const { return fFuelTypeDB; } //!< Return the Fuel Type DB of the reactor + PhysicModels* GetFuelType() const { return fFuelTypeDB; } //!< Return the Fuel Type DB of the reactor CLASSBackEnd* GetOutBackEndFacility() const { return fOutBackEndFacility; } //!< Return the pointer to Associeted BackEnd Facility FabricationPlant* GetFabricationPlant() const { return fFabricationPlant; } //!< Return the Pointer to the FabricationPlant @@ -246,7 +246,7 @@ protected : Storage* fStorage; //!< Pointer to the Stock (only for reprocessing fuel in fixed base...) EvolutionData fEvolutionDB; //!< Pointer to the Evolution DataBase - FuelDataBank* fFuelTypeDB; //! Pointer to a Fuel Type Database + PhysicModels* fFuelTypeDB; //! Pointer to a Fuel Type Database double fPower; ///< Power (in Watt) diff --git a/source/branches/CLASSV3/src/CLASS.cxx b/source/branches/CLASSV3/src/CLASS.cxx index 28e7e4cec..121a82dee 100755 --- a/source/branches/CLASSV3/src/CLASS.cxx +++ b/source/branches/CLASSV3/src/CLASS.cxx @@ -807,7 +807,7 @@ void CLASS::UpdateParc() ResetQuantity(); for(int i =0; i < (int)fFabricationPlant.size(); i++) - fFuelFabrication += fFabricationPlant[i]->GetFullFabrication(); + fFuelFabrication += fFabricationPlant[i]->GetInsideIV(); for(int i = 0; i < (int) fPool.size();i++) fTotalCooling += fPool[i]->GetInsideIV(); diff --git a/source/branches/CLASSV3/src/CLASSBackEnd.cxx b/source/branches/CLASSV3/src/CLASSBackEnd.cxx index b49185071..10568fa43 100644 --- a/source/branches/CLASSV3/src/CLASSBackEnd.cxx +++ b/source/branches/CLASSV3/src/CLASSBackEnd.cxx @@ -44,6 +44,7 @@ void CLASSBackEnd::ClearIVArray() IsotopicVector EmptyIV; fInsideIV = EmptyIV; fIVArray.clear(); + fIVArrayArrivalTime.clear(); } //________________________________________________________________________ @@ -53,6 +54,8 @@ void CLASSBackEnd::AddIV(IsotopicVector isotopicvector) AddCumulativeIVIn(isotopicvector); fIVArray.push_back(isotopicvector); + fIVArrayArrivalTime.push_back(fInternalTime); + } diff --git a/source/branches/CLASSV3/src/FabricationPlant.cxx b/source/branches/CLASSV3/src/FabricationPlant.cxx index c270b9a94..6150b0f92 100644 --- a/source/branches/CLASSV3/src/FabricationPlant.cxx +++ b/source/branches/CLASSV3/src/FabricationPlant.cxx @@ -48,7 +48,6 @@ FabricationPlant::FabricationPlant():CLASSFacility() SetFacilityType(16); SetName("F_FabricationPLant."); - fStorage = 0; fReUsable = 0; } @@ -58,7 +57,7 @@ FabricationPlant::FabricationPlant(LogFile* log, double fabricationtime):CLASSFa SetFacilityType(16); SetName("F_FabricationPLant."); - fChronologicalTimePriority = false; + fFiFo = false; fUpdateReferenceDBatEachStep = false; fSubstitutionFuel = false; @@ -123,8 +122,7 @@ void FabricationPlant::Evolution(cSecond t) void FabricationPlant::FabricationPlantEvolution(cSecond t) { - IsotopicVector EmptyIV; - fInsideIV = EmptyIV; + IsotopicVector fInsideIV; map<int ,cSecond >::iterator it; @@ -169,27 +167,250 @@ void FabricationPlant::BuildFuelForReactor(int ReactorId) -// PhysicModels* FuelType = GetParc()->GetReactor()[ReactorId]->GetFuelType(); + double R_HM_Mass = GetParc()->GetReactor()[ ReactorId ]->GetHeavyMetalMass(); + double R_BU = GetParc()->GetReactor()[ ReactorId ]->GetBurnUp(); + double R_CycleTime = GetParc()->GetReactor()[ ReactorId ]->GetCycleTime(); + double R_Power = GetParc()->GetReactor()[ ReactorId ]->GetPower(); - PhysicModels* FuelType; + PhysicModels* FuelType = GetParc()->GetReactor()[ReactorId]->GetFuelType(); + //PhysicModels* FuelType; - IsotopicVector FissileList = FuelType->GetEquivalenceModel()->GetFissileList(); + fFissileList = FuelType->GetEquivalenceModel()->GetFissileList(); + BuildFissileArray(); + + + fFertileList = FuelType->GetEquivalenceModel()->GetFertileList(); + + + + + if(fFertileStorage.size() != 0) // If the fertile need to be taken in stock + BuildFertileArray(); + else // if their is not stock and the fertile come from outside of the park + { + fFertileArray.push_back( fFertileList / fFertileList.GetTotalMass() * R_HM_Mass ); + } + + + vector<double> LambdaArray = FuelType->GetEquivalenceModel()->BuildFuel(R_HM_Mass, R_BU, fFissileArray, fFertileArray); + + + if(LambdaArray[0] != -1) + { + IsotopicVector IV = BuildFuelFromEqModel(LambdaArray); + EvolutionData EvolDB = FuelType->GenerateEvolutionData( /*GetDecay(IV,fCycleTime)*/ IV , R_CycleTime, R_Power); + + { + pair<map<int, IsotopicVector>::iterator, bool> IResult; + IResult = fReactorFuturIV.insert( pair<int, IsotopicVector>(ReactorId, IV) ); + if(!IResult.second) + IResult.first->second = IV; + } + { + pair<map<int, EvolutionData>::iterator, bool> IResult; + IResult = fReactorFuturDB.insert( pair<int, EvolutionData>(ReactorId,EvolDB) ); + if(!IResult.second) + IResult.first->second = EvolDB; + } + fInsideIV += IV; + AddCumulativeIVIn(IV); + + return; + } + else + { + + if (!fSubstitutionFuel) + { + { + EvolutionData EmptyDB; + pair<map<int, EvolutionData>::iterator, bool> IResult; + IResult = fReactorFuturDB.insert( pair<int, EvolutionData>(ReactorId,EmptyDB) ); + if(!IResult.second) + IResult.first->second = EmptyDB; + } + { + IsotopicVector EmptyIV; + pair<map<int, IsotopicVector>::iterator, bool> IResult; + IResult = fReactorFuturIV.insert( pair<int, IsotopicVector>(ReactorId,EmptyIV) ); + if(!IResult.second) + IResult.first->second = EmptyIV; + } + } + else + { + + IsotopicVector IV = fSubstitutionEvolutionData.GetIsotopicVectorAt(0); + EvolutionData evolutiondb = fSubstitutionEvolutionData * R_HM_Mass / IV.GetTotalMass(); + + IV = IV* R_HM_Mass / IV.GetTotalMass(); + { + pair<map<int, IsotopicVector>::iterator, bool> IResult; + IResult = fReactorFuturIV.insert( pair<int, IsotopicVector>(ReactorId, IV) ); + if(!IResult.second) + IResult.first->second = IV; + } + { + pair<map<int, EvolutionData>::iterator, bool> IResult; + IResult = fReactorFuturDB.insert( pair<int, EvolutionData>(ReactorId,evolutiondb) ); + if(!IResult.second) + IResult.first->second = evolutiondb; + } + GetParc()->AddGod( IV ); + fInsideIV += IV; + AddCumulativeIVIn(IV); + + + + } + return; + } - BuildFissileArray(FissileList); } -void FabricationPlant::BuildFissileArray(IsotopicVector FissileList) +void FabricationPlant::BuildFissileArray() { + for(int i = 0; i < (int)fFissileStorage.size(); i++) + { + vector<IsotopicVector> IVArray = fFissileStorage[i]->GetIVArray(); + for(int j = 0; j < (int)IVArray.size(); j++) + { + + IsotopicVector SeparatedIV = Separation(IVArray[j], fFissileList).first; + IsotopicVector CooledSeparatedIV = GetDecay( SeparatedIV , GetCycleTime()); + + fFissileArray.push_back( CooledSeparatedIV ); + fFissileArrayAdress.push_back( pair<int,int>(i,j) ); + fFissileArrayTime.push_back(fFissileStorage[i]->GetIVArrayArrivalTime()[j]); + } + + } + SortArray(0); } +void FabricationPlant::BuildFertileArray() +{ + + + for(int i = 0; i < (int)fFertileStorage.size(); i++) + { + vector<IsotopicVector> IVArray = fFertileStorage[i]->GetIVArray(); + for(int j = 0; j < (int)IVArray.size(); j++) + { + + IsotopicVector SeparatedIV = Separation(IVArray[j], fFertileList).first; + IsotopicVector CooledSeparatedIV = GetDecay( SeparatedIV , GetCycleTime()); + + + fFertileArray.push_back( CooledSeparatedIV ); + fFertileArrayAdress.push_back( pair<int,int>(i,j) ); + fFertileArrayTime.push_back(fFertileStorage[i]->GetIVArrayArrivalTime()[j]); + } + + } + + SortArray(1); + +} + +void FabricationPlant::SortArray(int i) +{ + + + vector<IsotopicVector> IVArray; + vector<cSecond> TimeArray; + vector< pair<int,int> > AdressArray; + + if(i==0) //Fissile + { + IVArray = fFissileArray; + TimeArray = fFissileArrayTime; + AdressArray = fFissileArrayAdress; + } + else if (i==1) //Fertile + { + IVArray = fFertileArray; + TimeArray = fFertileArrayTime; + AdressArray = fFertileArrayAdress; + + } + + if(fFiFo) + { + for(int j = 0; j < (int)TimeArray.size(); j++) + { + for (int k = j+1; k < (int)TimeArray.size(); k++) + { + cSecond time_tmp = TimeArray[j]; + pair<int,int> Adress_tmp = AdressArray[j]; + IsotopicVector IV_tmp = IVArray[j]; + + if(time_tmp > TimeArray[k]) + { + TimeArray[j] = TimeArray[k]; + TimeArray[k] = time_tmp; + + AdressArray[j] = AdressArray[k]; + AdressArray[k] = Adress_tmp; + + IVArray[j] = IVArray[k]; + IVArray[k] = IV_tmp; + } + + } + } + } + else + { + for(int j = 0; j < (int)fFissileArrayTime.size(); j++) + { + for (int k = j+1; k < (int)TimeArray.size(); k++) + { + cSecond time_tmp = TimeArray[j]; + pair<int,int> Adress_tmp = AdressArray[j]; + IsotopicVector IV_tmp = IVArray[j]; + + if(time_tmp < TimeArray[k]) + { + TimeArray[j] = TimeArray[k]; + TimeArray[k] = time_tmp; + + AdressArray[j] = AdressArray[k]; + AdressArray[k] = Adress_tmp; + + IVArray[j] = IVArray[k]; + IVArray[k] = IV_tmp; + } + + } + } + } + + + if(i==0) //Fissile + { + fFissileArray = IVArray; + fFissileArrayTime = TimeArray; + fFissileArrayAdress = AdressArray; + } + else if (i==1) //Fertile + { + fFertileArray = IVArray; + fFertileArrayTime = TimeArray; + fFertileArrayAdress = AdressArray; + + } + + +} @@ -213,23 +434,6 @@ void FabricationPlant::SetSubstitutionFuel(EvolutionData fuel) //________________________________________________________________________ //_____________________________ Reactor & DB _____________________________ //________________________________________________________________________ -EvolutionData FabricationPlant::BuildEvolutiveDB(int ReactorId,IsotopicVector isotopicvector) -{ - - FuelDataBank* evolutiondb = GetParc()->GetReactor()[ReactorId]->GetFuelType(); - - isotopicvector = GetDecay(isotopicvector, GetCycleTime()); - - EvolutionData EvolBuild; - -#pragma omp single - { - EvolBuild = evolutiondb->GenerateEvolutionData(isotopicvector, GetParc()->GetReactor()[ReactorId]->GetCycleTime(), GetParc()->GetReactor()[ReactorId]->GetPower()); - } - return EvolBuild; - -} - //________________________________________________________________________ void FabricationPlant::TakeReactorFuel(int Id) { @@ -244,80 +448,115 @@ void FabricationPlant::TakeReactorFuel(int Id) if (it2 != fReactorFuturIV.end()) (*it2).second = IV; + + map< int,EvolutionData >::iterator it = fReactorFuturDB.find(Id); + (*it).second = EvolutionData(); + } - //________________________________________________________________________ +//________________________________________________________________________ EvolutionData FabricationPlant::GetReactorEvolutionDB(int ReactorId) { - + map< int,EvolutionData >::iterator it = fReactorFuturDB.find(ReactorId); return (*it).second; - -} - -IsotopicVector FabricationPlant::GetFullFabrication() -{ - - IsotopicVector tmp = 0*ZAI(0,0,0); - - map<int, IsotopicVector > reactorNextStep = fReactorFuturIV; - map<int, IsotopicVector >::iterator it; - for ( it = reactorNextStep.begin(); it != reactorNextStep.end(); it++) - tmp += (*it).second; - - return tmp; - } - //________________________________________________________________________ //_______________________________ Storage ________________________________ //________________________________________________________________________ - -IsotopicVector FabricationPlant::GetStockToRecycle() +IsotopicVector FabricationPlant::BuildFuelFromEqModel(vector<double> LambdaArray) { - - IsotopicVector NextStock; - int IdToTake = -1; - - if(fChronologicalTimePriority ) - IdToTake = (int)( fFractionToTake.size() ); - else - IdToTake = (int)( fStorage->GetIVArray().size() -1 - fFractionToTake.size() ); + IsotopicVector BuildedFuel; + IsotopicVector Lost; - if(0 <= IdToTake && IdToTake < (int)fStorage->GetIVArray().size()) + for(int i = 0; i < (int)fFissileArray.size(); i++) { - NextStock = fStorage->GetIVArray()[IdToTake]; - fFractionToTake.push_back( pair<int,double>(IdToTake,0.) ); + if(LambdaArray[i] != 0) + { + int Stor_N = fFissileArrayAdress[i].first; + int IV_N = fFissileArrayAdress[i].second; + + pair<IsotopicVector, IsotopicVector> Separated_Lost; + Separated_Lost = Separation( fFissileStorage[Stor_N]->GetIVArray()[IV_N]*LambdaArray[i], fFissileList); + BuildedFuel += Separated_Lost.first; + Lost += Separated_Lost.second; + } } - else NextStock += ZAI(-1,-1,-1) *1; - - return NextStock; - + + if(fFertileStorage.size() != 0) + { + for(int i = fFissileArray.size(); i < (int)(fFertileArray.size()+fFissileArray.size()); i++) + { + if(LambdaArray[i] != 0) + { + int Stor_N = fFertileArrayAdress[i].first; + int IV_N = fFertileArrayAdress[i].second; + + pair<IsotopicVector, IsotopicVector> Separated_Lost; + Separated_Lost = Separation( fFertileStorage[Stor_N]->GetIVArray()[IV_N]*LambdaArray[i], fFissileList); + BuildedFuel += Separated_Lost.first; + Lost += Separated_Lost.second; + } + } + } + else + BuildedFuel += fFertileArray[0]*LambdaArray.back(); + + DumpStock(LambdaArray); + + + return BuildedFuel; + } + //________________________________________________________________________ -void FabricationPlant::RecycleStock(double fraction) +void FabricationPlant::DumpStock(vector<double> LambdaArray) { - - fFractionToTake.back().second = fraction; - -} + for(int i = 0; i < (int)fFissileArray.size(); i++) + { + if(LambdaArray[i] != 0) + { + int Stor_N = fFissileArrayAdress[i].first; + int IV_N = fFissileArrayAdress[i].second; + fFissileStorage[Stor_N]->TakeFractionFromStock( IV_N, LambdaArray[i] ); + } + } + if(fFertileStorage.size() != 0) + { + for(int i = fFissileArray.size(); i < (int)(fFertileArray.size()+fFissileArray.size()); i++) + { + if(LambdaArray[i] != 0) + { + int Stor_N = fFertileArrayAdress[i].first; + int IV_N = fFertileArrayAdress[i].second; + + fFertileStorage[Stor_N]->TakeFractionFromStock( IV_N, LambdaArray[i] ); + } + } + } + else + GetParc()->AddGod( fFertileArray[0]*LambdaArray.back() ); - //________________________________________________________________________ -void FabricationPlant::DumpStock() -{ + //Clear the Building Array (Fissile and Fertile) + fFissileArray.clear(); + fFissileArrayTime.clear(); + fFissileArrayAdress.clear(); + fFertileArray.clear(); + fFertileArrayTime.clear(); + fFertileArrayAdress.clear(); + fFertileList = fFissileList = IsotopicVector(); } //________________________________________________________________________ -//pair<IsotopicVector, IsotopicVector> FabricationPlant::Separation(IsotopicVector IVStock, IsotopicVector IVToExtract) pair<IsotopicVector, IsotopicVector> FabricationPlant::Separation(IsotopicVector isotopicvector, IsotopicVector ExtractedList) { diff --git a/source/branches/CLASSV3/src/Makefile b/source/branches/CLASSV3/src/Makefile index eb84ed95f..3108e59e4 100755 --- a/source/branches/CLASSV3/src/Makefile +++ b/source/branches/CLASSV3/src/Makefile @@ -22,8 +22,6 @@ OBJS = CLASS.o \ CLASSBackEnd.o CLASSBackEndDict.o\ Storage.o StorageDict.o\ FabricationPlant.o FabricationPlantDict.o \ - PWR_THU_FabricationPlant.o \ - PWR_THPU_FabricationPlant.o \ Pool.o PoolDict.o\ Reactor.o ReactorDict.o \ FuelDataBank.o DecayDataBank.o \ @@ -48,6 +46,7 @@ ROOTOBJS = CLASSObject.o CLASSObjectDict.o\ FuelDataBank.o DecayDataBank.o \ DynamicalSystem.o\ EvolutionData.o EvolutionDataDict.o \ + PhysicModels.o \ LogFile.o diff --git a/source/branches/CLASSV3/src/PWR_THPU_FabricationPlant.cxx b/source/branches/CLASSV3/src/PWR_THPU_FabricationPlant.cxx index cb3921527..5b385a5d0 100644 --- a/source/branches/CLASSV3/src/PWR_THPU_FabricationPlant.cxx +++ b/source/branches/CLASSV3/src/PWR_THPU_FabricationPlant.cxx @@ -50,7 +50,7 @@ PWR_THPU_FabricationPlant::PWR_THPU_FabricationPlant(LogFile* log) SetFacilityType(16); SetLog(log); - fChronologicalTimePriority = false; + fFiFo = false; SetCycleTime(-1); fUpdateReferenceDBatEachStep = false; fSubstitutionFuel = false; @@ -74,7 +74,7 @@ PWR_THPU_FabricationPlant::PWR_THPU_FabricationPlant(LogFile* log, Storage* stor SetLog(log); - fChronologicalTimePriority = false; + fFiFo = false; fUpdateReferenceDBatEachStep = false; fSubstitutionFuel = false; diff --git a/source/branches/CLASSV3/src/PWR_THU_FabricationPlant.cxx b/source/branches/CLASSV3/src/PWR_THU_FabricationPlant.cxx index fec48037f..05de6bf62 100644 --- a/source/branches/CLASSV3/src/PWR_THU_FabricationPlant.cxx +++ b/source/branches/CLASSV3/src/PWR_THU_FabricationPlant.cxx @@ -48,7 +48,7 @@ PWR_THU_FabricationPlant::PWR_THU_FabricationPlant(LogFile* log) SetFacilityType(16); SetLog(log); - fChronologicalTimePriority = false; + fFiFo = false; SetCycleTime(-1); fUpdateReferenceDBatEachStep = false; fSubstitutionFuel = false; @@ -72,7 +72,7 @@ PWR_THU_FabricationPlant::PWR_THU_FabricationPlant(LogFile* log, Storage* storag SetLog(log); - fChronologicalTimePriority = false; + fFiFo = false; fUpdateReferenceDBatEachStep = false; fSubstitutionFuel = false; diff --git a/source/branches/CLASSV3/src/Pool.cxx b/source/branches/CLASSV3/src/Pool.cxx index b72e984d0..5e78d7e41 100755 --- a/source/branches/CLASSV3/src/Pool.cxx +++ b/source/branches/CLASSV3/src/Pool.cxx @@ -105,7 +105,7 @@ void Pool::SetIVArray(vector<IsotopicVector> ivarray) void Pool::SetIVArray(vector<IsotopicVector> ivarray, vector<cSecond> timearray) { fIVArray = ivarray; - fCoolingStartingTime = timearray; + fIVArrayArrivalTime = timearray; } //________________________________________________________________________ @@ -118,7 +118,7 @@ void Pool::AddIV(IsotopicVector IV) fIVArray.push_back(IV); fInsideIV += IV; - fCoolingStartingTime.push_back(fInternalTime); + fIVArrayArrivalTime.push_back(fInternalTime); fCoolingLastIndex++; fCoolingIndex.push_back(fCoolingLastIndex); @@ -133,7 +133,7 @@ void Pool::RemoveIVCooling(int i) //!< Remove a Cooling IsotopicVector AddCumulativeIVOut(fIVArray[i]); fIVArray.erase(fIVArray.begin()+i); - fCoolingStartingTime.erase(fCoolingStartingTime.begin()+i); + fIVArrayArrivalTime.erase( fIVArrayArrivalTime.begin()+i); fCoolingIndex.erase(fCoolingIndex.begin()+i); } @@ -164,19 +164,19 @@ void Pool::CoolingEvolution(cSecond t) #pragma omp parallel for for ( int i = 0 ; i < (int)fIVArray.size() ; i++) { - if ( abs(t - fCoolingStartingTime[i] - fCycleTime) < 3600 ) // ">" should not append, only "=" is normal... + if ( abs(t - fIVArrayArrivalTime[i] - fCycleTime) < 3600 ) // ">" should not append, only "=" is normal... { - if (t - fCoolingStartingTime[i] > fCycleTime) // Warning & Quit + if (t - fIVArrayArrivalTime[i] > fCycleTime) // Warning & Quit { cout << "!!Warning!! !!!TreamtmentFactory!!! Cooling Step : " << t/3600./24/365.25<< " :" << " An evolution Step is probably missing ! " << " " << endl; - cout << t << " " << fCoolingStartingTime[i] << " " << fCycleTime << endl; + cout << t << " " << fIVArrayArrivalTime[i] << " " << fCycleTime << endl; GetLog()->fLog << "!!Warning!! !!!TreamtmentFactory!!! Cooling Step : "<< t << " :" << " An evolution Step is probably missing ! " << endl; exit (1); } - RemainingCoolingTime = fCycleTime - (fInternalTime - fCoolingStartingTime[i]); + RemainingCoolingTime = fCycleTime - (fInternalTime - fIVArrayArrivalTime[i]); //Cooling Decay fIVArray[i] = GetDecay( fIVArray[i], RemainingCoolingTime); @@ -185,7 +185,7 @@ void Pool::CoolingEvolution(cSecond t) {fCoolingEndOfCycle.push_back(i);} } - else if ( fCoolingStartingTime[i] != t ) + else if ( fIVArrayArrivalTime[i] != t ) { fIVArray[i] = GetDecay( fIVArray[i] , EvolutionTime); fInsideIV += fIVArray[i]; diff --git a/source/branches/CLASSV3/src/Reactor.cxx b/source/branches/CLASSV3/src/Reactor.cxx index 3243fd51c..1030ccd75 100755 --- a/source/branches/CLASSV3/src/Reactor.cxx +++ b/source/branches/CLASSV3/src/Reactor.cxx @@ -1,7 +1,7 @@ #include "Reactor.hxx" #include "EvolutionData.hxx" -#include "FuelDataBank.hxx" +#include "PhysicModels.hxx" #include "Pool.hxx" #include "FabricationPlant.hxx" #include "Storage.hxx" @@ -56,7 +56,7 @@ Reactor::Reactor(LogFile* log):CLASSFacility(log) } -Reactor::Reactor(LogFile* log, FuelDataBank* fueltypeDB, +Reactor::Reactor(LogFile* log, PhysicModels* fueltypeDB, FabricationPlant* fabricationplant, CLASSBackEnd* Pool, cSecond creationtime, cSecond lifetime):CLASSFacility(log, creationtime, lifetime) @@ -86,7 +86,6 @@ Reactor::Reactor(LogFile* log, FuelDataBank* fueltypeDB, cout << "!!INFO!! !!!Reactor!!! A Reactor has been define :" << endl; cout << "\t Fuel Composition is not fixed ! "<< endl; - cout << "\t Fuel Type set to : \t "<< fFuelTypeDB->GetFuelType() << endl; cout << "\t Creation time set at \t " << (double)(GetCreationTime()/3600/24/365.25) << " year" << endl; cout << "\t Life time (Operating's Duration) set at \t " << (double)(GetLifeTime()/3600/24/365.25) << " year" << endl << endl; cout << "!!WARNING!! !!!Reactor!!! You need to set Burn-up/Power/CycleTime (2 of 3) & Heavy Metal Mass Manualy !! " << endl; @@ -94,14 +93,13 @@ Reactor::Reactor(LogFile* log, FuelDataBank* fueltypeDB, GetLog()->fLog << "!!INFO!! !!!Reactor!!! A Reactor has been define :" << endl; GetLog()->fLog << "\t Fuel Composition is not fixed ! "<< endl; - GetLog()->fLog << "\t Fuel Type set to : \t "<< fFuelTypeDB->GetFuelType() << endl; GetLog()->fLog << "\t Creation time set at \t " << (double)(GetCreationTime()/3600/24/365.25) << " year" << endl; GetLog()->fLog << "\t Life time (Operating's Duration) set at \t " << (double)(GetLifeTime()/3600/24/365.25) << " year" << endl << endl; GetLog()->fLog << "!!WARNING!! !!!Reactor!!! You need to set Burn-up/Power/CycleTime (2 of 3) & Heavy Metal Mass Manualy !! " << endl; } -Reactor::Reactor(LogFile* log, FuelDataBank* fueltypeDB, FabricationPlant* fabricationplant, CLASSBackEnd* Pool, +Reactor::Reactor(LogFile* log, PhysicModels* fueltypeDB, FabricationPlant* fabricationplant, CLASSBackEnd* Pool, cSecond creationtime, cSecond lifetime, double Power, double HMMass, double BurnUp, double ChargeFactor):CLASSFacility(log, creationtime, lifetime) { @@ -132,7 +130,6 @@ Reactor::Reactor(LogFile* log, FuelDataBank* fueltypeDB, FabricationPlant* fabri cout << "!!INFO!! !!!Reactor!!! A Reactor has been define :" << endl; cout << "\t Fuel Composition is not fixed ! "<< endl; - cout << "\t Fuel Type set to : \t "<< fFuelTypeDB->GetFuelType() << endl; cout << "\t Creation time set at \t " << (double)(GetCreationTime()/3600/24/365.25) << " year" << endl; cout << "\t Life time (Operating's Duration) set at \t " << (double)(GetLifeTime()/3600/24/365.25) << " year" << endl; cout << "\t The Effective Thermal Power is \t " << (double)(fPower *1e-6) << " MW (with Full Power " << Power << " and " << ChargeFactor << " Charge Factor)"<< endl; @@ -142,7 +139,6 @@ Reactor::Reactor(LogFile* log, FuelDataBank* fueltypeDB, FabricationPlant* fabri GetLog()->fLog << "!!INFO!! !!!Reactor!!! A Reactor has been define :" << endl; GetLog()->fLog << "\t Fuel Composition is not fixed ! "<< endl; - GetLog()->fLog << "\t Fuel Type set to : \t "<< fFuelTypeDB->GetFuelType() << endl; GetLog()->fLog << "\t Creation time set at \t " << (double)(GetCreationTime()/3600/24/365.25) << " year" << endl; GetLog()->fLog << "\t Life time (Operating's Duration) set at \t " << (double)(GetLifeTime()/3600/24/365.25) << " year" << endl; GetLog()->fLog << "\t The Effective Thermal Power is \t " << (double)(fPower *1e-6) << " MW (with Full Power " << Power << " and " << ChargeFactor << " Charge Factor)"<< endl; @@ -154,7 +150,7 @@ Reactor::Reactor(LogFile* log, FuelDataBank* fueltypeDB, FabricationPlant* fabri } -Reactor::Reactor(LogFile* log, FuelDataBank* fueltypeDB, +Reactor::Reactor(LogFile* log, PhysicModels* fueltypeDB, FabricationPlant* fabricationplant, CLASSBackEnd* Pool, cSecond creationtime, cSecond lifetime, cSecond cycletime, @@ -185,7 +181,6 @@ Reactor::Reactor(LogFile* log, FuelDataBank* fueltypeDB, cout << "!!INFO!! !!!Reactor!!! A Reactor has been define :" << endl; cout << "\t Fuel Composition is not fixed ! "<< endl; - cout << "\t Fuel Type set to : \t "<< fFuelTypeDB->GetFuelType() << endl; cout << "\t Creation time set at \t " << (double)(GetCreationTime()/3600/24/365.25) << " year" << endl; cout << "\t Life time (Operating's Duration) set at \t " << (double)(GetCreationTime()/3600/24/365.25) << " year" << endl; cout << "\t The Cycle Time set at\t " << (double)(fCycleTime/3600/24/365.25) << " year" << endl; @@ -195,7 +190,6 @@ Reactor::Reactor(LogFile* log, FuelDataBank* fueltypeDB, GetLog()->fLog << "!!INFO!! !!!Reactor!!! A Reactor has been define :" << endl; GetLog()->fLog << "\t Fuel Composition is not fixed ! "<< endl; - GetLog()->fLog << "\t Fuel Type set to : \t "<< fFuelTypeDB->GetFuelType() << endl; GetLog()->fLog << "\t Creation time set at \t " << (double)(GetCreationTime()/3600/24/365.25) << " year" << endl; GetLog()->fLog << "\t Life time (Operating's Duration) set at \t " << (double)(GetCreationTime()/3600/24/365.25) << " year" << endl; GetLog()->fLog << "\t The Cycle Time set at\t " << (double)(fCycleTime/3600/24/365.25) << " year" << endl; diff --git a/source/branches/CLASSV3/src/Storage.cxx b/source/branches/CLASSV3/src/Storage.cxx index 1e310ddbd..7d4543858 100644 --- a/source/branches/CLASSV3/src/Storage.cxx +++ b/source/branches/CLASSV3/src/Storage.cxx @@ -72,7 +72,10 @@ void Storage::AddIV(IsotopicVector isotopicvector) AddCumulativeIVIn(isotopicvector); if(GetParc()->GetStockManagement() ) + { fIVArray.push_back(isotopicvector); + fIVArrayArrivalTime.push_back(fInternalTime); + } AddToFullStock(isotopicvector); } @@ -92,8 +95,8 @@ void Storage::TakeFractionFromStock(int IVId,double fraction) { AddCumulativeIVOut(fIVArray[IVId]*fraction); - fInsideIV -= fIVArray[IVId]*fraction; - fIVArray[IVId] = fIVArray[IVId]*(1-fraction); + fInsideIV -= fIVArray[IVId] * fraction; + fIVArray[IVId] -= fIVArray[IVId] * fraction; } } @@ -136,8 +139,11 @@ void Storage::StorageEvolution(cSecond t) for(int i = (int)fIVArray.size()-1 ; i >=0; i--) //Removing empty Stock if(Norme(fIVArray[i]) == 0) - fIVArray.erase(fIVArray.begin()+i); - + { + fIVArray.erase(fIVArray.begin()+i); + fIVArrayArrivalTime.erase(fIVArrayArrivalTime.begin()+i); + + } int EvolutionTime = t - fInternalTime; -- GitLab