42 std::string
name()
const override
64 const std::vector<double>& Tprev,
65 const std::vector<double>& Tcurr,
66 std::vector<double>& Tnext)
const override;
Abstract interface for time-integration schemes solving the 1D heat equation.
Implementation of the explicit Richardson scheme (CTCS).
void step(const Grid &g, double D, double dt, const std::vector< double > &Tprev, const std::vector< double > &Tcurr, std::vector< double > &Tnext) const override
Advance one time step using the Richardson explicit scheme.
bool uses_previous_step() const noexcept override
Indicate that this is a three-level scheme.
std::string name() const override
Get human-readable name of the scheme.
Uniform 1D grid on x ∈ [0, L], including both boundary nodes.