Class Problem

    • Constructor Detail

      • Problem

        protected Problem()
        Creates a Problem with default parameters (as found in the .XML file).

        First, invokes the super() constructor of PropertyHolder to initialise PropertyHolderListeners, then initialises the variables and creates default Pulse and HeatingCurve, setting this object as their parent.

      • Problem

        public Problem​(Problem p)
        Copies all essential parameters from p, excluding the heating curve, which is created anew.
        Parameters:
        p - the Problem to replicate
    • Method Detail

      • copy

        public abstract Problem copy()
      • setHeatingCurve

        public final void setHeatingCurve​(HeatingCurve curve)
      • availableSolutions

        public final List<DifferenceScheme> availableSolutions()
        Lists the available DifferenceSchemes for this Problem.

        This is done utilising the Reflexive interface implemented by the class DifferenceSheme. This method dynamically locates any subclasses of the DifferenceScheme in the associated package (note this can be extended to include plugins) and checks whether any of the instances of those schemes return a non-null result when calling the solver(Problem) method.

        Returns:
        a List of available DifferenceSchemes for solving this Problem.
      • set

        public void set​(NumericPropertyKeyword type,
                        NumericProperty value)
        Used to change the parameter values of this Problem. It is only allowed to use those types of NumericPropery that are listed by the listedParameters().
        Specified by:
        set in class Accessible
        Parameters:
        type - the type, which must be equal by definition to property.getType().
        value - the property, which contains new information.
        See Also:
        listedTypes()
      • getHeatingCurve

        public final HeatingCurve getHeatingCurve()
      • getPulse

        public final Pulse getPulse()
      • setPulse

        public final void setPulse​(Pulse pulse)
        Sets the pulse of this Problem and assigns this Problem as its parent.
        Parameters:
        pulse - a Pulse object
      • retrieveData

        public void retrieveData​(ExperimentalData c)
        This will use the data contained in c to estimate the detector signal span and the thermal diffusivity for this Problem. Note these estimates may be very rough.
        Parameters:
        c - the ExperimentalData object
      • estimateSignalRange

        public void estimateSignalRange​(ExperimentalData c)
        The signal range is defined as max{ T(t) } - min{ T(t) }, where max{...} and min{...} are robust to outliers. This calls the maxTemperature method of c and uses the baseline value at 0 as the min{...} value.
        Parameters:
        c - the ExperimentalData object
      • optimisationVector

        public void optimisationVector​(ParameterVector output)
        Calculates the vector argument defined on Rn to the scalar objective function for this Problem. To fill the vector with data, only those parameters from this Problem will be used which are defined by the flags, e.g. if the flag associated with the HEAT_LOSS keyword is set to false, its value will be skipped when creating the vector.

        Specified by:
        optimisationVector in interface Optimisable
        Parameters:
        output - the output vector where the result will be stored
        See Also:
        listedTypes()
      • assign

        public void assign​(ParameterVector params)
                    throws SolverException
        Assigns parameter values of this Problem using the optimisation vector params. Only those parameters will be updated, the types of which are listed as indices in the params vector.
        Specified by:
        assign in interface Optimisable
        Parameters:
        params - the optimisation vector, containing a similar set of parameters to this Problem
        Throws:
        SolverException - if params contains invalid parameter values
        See Also:
        listedTypes()
      • areDetailsHidden

        public boolean areDetailsHidden()
        Checks whether some 'advanced' details should stay hidden by the GUI when customising the Problem statement.
        Overrides:
        areDetailsHidden in class PropertyHolder
        Returns:
        true if the user does not want to see the details (by default), false otherwise.
      • setDetailsHidden

        public static final void setDetailsHidden​(boolean b)
        Allows to either hide or display all 'advanced' settings for this Problem.
        Parameters:
        b - true if the user does not want to see the details, false otherwise.
      • isEnabled

        public boolean isEnabled()
        Used for debugging. Initially, the nonlinear and two-dimensional problem statements are disabled, since they have not yet been thoroughly tested
        Returns:
        true if this problem statement has been enabled, false otherwise
      • discretePulseOn

        public DiscretePulse discretePulseOn​(Grid grid)
        Constructs a DiscretePulse on the specified grid using the Pulse corresponding to this Problem.
        Parameters:
        grid - the grid
        Returns:
        a DiscretePulse objects constructed for this Problem and the grid
      • listedKeywords

        public Set<NumericPropertyKeyword> listedKeywords()
        Listed parameters include: MAXTEMP, DIFFUSIVITY, THICKNESS, HEAT_LOSS_FRONT, HEAT_LOSS_REAR.
        Overrides:
        listedKeywords in class PropertyHolder
        Returns:
        a set of NumericPropertyKeyword instances, which have been explicitly marked as a listed parameter for this PropertyHolder.
      • listedTypes

        public List<Property> listedTypes()
        Description copied from class: PropertyHolder

        By default, collects a list of default properties corresponding to types defined by listedKeywords(). However, this method is overridable to include non-numeric properties.

        Overrides:
        listedTypes in class PropertyHolder
        Returns:
        a list of Property instances, which have been explicitly marked as a listed parameter for this PropertyHolder.
      • getBaseline

        public Baseline getBaseline()
        Return the Baseline of this Problem.
        Returns:
        the baseline
      • setBaseline

        public final void setBaseline​(Baseline baseline)
        Sets a new baseline. Calls apply(baseline) on the HeatingCurve when done and sets the parent of the baseline to this object.
        Parameters:
        baseline - the new baseline.
      • initProperties

        public abstract void initProperties()
      • initProperties

        public abstract void initProperties​(ThermalProperties properties)
      • isReady

        public abstract boolean isReady()