|
1D Heat Equation Solver 1.0
Computational Methods Assignment 2025
|
DuFort–Frankel explicit method (3-level scheme). More...
#include "method.hpp"

Go to the source code of this file.
Classes | |
| class | DuFortFrankel |
DuFort–Frankel explicit method (3-level scheme).
Update: T_i^{n+1} = [ (1 - 2r) T_i^{n-1} + 2r (T_{i+1}^n + T_{i-1}^n) ] / (1 + 2r), with r = D dt / dx^2.
Definition in file dufort_frankel.hpp.