Class PenetrationProblem

    • Constructor Detail

      • PenetrationProblem

        public PenetrationProblem()
    • Method Detail

      • setAbsorptionModel

        public void setAbsorptionModel​(AbsorptionModel model)
      • 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 Problem
        Returns:
        a list of Property instances, which have been explicitly marked as a listed parameter for this PropertyHolder.
      • 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 ClassicalProblem
        Returns:
        a set of NumericPropertyKeyword instances, which have been explicitly marked as a listed parameter for this PropertyHolder.
      • 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 ClassicalProblem
        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 ClassicalProblem
        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()