Class ImplicitScheme

    • Constructor Detail

      • ImplicitScheme

        public ImplicitScheme()
        Constructs a default fully-implicit scheme using the default values of GRID_DENSITY and TAU_FACTOR.
      • ImplicitScheme

        public ImplicitScheme​(NumericProperty N,
                              NumericProperty timeFactor)
        Constructs a fully-implicit scheme on a one-dimensional grid that is specified by the values N and timeFactor.
        Parameters:
        N - the NumericProperty with the type GRID_DENSITY
        timeFactor - the NumericProperty with the type TAU_FACTOR
        See Also:
        DifferenceScheme
      • ImplicitScheme

        public ImplicitScheme​(NumericProperty N,
                              NumericProperty timeFactor,
                              NumericProperty timeLimit)

        Constructs a fully-implicit scheme on a one-dimensional grid that is specified by the values N and timeFactor. Sets the time limit of this scheme to timeLimit

        Parameters:
        N - the NumericProperty with the type GRID_DENSITY
        timeFactor - the NumericProperty with the type TAU_FACTOR
        timeLimit - the NumericProperty with the type TIME_LIMIT
        See Also:
        DifferenceScheme
    • Method Detail

      • prepare

        protected 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
      • timeStep

        public void timeStep​(int m)
                      throws SolverException
        Calculates the solution at the boundaries using the boundary conditions specific to the problem statement and runs the tridiagonal matrix algorithm to evaluate solution at the intermediate grid points.
        Specified by:
        timeStep in class DifferenceScheme
        Parameters:
        m - the time step
        Throws:
        SolverException - if the calculation failed
      • leftBoundary

        public void leftBoundary​(int m)
      • evalRightBoundary

        public abstract double evalRightBoundary​(double alphaN,
                                                 double betaN)
      • firstBeta

        public abstract double firstBeta()
      • toString

        public String toString()
        Prints out the description of this problem type.
        Overrides:
        toString in class DifferenceScheme
        Returns:
        a verbose description of the problem.