Merge branch 'master' of github.com:OpenFOAM/OpenFOAM-2.3.x
This commit is contained in:
commit
764f07594c
5 changed files with 10 additions and 10 deletions
|
|
@ -19,7 +19,7 @@ functions
|
|||
turbulenceFields1
|
||||
{
|
||||
type turbulenceFields;
|
||||
functionObjectLibs ("libfieldFunctionObjects.so");
|
||||
functionObjectLibs ("libutilityFunctionObjects.so");
|
||||
enabled true;
|
||||
outputControl timeStep;
|
||||
outputInterval 1;
|
||||
|
|
|
|||
|
|
@ -143,7 +143,7 @@ void Foam::turbulenceFields::read(const dictionary& dict)
|
|||
Info<< "storing fields:" << nl;
|
||||
forAllConstIter(wordHashSet, fieldSet_, iter)
|
||||
{
|
||||
Info<< " " << modelName << '.' << iter.key() << nl;
|
||||
Info<< " " << modelName << ':' << iter.key() << nl;
|
||||
}
|
||||
Info<< endl;
|
||||
}
|
||||
|
|
@ -151,8 +151,6 @@ void Foam::turbulenceFields::read(const dictionary& dict)
|
|||
{
|
||||
Info<< "no fields requested to be stored" << nl << endl;
|
||||
}
|
||||
|
||||
execute();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -32,16 +32,16 @@ Description
|
|||
further manipulation.
|
||||
|
||||
Fields are stored as copies of the original, with the prefix
|
||||
"tubulenceModel::", e.g.
|
||||
"tubulenceModel:", e.g.
|
||||
|
||||
turbulenceModel::R
|
||||
turbulenceModel:R
|
||||
|
||||
Example of function object specification:
|
||||
\verbatim
|
||||
turbulenceFields1
|
||||
{
|
||||
type turbulenceFields;
|
||||
functionObjectLibs ("libfieldFunctionObjects.so");
|
||||
functionObjectLibs ("libutilityFunctionObjects.so");
|
||||
...
|
||||
fields
|
||||
(
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ void Foam::turbulenceFields::processField
|
|||
{
|
||||
typedef GeometricField<Type, fvPatchField, volMesh> FieldType;
|
||||
|
||||
const word scopedName = modelName + '.' + fieldName;
|
||||
const word scopedName = modelName + ':' + fieldName;
|
||||
|
||||
if (obr_.foundObject<FieldType>(scopedName))
|
||||
{
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2014 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
|
|
@ -217,6 +217,8 @@ void Foam::radiation::P1::calculate()
|
|||
E_ = absorptionEmission_->E();
|
||||
const volScalarField sigmaEff(scatter_->sigmaEff());
|
||||
|
||||
const dimensionedScalar a0 ("a0", a_.dimensions(), ROOTVSMALL);
|
||||
|
||||
// Construct diffusion
|
||||
const volScalarField gamma
|
||||
(
|
||||
|
|
@ -228,7 +230,7 @@ void Foam::radiation::P1::calculate()
|
|||
IOobject::NO_READ,
|
||||
IOobject::NO_WRITE
|
||||
),
|
||||
1.0/(3.0*a_ + sigmaEff)
|
||||
1.0/(3.0*a_ + sigmaEff + a0)
|
||||
);
|
||||
|
||||
// Solve G transport equation
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue