Class MixedLinearisedSolver

  • All Implemented Interfaces:
    Serializable, Solver<ClassicalProblem>, Descriptive, Reflexive

    public class MixedLinearisedSolver
    extends MixedScheme
    implements Solver<ClassicalProblem>
    Performs a fully-dimensionless calculation for the LinearisedProblem.

    Calls super.solve(Problem), then 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 semi-implicit scheme uses a 6-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), Θ(xi+1,tm), Θ(xi-1,tm+1), Θ(xi+1,tm+1). The boundary conditions are approximated with a Taylor expansion up to the third term, hence the scheme has an increased order of approximation.

    The semi-implicit scheme is unconditionally stable and has an order of approximation of O(τ2 + h2). Note this scheme is prone to spurious oscillations when either a high spatial resolution or a large timestep are used. It has been noticed that due to the pulse term in the boundary condition, a higher error is introduced into the calculation than for the implicit scheme.

    See Also:
    Serialized Form
    • 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.