- Nov 03, 2016
-
-
New folder architecture and names for XSM MLP maker in Utils. Now working on local testing on grid...
-
-
-
- Oct 28, 2016
-
-
- Oct 26, 2016
-
-
- Oct 25, 2016
-
-
- Oct 24, 2016
-
-
This merge add a function to divide a IV by another one
-
- Oct 13, 2016
-
- Sep 30, 2016
-
- Oct 24, 2016
-
- Sep 30, 2016
-
- Sep 28, 2016
-
-
- Sep 26, 2016
-
- Sep 23, 2016
-
- Oct 24, 2016
-
-
- Sep 23, 2016
-
-
- 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
-