Difference between revisions of "LaplacianFoam"

From OpenFOAMWiki
m
(illegal sign)
Line 2: Line 2:
  
 
<math>
 
<math>
\frac{\partial T}{\partial t} + \nabla^2 \left( D_T \cdot T\right) = 0
+
\frac{\partial T}{\partial t} - \nabla^2 \left( D_T \cdot T\right) = 0
 
</math>
 
</math>
  

Revision as of 12:37, 3 April 2013

This application solves the Laplace equation for unsteady, isotropic diffusion:


\frac{\partial T}{\partial t} - \nabla^2 \left( D_T \cdot T\right) = 0

where D is a constant. Since this application is one of the simplest possible OpenFOAM solvers, it is a useful starting point for understanding OpenFOAM solvers and the way they are programmed. The Doxygen version of the code is found at [1]. Since OpenFOAM use include files extensively it may be difficult to get the complete overview of the code in the beginning. The advantage is of course that writing new applications is simplified, since it is often sufficient to string together pre-programmed elements with minor modifications.