FEM Heat Solvers
Recommended Methods
For nonstiff problems it's recommended you use FEMDiffEqHeatEuler, while for stiff problems it's recommended that you use FEMDiffEqHeatSemiImplicitCrankNicholson.
Full List of Methods
FiniteElementDiffEq.jl
FEMDiffEqHeatEulerFEMDiffEqHeatImplicitEulerFEMDiffEqHeatCrankNicholsonFEMDiffEqHeatSemiImplicitEulerFEMDiffEqHeatSemiImplicitCrankNicholson
Additionally, for linear solves, one can choose the method by which the linear solve takes place via the method keyword argument.
Factorizations (
:LU,:Cholesky,:QR,:SVD)Conjugate-Gradient (
:CG):GMRES
Example:
sol = solve(prob,FEMDiffEqHeatCrankNicholson(),solver=:CG)