Class ClassicalProblem

    • Constructor Detail

      • ClassicalProblem

        public ClassicalProblem()
      • ClassicalProblem

        public ClassicalProblem​(Problem p)
    • Method Detail

      • listedKeywords

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

        public boolean isReady()
        Specified by:
        isReady in class Problem
      • setGeometricFactor

        public void setGeometricFactor​(NumericProperty bias)
      • set

        public void set​(NumericPropertyKeyword type,
                        NumericProperty value)
        Description copied from class: Problem
        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().
        Overrides:
        set in class Problem
        Parameters:
        type - the type, which must be equal by definition to property.getType().
        value - the property, which contains new information.
        See Also:
        Problem.listedTypes()
      • optimisationVector

        public void optimisationVector​(ParameterVector output)
        Description copied from class: Problem
        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
        Overrides:
        optimisationVector in class Problem
        Parameters:
        output - the output vector where the result will be stored
        See Also:
        Problem.listedTypes()
      • assign

        public void assign​(ParameterVector params)
                    throws SolverException
        Description copied from class: Problem
        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
        Overrides:
        assign in class Problem
        Parameters:
        params - the optimisation vector, containing a similar set of parameters to this Problem
        Throws:
        SolverException - if params contains invalid parameter values
        See Also:
        Problem.listedTypes()