Class ExplicitLinearisedSolver

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

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

    Relies on using the heat equation to calculate the value of the grid-function at the next timestep. Fills 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 explicit 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), Θ(xi+1,tm). Hence, the calculation of the grid-function at the timestep m+1 can be done explicitly. The derivative in the boundary conditions is approximated using a simple forward difference.

    The explicit scheme is stable only if τ ≤ h2 and has an order of approximation of O(τ + h). Note that this scheme is only used for validating more complex schemes and does not give accurate results due to the lower order of approximation. When calculations using this scheme are performed, the gridDensity is chosen to be at least 80, which ensures that the error is not too high (typically a 1.5E-2 relative error).

    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 DifferenceScheme
        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.