STYLE: partial revert for 5cfa97624e

This commit is contained in:
Mark Olesen
2010-04-23 10:23:08 +02:00
parent f7f6faa851
commit 03338b9ea9
113 changed files with 228 additions and 504 deletions

View File

@ -27,8 +27,7 @@ License
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
Foam::autoPtr<Foam::dragModel>
Foam::dragModel::New
Foam::autoPtr<Foam::dragModel> Foam::dragModel::New
(
const dictionary& interfaceDict,
const volScalarField& alpha,
@ -36,15 +35,10 @@ Foam::dragModel::New
const phaseModel& phaseb
)
{
const word modelType
(
interfaceDict.lookup("dragModel" + phasea.name())
);
const word modelType(interfaceDict.lookup("dragModel" + phasea.name()));
Info<< "Selecting dragModel for phase "
<< phasea.name()
<< ": "
<< modelType << endl;
Info<< "Selecting dragModel for phase " << phasea.name()
<< ": " << modelType << endl;
dictionaryConstructorTable::iterator cstrIter =
dictionaryConstructorTablePtr_->find(modelType);