mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
25 lines
974 B
C++
25 lines
974 B
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Web: www.OpenFOAM.com
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
Description
|
|
Solves a transport equation for a scalar field.
|
|
|
|
The name of the scalar field is specified in this file. A sample scalar
|
|
field file, that must be initialised for the case, typically in the 0
|
|
directory, is available in $FOAM_ETC/caseDicts/solvers/scalarTransport.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
type scalarTransport;
|
|
libs ("libsolverFunctionObjects.so");
|
|
|
|
field s;
|
|
schemesField s;
|
|
D 1e-09;
|
|
|
|
// ************************************************************************* //
|