Class ResidualStatistic

    • Constructor Detail

      • ResidualStatistic

        public ResidualStatistic()
    • Method Detail

      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
      • calculateResiduals

        public final void calculateResiduals​(DiscreteInput reference,
                                             Response estimate,
                                             int min,
                                             int max)
        This will calculate the residuals for the task using the time sequence defined by the ExperimentalData object.The residuals are calculated between the model, which was previously used to populate the HeatingCurveand the experimental data.The temperature value of the model at the reference time is ti.and unknown a priori. Therefore, it needs to be interpolated based on the discrete dataset generated by the solver. The interpolation is currently done using natural cubic splines, which are re-constructed each time a new solution is generated. Therefore, calling this method does not involve expensive calculation of the spline coefficents. The residuals are calculated only for the range that is specified by the ExperimentalData reference. The output of this method is stored in the field of the residuals object.
        Parameters:
        reference -
        estimate -
        See Also:
        ExperimentalData, HeatingCurve
      • residualsArray

        public double[] residualsArray()
      • calculateResiduals

        public final void calculateResiduals​(GeneralTask task)
      • getResiduals

        public List<Double> getResiduals()
      • getTimeSequence

        public List<Double> getTimeSequence()
      • set

        public void set​(NumericPropertyKeyword type,
                        NumericProperty property)
        Description copied from class: Accessible

        An abstract method, which must be overriden to gain access over setting the values of all relevant (selected by the programmer) NumericProperties in subclasses of Accessible. Typically this involves a switch statement that goes through the different options for the type and invokes different set(...) methods to update the matching NumericProperty with property.

        Specified by:
        set in class Accessible
        Parameters:
        type - the type, which must be equal by definition to property.getType().
        property - the property, which contains new information.