diff --git a/example/CloseCycle.cxx b/example/CloseCycle.cxx index da33790fb4b7dc1ffc65f4909d70a6a3a2df387f..daccd841f257d211dcdb62b3d76e064dd59ec57e 100644 --- a/example/CloseCycle.cxx +++ b/example/CloseCycle.cxx @@ -49,9 +49,9 @@ int main(int argc, char** argv) /*===Reactor data base===*/ - XSM_MLP* XSMOX = new XSM_MLP(gCLASS->GetLog(), "/scratch/leniau/BasesDeDonnees/BASESCLASS/MLP_MOX/XS");//Defining the XS Predictor + XSM_MLP* XSMOX = new XSM_MLP(gCLASS->GetLog(), "../DATA_BASES/PWR/MOX/XSModel/30Wg_FullMOX");//Defining the XS Predictor IM_RK4 *IMRK4 = new IM_RK4(gCLASS->GetLog()); //Bateman's equation solver method (RungeKutta4) - EQM_MLP_MOX* EQMLINPWRMOX = new EQM_MLP_MOX(gCLASS->GetLog(),"/scratch/leniau/BasesDeDonnees/BASESCLASS/MLP_MOX/Equivalence/TMVARegression_MLP_Equivalence0.weights.xml");//Defining the EquivalenceModel + EQM_MLP_MOX* EQMLINPWRMOX = new EQM_MLP_MOX(gCLASS->GetLog(),"../DATA_BASES/PWR/MOX/EQModel/EQM_MLP_PWR_MOX_3batch.xml");//Defining the EquivalenceModel PhysicsModels* PHYMOD = new PhysicsModels(XSMOX, EQMLINPWRMOX, IMRK4); //The PhysicsModels containing the 3 object previously defined diff --git a/example/Separation.cxx b/example/Separation.cxx index 75025927edb1ad2d54e4461f14487a820e5253f9..8cef0ec6e742965c440ba99796e80eb3b74a5813 100644 --- a/example/Separation.cxx +++ b/example/Separation.cxx @@ -44,7 +44,7 @@ int main(int argc, char** argv) /*===Reactor data base===*/ //The file STD900.dat correspond to a fuel evolution of a UOX PWR (see manual for details) - EvolutionData *STD900 = new EvolutionData(gCLASS->GetLog(), "../DATA_BASES/PWR/UOX/STD900/STD900.dat"); + EvolutionData *STD900 = new EvolutionData(gCLASS->GetLog(), "../DATA_BASES/PWR/UOX/STD900.dat"); /******FACILITIES*********************************/ /*===The 4 Stocks ===*/ Storage* MyStorage1 = new Storage(Logger); diff --git a/example/SimpleReactor2.cxx b/example/SimpleReactor2.cxx index 7886c376b1b07d498fb747b4b55eb46832256a12..d9e06d384878c9dfe2b84423cf5aa938906e5a1d 100644 --- a/example/SimpleReactor2.cxx +++ b/example/SimpleReactor2.cxx @@ -44,7 +44,7 @@ int main(int argc, char** argv) /*===Reactor data base===*/ //The file STD900.dat correspond to a fuel evolution of a UOX PWR (see manual for details) - EvolutionData *STD900 = new EvolutionData(gCLASS->GetLog(), "../DATA_BASES/PWR/UOX/STD900/STD900.dat"); + EvolutionData *STD900 = new EvolutionData(gCLASS->GetLog(), "../DATA_BASES/PWR/UOX/STD900.dat"); /******FACILITIES*********************************/ /*===A Stock===*/ Storage *Stock = new Storage(gCLASS->GetLog()); //Definition of the stock