fd1d_bvp, a Fortran90 code which applies the finite difference method (FDM) 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(1) < x < X(N). 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(1)) = 0.0; u(X(N)) = 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.
call fd1d_bvp ( n, a, aprime, c, f, x, u )where
The information on this web page is 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 an Octave version and a Python version.
fd1d_burgers_lax, a Fortran90 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 Fortran90 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_heat_explicit, a Fortran90 code which uses the finite difference method and explicit time stepping to solve the time dependent heat equation in 1D.
fd1d_heat_implicit, a Fortran90 code which uses the finite difference method and implicit time stepping to solve the time dependent heat equation in 1D.
fd1d_heat_steady, a Fortran90 code which uses the finite difference method to solve the steady (time independent) heat equation in 1D.
fd1d_predator_prey, a Fortran90 code which implements a finite difference algorithm for predator-prey system with spatial variation in 1D.
fd1d_wave, a Fortran90 code which applies the finite difference method to solve the time-dependent wave equation utt = c * uxx in one spatial dimension.
fem1d, a Fortran90 code which applies the finite element method to a linear two point boundary value problem in a 1D region.
fem1d_bvp_linear, a Fortran90 code which applies the finite element method, with piecewise linear elements, to a two point boundary value problem in one spatial dimension.