diff --git a/src/finiteVolume/fields/fvPatchFields/basic/directionMixed/directionMixedFvPatchField.C b/src/finiteVolume/fields/fvPatchFields/basic/directionMixed/directionMixedFvPatchField.C index 7db899daa1..e402e4edca 100644 --- a/src/finiteVolume/fields/fvPatchFields/basic/directionMixed/directionMixedFvPatchField.C +++ b/src/finiteVolume/fields/fvPatchFields/basic/directionMixed/directionMixedFvPatchField.C @@ -1,6 +1,6 @@ /*---------------------------------------------------------------------------*\ ========= | - \\ / F ield | OpenOAM: The Open Source CFD Toolbox + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | Copyright (C) 1991-2009 OpenCFD Ltd. \\/ M anipulation | @@ -26,15 +26,10 @@ License #include "directionMixedFvPatchField.H" #include "symmTransformField.H" -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -namespace Foam -{ - // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // template -directionMixedFvPatchField::directionMixedFvPatchField +Foam::directionMixedFvPatchField::directionMixedFvPatchField ( const fvPatch& p, const DimensionedField& iF @@ -48,7 +43,7 @@ directionMixedFvPatchField::directionMixedFvPatchField template -directionMixedFvPatchField::directionMixedFvPatchField +Foam::directionMixedFvPatchField::directionMixedFvPatchField ( const directionMixedFvPatchField& ptf, const fvPatch& p, @@ -64,7 +59,7 @@ directionMixedFvPatchField::directionMixedFvPatchField template -directionMixedFvPatchField::directionMixedFvPatchField +Foam::directionMixedFvPatchField::directionMixedFvPatchField ( const fvPatch& p, const DimensionedField& iF, @@ -81,7 +76,7 @@ directionMixedFvPatchField::directionMixedFvPatchField template -directionMixedFvPatchField::directionMixedFvPatchField +Foam::directionMixedFvPatchField::directionMixedFvPatchField ( const directionMixedFvPatchField& ptf, const DimensionedField& iF @@ -97,7 +92,7 @@ directionMixedFvPatchField::directionMixedFvPatchField // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // template -void directionMixedFvPatchField::autoMap +void Foam::directionMixedFvPatchField::autoMap ( const fvPatchFieldMapper& m ) @@ -110,7 +105,7 @@ void directionMixedFvPatchField::autoMap template -void directionMixedFvPatchField::rmap +void Foam::directionMixedFvPatchField::rmap ( const fvPatchField& ptf, const labelList& addr @@ -128,7 +123,8 @@ void directionMixedFvPatchField::rmap template -tmp > directionMixedFvPatchField::snGrad() const +Foam::tmp > +Foam::directionMixedFvPatchField::snGrad() const { Field pif = this->patchInternalField(); @@ -146,7 +142,7 @@ tmp > directionMixedFvPatchField::snGrad() const template -void directionMixedFvPatchField::evaluate(const Pstream::commsTypes) +void Foam::directionMixedFvPatchField::evaluate(const Pstream::commsTypes) { if (!this->updated()) { @@ -168,7 +164,8 @@ void directionMixedFvPatchField::evaluate(const Pstream::commsTypes) template -tmp > directionMixedFvPatchField::snGradTransformDiag() const +Foam::tmp > +Foam::directionMixedFvPatchField::snGradTransformDiag() const { vectorField diag(valueFraction_.size()); @@ -193,7 +190,7 @@ tmp > directionMixedFvPatchField::snGradTransformDiag() const template -void directionMixedFvPatchField::write(Ostream& os) const +void Foam::directionMixedFvPatchField::write(Ostream& os) const { transformFvPatchField::write(os); refValue_.writeEntry("refValue", os); @@ -203,8 +200,4 @@ void directionMixedFvPatchField::write(Ostream& os) const } -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -} // End namespace Foam - // ************************************************************************* //