Class ImplicitLinearisedSolver<T extends ClassicalProblem>

  • Type Parameters:
    T - a subclass of ClassicalProblem
    All Implemented Interfaces:
    Serializable, Solver<T>, Descriptive, Reflexive

    public class ImplicitLinearisedSolver<T extends ClassicalProblem>
    extends ImplicitScheme
    implements Solver<T>
    Performs a fully-dimensionless calculation for the LinearisedProblem.

    Initiates constants for calculations and uses a sweep method to evaluate the solution for each subsequent timestep, filling the grid completely at each specified spatial point. The heating curve is updated with the rear-side temperature Θ(xN,ti) (here N is the grid density) at the end of timeLimit intervals, which comprise of timeLimit/tau time steps. The HeatingCurve is scaled (re-normalised) by a factor of maxTemp/maxVal, where maxVal is the absolute maximum of the calculated solution (with respect to time), and maxTemp is the maximumTemperature NumericProperty of problem.

    The fully implicit scheme uses a standard 4-point template on a one-dimensional grid that utilises the following grid-function values on each step: Θ(xi,tm), Θ(xi,tm+1), Θ(xi-1,tm+1), Θ(xi+1,tm+1). Because no explicit formula can be used for calculating the grid-function at timestep m+1, a sweep method is implemented instead. The boundary conditions are approximated with a Taylor expansion up to the third term, hence the scheme has an increased order of approximation.

    The fully implicit scheme is unconditionally stable and has an order of approximation of at least O(τ + h2) for both the heat equation and the boundary conditions.

    See Also:
    Serialized Form
    • Field Detail

      • Bi1HTAU

        protected double Bi1HTAU
      • tau

        protected double tau
      • HH

        protected double HH
      • _2HTAU

        protected double _2HTAU
    • Method Detail

      • prepare

        public void prepare​(Problem problem)
                     throws SolverException
        Description copied from class: DifferenceScheme

        Contains preparatory steps to ensure smooth running of the solver.This includes creating a DiscretePulseobject and adjusting the grid of this scheme to match the DiscretePulsecreated for this problem Finally, a heating curve is cleared from the previously calculated values.

        All subclasses of DifferenceScheme should override and explicitly call this superclass method where appropriate.

        Overrides:
        prepare in class ImplicitScheme
        Parameters:
        problem - the heat problem to be solved
        Throws:
        SolverException
      • domain

        public Class<? extends Problem>[] domain()
        Description copied from class: DifferenceScheme
        Retrieves all problem statements that can be solved with this implementation of the difference scheme.
        Specified by:
        domain in class DifferenceScheme
        Returns:
        an array containing subclasses of the Problem class which can be used as input for this difference scheme.