- Sep 22, 2016
-
-
-
-
New feature rescale reactor # ChangeLog ## Bugs correction ### Reactor.cxx Evolution between last time step before end of cycle and end of cycle was not done. Bug corrected thanks to @Fanny and @nicolas.thiolliere ### Scenario.cxx Display of CLASS presentation in terminal was destroyed (missing spaces) ## ReactorScheduler ### Description This class replace CLASSFuel and CLASSFuelPlan. Il allows to change PhysicsModel/EvolutionData, Burnup, power and mass of a reactor during time. ### Usage ```c Reactor* PWR_UOX = new Reactor(gCLASS->GetLog(), //Log STD900, // Data base Stock, // Connected Backend facility (here the Storage "Stock" previously declared) StartingTime, // Starting time LifeTime, // time of reactor life time Power_CP0, // Power HMMass,// HM mass BurnUp, // BurnUp 0.8); // Load Factor double CycleTime = BurnUp *1e9 /Power_CP0 *HMMass * 24 * 3600; PWR_UOX->AddScheduleEntry(StartingTime + 1*CycleTime, STD900, BurnUp,2*Power_CP0 ,2*HMMass ); PWR_UOX->SetFabricationPlant(FP_MOX); // Add a Fabrication plant if you decide to change for a PhysicsModel PWR_UOX->AddScheduleEntry(2010*year, PHYMOD, 1.5*BurnUp,1*Power_CP0,1.1*HMMass ) ; gCLASS->AddReactor(PWR_UOX);//Add this reactor to the scenario ``` See merge request !4
-
-
- Sep 21, 2016
-
-
Take Funny 's correction into account related to the fact that Reactor was not evolving between last step and endofcycle ....
-
-
- Sep 20, 2016
-
-
Modify CLASSFuelPlan to handle Power and HMMass evolution (the class name changes for more suitable name : ReactorScheduler). Additionally add MOXEUS EQM and UOX POL EQM
-
- Jul 27, 2016
-
-
Correct error when using a substitution fuel | correct XLZ error on CLASS terminal presentation | EQM POL2 for PWR UOX is now working with the multi stream fabrication plant @authors FaC & BLG
-
- Jul 20, 2016
-
- Jul 18, 2016
-
-
- Jun 21, 2016
-
-
- Jun 20, 2016
-
-
Change declaration of vector of uninitialized table in vector of vector for clang to compil, translate the annoying bienvenue dans le gui sentence
-
-
-
-
-
- Oct 24, 2016
-
-
- Jun 20, 2016
-
-
Make install script use the variable CXX defined in this script: this script has to be completly rewritten soon
-
Correct information file PWR/UOX/EQModel/MLP_KINF/PWR_UOX.nfo o deal with the new FaC implementation of the FabricationPlant
-
- Oct 24, 2016
-
-
- Jun 09, 2016
-
-
In Scenario.cxx:: OldProgressPrintout Scenario.cxx:: ProgressPrintout : added (double) before year variable ton convert to double. Otherwise, infinite loop in progress bar for scenario with total time lower than one year.
-
- Jun 06, 2016
-
-
Correct a bug of StorageManagement when using kpMix (segfault was occuring when only one isotopic vector was present in stock
-
- May 27, 2016
-
-