Enum Details

    • Enum Constant Detail

      • NONE

        public static final Details NONE
      • MISSING_PROBLEM_STATEMENT

        public static final Details MISSING_PROBLEM_STATEMENT
        The Problem has not been specified by the user.
      • MISSING_DIFFERENCE_SCHEME

        public static final Details MISSING_DIFFERENCE_SCHEME
        The DifferenceScheme for solving the Problem has not been specified by the user.
      • MISSING_HEATING_CURVE

        public static final Details MISSING_HEATING_CURVE
        A heating curve has not been set up for the DifferenceScheme.
      • MISSING_OPTIMISER

        public static final Details MISSING_OPTIMISER
        There is no information about the selected optimiser.
      • MISSING_BUFFER

        public static final Details MISSING_BUFFER
        The buffer has not been created.
      • INCOMPATIBLE_OPTIMISER

        public static final Details INCOMPATIBLE_OPTIMISER
        The optimisation statistic is not suported by the selected optimiser.
      • INSUFFICIENT_DATA_IN_PROBLEM_STATEMENT

        public static final Details INSUFFICIENT_DATA_IN_PROBLEM_STATEMENT
        Some data is missing in the problem statement. Probably, the interpolation datasets have been set up incorrectly or the specific heat and density data have not been loaded.
      • SIGNIFICANT_CORRELATION_BETWEEN_PARAMETERS

        public static final Details SIGNIFICANT_CORRELATION_BETWEEN_PARAMETERS
      • PARAMETER_VALUES_NOT_SENSIBLE

        public static final Details PARAMETER_VALUES_NOT_SENSIBLE
      • MAX_ITERATIONS_REACHED

        public static final Details MAX_ITERATIONS_REACHED
      • ABNORMAL_DISTRIBUTION_OF_RESIDUALS

        public static final Details ABNORMAL_DISTRIBUTION_OF_RESIDUALS
      • CALCULATION_RESULTS_WORSE_THAN_PREVIOUSLY_OBTAINED

        public static final Details CALCULATION_RESULTS_WORSE_THAN_PREVIOUSLY_OBTAINED
        Indicates that the result table had not been updated, as the selected model produced results worse than expected by the model selection criterion.
      • BETTER_CALCULATION_RESULTS_THAN_PREVIOUSLY_OBTAINED

        public static final Details BETTER_CALCULATION_RESULTS_THAN_PREVIOUSLY_OBTAINED
        Indicates that the result table had been updated, as the current model selection criterion showed better result than already present.
      • SOLVER_ERROR

        public static final Details SOLVER_ERROR
    • Method Detail

      • values

        public static Details[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (Details c : Details.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Details valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
        NullPointerException - if the argument is null