Enum Class ProcessDerivativeCalculator.DerivativeMethod
java.lang.Object
java.lang.Enum<ProcessDerivativeCalculator.DerivativeMethod>
neqsim.process.mpc.ProcessDerivativeCalculator.DerivativeMethod
- All Implemented Interfaces:
Serializable, Comparable<ProcessDerivativeCalculator.DerivativeMethod>, Constable
- Enclosing class:
ProcessDerivativeCalculator
public static enum ProcessDerivativeCalculator.DerivativeMethod
extends Enum<ProcessDerivativeCalculator.DerivativeMethod>
Derivative calculation methods.
- Version:
- 1.0
- Author:
- NeqSim Development Team
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCentral difference: f'(x) ≈ (f(x+h) - f(x-h)) / (2h) - more accurateSecond-order central: includes error estimationForward difference: f'(x) ≈ (f(x+h) - f(x)) / h -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
FORWARD_DIFFERENCE
Forward difference: f'(x) ≈ (f(x+h) - f(x)) / h -
CENTRAL_DIFFERENCE
Central difference: f'(x) ≈ (f(x+h) - f(x-h)) / (2h) - more accurate -
CENTRAL_DIFFERENCE_SECOND_ORDER
Second-order central: includes error estimation
-
-
Constructor Details
-
DerivativeMethod
private DerivativeMethod()
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-