mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev
This commit is contained in:
@ -141,7 +141,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;
|
||||
}
|
||||
|
||||
@ -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))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user