Boundary-Value Problem

Types

Functions

LUSE_ENGR701_704_NumericalMethods.BoundaryValueProblems.finite_difference_methodMethod
finite_difference_method(BVP[; method=:gauss_seidel, M=100, tol=10^-3])

Solve BVP differential equations with Dirichlet boundary conditions by 2 IVP differential equations according to method ∈ {:jacobi, :gauss_seidel (default), :successive_relaxation, :newton_raphson} within numerical iterations, M and tolerance, tol.

Uses a Taylor polynomial with a first-order and a second-order IVP equations. Converges 𝒪(h²).

source

Index