fd1d_bvp, a C++ code which applies the finite difference method to solve a two point boundary value problem in one spatial dimension.
The boundary value problem (BVP) that is to be solved has the form:
- d/dx ( a(x) * du/dx ) + c(x) * u(x) = f(x)in the interval X[0] < x < X[N-1]. The functions a(x), c(x), and f(x) are given functions, and a formula for a'(x) is also available.
Boundary conditions are applied at the endpoints, and in this case, these are assumed to have the form:
u(X[0]) = 0.0; u(X[N-1]) = 0.0.
To compute a finite difference approximation, a set of n nodes is defined over the interval, and, at each interior node, a discretized version of the BVP is written, with u''(x) and u'(x) approximated by central differences.
fd1d_bvp ( n, a, aprime, c, f, x, u )where
The computer code and data files described and made available on this web page are distributed under the MIT license
fd1d_bvp is available in a C version and a C++ version and a FORTRAN90 version and a MATLAB version and a Python version.
FD1D_BURGERS_LAX, a C++ code which applies the finite difference method and the Lax-Wendroff method to solve the non-viscous time-dependent Burgers equation in one spatial dimension.
FD1D_BURGERS_LEAP, a C++ code which applies the finite difference method and the leapfrog approach to solve the non-viscous time-dependent Burgers equation in one spatial dimension.
FD1D_DISPLAY, a MATLAB program which reads a pair of files defining a 1D finite difference model, and plots the data.
FD1D_HEAT_EXPLICIT, a C++ code which uses the finite difference method and explicit time stepping to solve the time dependent heat equation in 1D.
FD1D_HEAT_IMPLICIT, a C++ code which uses the finite difference method and implicit time stepping to solve the time dependent heat equation in 1D.
FD1D_HEAT_STEADY, a C++ code which uses the finite difference method to solve the steady (time independent) heat equation in 1D.
FD1D_WAVE, a C++ code which applies the finite difference method to solve the time-dependent wave equation utt = c * uxx in one spatial dimension.
FEM1D, a C++ code which applies the finite element method to a linear two point boundary value problem in a 1D region.
FEM1D_BVP_LINEAR, a C++ code which applies the finite element method, with piecewise linear elements, to a two point boundary value problem in one spatial dimension.