Class ExplicitScheme

    • Constructor Detail

      • ExplicitScheme

        public ExplicitScheme()
        Constructs a default explicit scheme using the default values of GRID_DENSITY and TAU_FACTOR.
      • ExplicitScheme

        public ExplicitScheme​(NumericProperty N,
                              NumericProperty timeFactor)
        Constructs an explicit 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
      • ExplicitScheme

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

        Constructs an explicit 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

      • explicitSolution

        public void explicitSolution()
        Uses the explicit finite-difference representation of the heat equation to calculate the grid-function everywhere except for the boundaries. This will update the current solution using the solution from previous time step.
      • phi

        public double phi​(int i)
      • toString

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