mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
combustionModels/FSD: Corrected
Renamed 'omega' to 'FSDomega' to avoid a clash with the k-omega turbulence models. Resolves bug-report http://bugs.openfoam.org/view.php?id=2237
This commit is contained in:
@ -11,7 +11,7 @@ FoamFile
|
||||
format ascii;
|
||||
class volScalarField;
|
||||
location "0";
|
||||
object omega;
|
||||
object FSDomega;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
@ -35,6 +35,8 @@ FSDCoeffs
|
||||
|
||||
fuel Methane;
|
||||
|
||||
semiImplicit no;
|
||||
|
||||
relaxationCoeffs
|
||||
{
|
||||
C 2.0;
|
||||
|
||||
@ -30,8 +30,10 @@ divSchemes
|
||||
default none;
|
||||
|
||||
div(phi,U) Gauss LUST grad(U);
|
||||
div(U) Gauss linear;
|
||||
div(phi,K) Gauss linear;
|
||||
div(phi,k) Gauss limitedLinear 1;
|
||||
div(phi,FSDomega) Gauss limitedLinear 1;
|
||||
div(phi,Yi_h) Gauss multivariateSelection
|
||||
{
|
||||
O2 limitedLinear01 1;
|
||||
|
||||
@ -54,7 +54,7 @@ solvers
|
||||
}
|
||||
|
||||
|
||||
"(U|Yi|k|h|omega)"
|
||||
"(U|Yi|k|h|FSDomega)"
|
||||
{
|
||||
solver PBiCGStab;
|
||||
preconditioner DILU;
|
||||
@ -63,7 +63,7 @@ solvers
|
||||
nSweeps 1;
|
||||
};
|
||||
|
||||
"(U|Yi|k|h|omega)Final"
|
||||
"(U|Yi|k|h|FSDomega)Final"
|
||||
{
|
||||
$U;
|
||||
tolerance 1e-6;
|
||||
|
||||
Reference in New Issue
Block a user