From 8732a3e38dca63ad95ed60297980e3a510fe9f27 Mon Sep 17 00:00:00 2001 From: Baptiste LENIAU <baptiste.leniau@subatech.in2p3.fr> Date: Fri, 6 Feb 2015 13:31:32 +0000 Subject: [PATCH] correct some miss declaration of function git-svn-id: svn+ssh://svn.in2p3.fr/class@562 0e7d625b-0364-4367-a6be-d5be4a48d228 --- example/FBR_Example.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/example/FBR_Example.cxx b/example/FBR_Example.cxx index 365cd84b9..2e2b2d4a0 100644 --- a/example/FBR_Example.cxx +++ b/example/FBR_Example.cxx @@ -54,7 +54,7 @@ int main(int argc, char** argv) XSM_MLP* XS_FBRMOX = new XSM_MLP(gCLASS->GetLog(), "../DATA_BASES/FBR_Na/MOX/XSModel/ESFR_48Wg");//Defining the XS Predictor IM_RK4 *IMRK4 = new IM_RK4(gCLASS->GetLog()); //Bateman's equation solver method (RungeKutta4) IMRK4->SetSpectrumType("fast"); //Set the spectrum to fast for reactions isomeric branching ratios (can be fast or thermal) - IMRK4->ReadFPYield("../data/FPyield_Fast_JEFF3.1.dat"); //Add the handling of fission procuct and gets fission yields from this file + IMRK4->LoadFPYield("","../data/FPyield_Fast_JEFF3.1.dat"); //Add the handling of fission procuct and gets fission yields from this file (the first argument is for spontaneousfission yield : here is not handle) EQM_BakerRoss_FBR_MOX* EQM_FBRMOX = new EQM_BakerRoss_FBR_MOX(gCLASS->GetLog());//Defining the EquivalenceModel EQM_FBRMOX->SetBuildFuelFirstGuess(0.12); //Set the first guess of fissile content to 12 per cent of plutonium (default : 5%) @@ -93,7 +93,7 @@ int main(int argc, char** argv) gCLASS->AddFabricationPlant(FP_MOX); - /*===A Reactor : PWR_UOX===*/ + /*===A Reactor : FBR_MOX===*/ double HMMass = 7.48336500000000058e+01; //heavy metal mass (in tons) double Power_CP0 = 3.6e9; //Thermal power (in W) double BurnUp = 100; //100 GWd/tHM @@ -113,7 +113,7 @@ int main(int argc, char** argv) 0.8); // Reactor efficiency (% of time it is working @ full power) - PWR_MOX->SetName("a_FBR_MOX"); // name of the reactor (as it will show up in the CLASSGui) + FBR_MOX->SetName("a_FBR_MOX"); // name of the reactor (as it will show up in the CLASSGui) gCLASS->AddReactor(FBR_MOX); //Add this reactor to the scenario gCLASS->Evolution((double)year*2018);//Perform the calculation from year 1977(defined in Scenario declaration) to year 2018 -- GitLab