Class MonteCarloSimulator.TornadoEntry
java.lang.Object
neqsim.process.util.optimizer.MonteCarloSimulator.TornadoEntry
- All Implemented Interfaces:
Serializable
- Enclosing class:
MonteCarloSimulator
A tornado sensitivity entry.
- Version:
- 1.0
- Author:
- Even Solbraa
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal doubleOutput value when parameter is at high end.final doubleOutput value when parameter is at low end.final StringParameter description.private static final longfinal doubleAbsolute swing (|high - low|). -
Constructor Summary
ConstructorsConstructorDescriptionTornadoEntry(String parameter, double lowResult, double highResult, double swing) Creates a tornado entry. -
Method Summary
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
parameter
Parameter description. -
lowResult
public final double lowResultOutput value when parameter is at low end. -
highResult
public final double highResultOutput value when parameter is at high end. -
swing
public final double swingAbsolute swing (|high - low|).
-
-
Constructor Details
-
TornadoEntry
TornadoEntry(String parameter, double lowResult, double highResult, double swing) Creates a tornado entry.- Parameters:
parameter- parameter descriptionlowResult- result at low valuehighResult- result at high valueswing- absolute swing
-