Skip to content
Snippets Groups Projects
Commit 8c8edca4 authored by BaM's avatar BaM
Browse files

remove unsused arg in BU calculation

parent 6db56a8c
No related branches found
No related tags found
No related merge requests found
......@@ -767,7 +767,7 @@ double EQ_OneParameter::CalculateTargetParameter(IsotopicVector TheFuel,
string TargetParameterName) {
double ParameterToCalculate = 0;
if (TargetParameterName == "BurnUpMax")
ParameterToCalculate = CalculateBurnUpMax(TheFuel, fModelParameter);
ParameterToCalculate = CalculateBurnUpMax(TheFuel);
else if (TargetParameterName == "keffBOC")
ParameterToCalculate = CalculateKeffAtBOC(TheFuel);
else {
......@@ -782,8 +782,7 @@ double EQ_OneParameter::CalculateTargetParameter(IsotopicVector TheFuel,
return ParameterToCalculate;
}
//________________________________________________________________________
double EQ_OneParameter::CalculateBurnUpMax(IsotopicVector TheFuel,
map<string, double> ModelParameter) {
double EQ_OneParameter::CalculateBurnUpMax(IsotopicVector TheFuel) {
/**************************************************************************/
// With a dichotomy, the maximal irradiation time (TheFinalTime) is calculated
// When average Kinf is very close (according "Precision") to the threshold
......
......@@ -115,12 +115,7 @@ class EQ_OneParameter : public EquivalenceModel {
//! parameter
//! associated to
//! the fuel --->
//! ex :
//! BurnUpMax,
//! keffBOC,
//! keffEOC, ...
double CalculateBurnUpMax(IsotopicVector TheFuel,
map<string, double> ModelParameter); //!<Calculate
double CalculateBurnUpMax(IsotopicVector TheFuel); //!<Calculate
//! the BU max
//! associated
//! to a fuel
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment