I am working with a team to discretize a PDE. The PDE has the following form:
$$ \frac{\partial ^2 u}{ \partial R^2} + \left( \frac{2}{R} + \frac{1}{k} \frac{\partial k}{\partial R} \right) \frac{\partial u}{\partial R} = \frac{1}{k} \frac{\partial u}{\partial t} $$
We have run into stability issues. I'm trying to figure out an expression
for something like the Fourier number, i.e. I need the equivelant
expression for:
$$
Fo = \alpha \frac{\Delta t}{\Delta x^2}
$$
for the equation:
$$
\frac{\partial u}{\partial t} = \alpha \frac{\partial ^2 u}{\partial x^2}
$$
I am not looking for the solution per se, but documentation or advice on the matter would help greatly.
See Von Neumann Stability Analysis. The derivation is shown in Wikipedia and is
$$\qquad r=\frac{\alpha \Delta t}{\left( \Delta x \right)^2} \leq \frac{1}{2} $$
It is also covered in Chapters 9 and 10 of Finite Difference Methods for Ordinary and Partial Differential Equations by Randall LeVeque.
Von Neumann Stability Analysis is a standard technique that you (or someone on your team) should invest time in learning.