Class BatchParameterEstimator.TunableParameter
java.lang.Object
neqsim.process.calibration.BatchParameterEstimator.TunableParameter
- All Implemented Interfaces:
Serializable
- Enclosing class:
BatchParameterEstimator
Represents a tunable parameter.
- Version:
- 1.0
- Author:
- ESOL
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionTunableParameter(String path, String unit, double lowerBound, double upperBound, double initialGuess) Creates a tunable parameter. -
Method Summary
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
path
-
unit
-
lowerBound
private final double lowerBound -
upperBound
private final double upperBound -
initialGuess
private final double initialGuess
-
-
Constructor Details
-
TunableParameter
public TunableParameter(String path, String unit, double lowerBound, double upperBound, double initialGuess) Creates a tunable parameter.- Parameters:
path- path to the parameterunit- unit of the parameterlowerBound- minimum valueupperBound- maximum valueinitialGuess- initial guess for optimization
-
-
Method Details
-
getPath
-
getUnit
-
getLowerBound
public double getLowerBound() -
getUpperBound
public double getUpperBound() -
getInitialGuess
public double getInitialGuess()
-