Skip to content
Snippets Groups Projects
Commit 71e0a116 authored by Baptiste LENIAU's avatar Baptiste LENIAU
Browse files

modify a variable name in Utils prg

git-svn-id: svn+ssh://svn.in2p3.fr/class@441 0e7d625b-0364-4367-a6be-d5be4a48d228
parent 11371e5b
No related branches found
No related tags found
No related merge requests found
...@@ -184,21 +184,21 @@ void DumpInputNeuron(string filename) ...@@ -184,21 +184,21 @@ void DumpInputNeuron(string filename)
//Fill containing all the output of the networks to train //Fill containing all the output of the networks to train
ofstream InputNetwork("TrainingInput.cxx"); ofstream InputNetwork("TrainingInput.cxx");
int NumOfBase=fPuCompoInit.size(); int NumOfBase=fActinideCompoInit.size();
for(int b=0;b<NumOfBase;b++) for(int b=0;b<NumOfBase;b++)
{ {
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@// //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@//
//@@@Change the input value according to your fresh fuel compo //@@@Change the input value according to your fresh fuel compo
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@// //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@//
// (Z , A ,I) // (Z , A ,I)
U5 = fPuCompoInit[b].GetZAIIsotopicQuantity(ZAI(92,235,0)); U5 = fActinideCompoInit[b].GetZAIIsotopicQuantity(ZAI(92,235,0));
U8 = fPuCompoInit[b].GetZAIIsotopicQuantity(ZAI(92,238,0)); U8 = fActinideCompoInit[b].GetZAIIsotopicQuantity(ZAI(92,238,0));
Pu8 = fPuCompoInit[b].GetZAIIsotopicQuantity(ZAI(94,238,0)); Pu8 = fActinideCompoInit[b].GetZAIIsotopicQuantity(ZAI(94,238,0));
Pu9 = fPuCompoInit[b].GetZAIIsotopicQuantity(ZAI(94,239,0)); Pu9 = fActinideCompoInit[b].GetZAIIsotopicQuantity(ZAI(94,239,0));
Pu10 = fPuCompoInit[b].GetZAIIsotopicQuantity(ZAI(94,240,0)); Pu10 = fActinideCompoInit[b].GetZAIIsotopicQuantity(ZAI(94,240,0));
Pu11 = fPuCompoInit[b].GetZAIIsotopicQuantity(ZAI(94,241,0)); Pu11 = fActinideCompoInit[b].GetZAIIsotopicQuantity(ZAI(94,241,0));
Pu12 = fPuCompoInit[b].GetZAIIsotopicQuantity(ZAI(94,242,0)); Pu12 = fActinideCompoInit[b].GetZAIIsotopicQuantity(ZAI(94,242,0));
Am1 = fPuCompoInit[b].GetZAIIsotopicQuantity(ZAI(95,241,0)); Am1 = fActinideCompoInit[b].GetZAIIsotopicQuantity(ZAI(95,241,0));
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@// //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@//
for(int Tstep=0 ;Tstep<fNOfTimeStep;Tstep++ ) for(int Tstep=0 ;Tstep<fNOfTimeStep;Tstep++ )
{ {
...@@ -481,7 +481,7 @@ void ReadAndFill(string jobname) ...@@ -481,7 +481,7 @@ void ReadAndFill(string jobname)
} }
} }
fPuCompoInit.push_back(CompoBasei); fActinideCompoInit.push_back(CompoBasei);
GoodJobName.push_back(jobname); GoodJobName.push_back(jobname);
......
...@@ -38,7 +38,7 @@ vector< map < ZAI, vector<double> > > fXSFis; // map of fission cross section fX ...@@ -38,7 +38,7 @@ vector< map < ZAI, vector<double> > > fXSFis; // map of fission cross section fX
vector< map < ZAI, vector<double> > > fXSCap; vector< map < ZAI, vector<double> > > fXSCap;
vector< map < ZAI, vector<double> > > fXSN2N; vector< map < ZAI, vector<double> > > fXSN2N;
vector<IsotopicVector> fPuCompoInit; //Fresh fuel composition vector<IsotopicVector> fActinideCompoInit; //Fresh fuel composition
int fNOfTimeStep=0; //number of time step in the Evolution int fNOfTimeStep=0; //number of time step in the Evolution
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment