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

Correct a bug leading fSpecificPower to never be initialized

git-svn-id: svn+ssh://svn.in2p3.fr/class@732 0e7d625b-0364-4367-a6be-d5be4a48d228
parent 08aa3a1b
No related branches found
No related tags found
No related merge requests found
......@@ -166,7 +166,6 @@ class EQM_FBR_MLP_Keff : public EquivalenceModel
map<ZAI,string> fMapOfTMVAVariableNames;//!< List of TMVA input variable names (read from fMLPInformationFile ) , name depends on the training step
vector<double> fMLP_Time; //!< Time (in seconds) when the MLP(t) = keff(t) has been trained.
double fSpecificPower; //!< The specific power in W/gHM (HM: heavy Metal)
double fMaximalContent; //!< The approx. maximum fissile content reachable by the MLP model
......
......@@ -536,6 +536,11 @@ double EQM_MLP_Kinf::GetFissileMolarFraction(IsotopicVector Fissil,IsotopicVecto
if(count > MaximumLoopCount )
{
ERROR << "CRITICAL ! Can't manage to predict fissile content\nHint : Try to decrease the precision on burnup using :\nYourEQM_MLP_Kinf->SetBurnUpPrecision(prop); with prop the precision (default 0.5percent : 0.005) INCREASE IT\nIf this message still appear mail to leniau@subatech.in2p3.fr\nor nicolas.thiolliere@subatech.in2p3.fr " << endl;
ERROR << "Targeted Burnup :" <<TargetBU<<endl;
ERROR << "Last calculated Burnup :" <<OldPredictedBU<<endl;
ERROR << "Last Fresh fuel composition :" <<endl;
ERROR << FreshFuel.sPrint()<<endl;
exit(1);
}
......
......@@ -208,7 +208,6 @@ class EQM_MLP_Kinf : public EquivalenceModel
int fNumberOfBatch; //!< The number of batches for the loading plan
double fKThreshold; //!< The @f$k_{Threshold}@f$
double fSpecificPower; //!< The specific power in W/gHM (HM: heavy Metal)
double fMaximalBU; //!< The approx. maximum burnup reachable by the MLP model
double fMaximalContent; //!< The approx. maximum fissile content reachable by the MLP model
double fBurnUpPrecision; //!< precision on Burnup
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment