burgers_solution, a C code which evaluates exact solutions of the time-dependent 1D viscous Burgers equation.
The form of the Burgers equation considered here is:
du du d^2 u -- + u * -- = nu * ----- dt dx dx^2for -1.0 < x < +1.0, and 0.0 < t.
The computer code and data files described and made available on this web page are distributed under the MIT license
burgers_solution is available in a C version and a C++ version and a FORTRAN90 version and a MATLAB version and a Python version.
burgers, a dataset directory which contains 40 solutions of the Burgers equation in one space dimension and time, at equally spaced times from 0 to 1, with values at 41 equally spaced nodes in [0,1];
fd1d_burgers_lax, a C code which applies the finite difference method and the Lax-Wendroff method to solve the non-viscous Burgers equation in one spatial dimension and time.
fd1d_burgers_leap, a C code which applies the finite difference method and the leapfrog approach to solve the non-viscous Burgers equation in one spatial dimension and time.