Class BlockMatrixAlgorithm

  • All Implemented Interfaces:
    Serializable

    public class BlockMatrixAlgorithm
    extends TridiagonalMatrixAlgorithm
    A modification of the algorithm for solving a system of linear equations, where the first and last equation contains references to the last and first elements of the solution, respectively. The corresponding matrix is composed of an inner tridiagonal block and a border formed by an extra row and column. This block system is solved using the Sherman-Morrison-Woodbury identity and the Thomas algorithm for the main block.
    See Also:
    Serialized Form
    • Constructor Detail

      • BlockMatrixAlgorithm

        public BlockMatrixAlgorithm​(Grid grid)
    • Method Detail

      • sweep

        public void sweep​(double[] V)
        Description copied from class: TridiagonalMatrixAlgorithm
        Calculates the solution V using the tridiagonal matrix algorithm. This performs a backwards sweep from N - 1 to 0 where N is the grid density value. The coefficients alpha and beta should have been precalculated
        Overrides:
        sweep in class TridiagonalMatrixAlgorithm
        Parameters:
        V - the array containing the Nth value previously calculated from the respective boundary condition
      • getP

        public double[] getP()
      • getQ

        public double[] getQ()
      • setGamma

        public void setGamma​(int i,
                             double g)
      • getGamma

        public double[] getGamma()