fvOption: Rationalize corrections

This commit is contained in:
Henry
2015-06-01 11:18:45 +01:00
parent bbbad9cfc0
commit 257d71ebf1
10 changed files with 139 additions and 156 deletions

View File

@ -149,7 +149,7 @@ Foam::fv::option& Foam::fv::CodedSource<Type>::redirectFvOption() const
template<class Type>
void Foam::fv::CodedSource<Type>::correct
(
GeometricField<Type, fvPatchField, volMesh>& fld
GeometricField<Type, fvPatchField, volMesh>& field
)
{
if (debug)
@ -159,7 +159,7 @@ void Foam::fv::CodedSource<Type>::correct
}
updateLibrary(redirectType_);
redirectFvOption().correct(fld);
redirectFvOption().correct(field);
}