diff --git a/src/finiteVolume/fvMatrices/fvBlockMatrix/fvBlockMatrix.C b/src/finiteVolume/fvMatrices/fvBlockMatrix/fvBlockMatrix.C index b7cc5bf30..294935d87 100644 --- a/src/finiteVolume/fvMatrices/fvBlockMatrix/fvBlockMatrix.C +++ b/src/finiteVolume/fvMatrices/fvBlockMatrix/fvBlockMatrix.C @@ -26,11 +26,16 @@ License #include "fvBlockMatrix.H" #include "IOstreams.H" +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ + // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // template template -void Foam::fvBlockMatrix::insertSolutionVector +void fvBlockMatrix::insertSolutionVector ( const direction dir, const Field& xSingle @@ -59,7 +64,7 @@ void Foam::fvBlockMatrix::insertSolutionVector template template -void Foam::fvBlockMatrix::insertDiagSource +void fvBlockMatrix::insertDiagSource ( const direction dir, fvMatrix& matrix @@ -162,7 +167,7 @@ void Foam::fvBlockMatrix::insertDiagSource template template -void Foam::fvBlockMatrix::insertUpperLower +void fvBlockMatrix::insertUpperLower ( const direction dir, const fvMatrix& matrix @@ -290,7 +295,7 @@ void Foam::fvBlockMatrix::insertUpperLower template template -void Foam::fvBlockMatrix::updateCouplingCoeffs +void fvBlockMatrix::updateCouplingCoeffs ( const direction dir, const fvMatrix& matrix @@ -563,7 +568,7 @@ void Foam::fvBlockMatrix::insertBoundaryContributions template -void Foam::fvBlockMatrix::insertCouplingDiag +void fvBlockMatrix::insertCouplingDiag ( const direction dirI, const direction dirJ, @@ -586,7 +591,7 @@ void Foam::fvBlockMatrix::insertCouplingDiag template -void Foam::fvBlockMatrix::insertCouplingUpperLower +void fvBlockMatrix::insertCouplingUpperLower ( const direction dirI, const direction dirJ, @@ -673,7 +678,7 @@ void Foam::fvBlockMatrix::insertCouplingUpperLower // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // template -Foam::fvBlockMatrix::fvBlockMatrix +fvBlockMatrix::fvBlockMatrix ( GeometricField& psi ) @@ -686,7 +691,7 @@ Foam::fvBlockMatrix::fvBlockMatrix template -Foam::fvBlockMatrix::fvBlockMatrix +fvBlockMatrix::fvBlockMatrix ( const fvBlockMatrix& bxs ) @@ -700,7 +705,7 @@ Foam::fvBlockMatrix::fvBlockMatrix template template -void Foam::fvBlockMatrix::retrieveSolution +void fvBlockMatrix::retrieveSolution ( const direction dir, Field& xSingle @@ -729,7 +734,7 @@ void Foam::fvBlockMatrix::retrieveSolution template template -void Foam::fvBlockMatrix::insertEquation +void fvBlockMatrix::insertEquation ( const direction dir, fvMatrix& matrix @@ -744,7 +749,7 @@ void Foam::fvBlockMatrix::insertEquation template template -void Foam::fvBlockMatrix::insertBlockCoupling +void fvBlockMatrix::insertBlockCoupling ( const direction dirI, const direction dirJ, @@ -773,7 +778,7 @@ void Foam::fvBlockMatrix::insertEquationCoupling template -void Foam::fvBlockMatrix::blockAdd +void fvBlockMatrix::blockAdd ( const direction dir, const scalarField& xSingle, @@ -822,7 +827,7 @@ void Foam::fvBlockMatrix::updateSourceCoupling() template -Foam::BlockSolverPerformance Foam::fvBlockMatrix::solve +BlockSolverPerformance fvBlockMatrix::solve ( const dictionary& solverControls ) @@ -844,7 +849,7 @@ Foam::BlockSolverPerformance Foam::fvBlockMatrix::solve template -Foam::BlockSolverPerformance Foam::fvBlockMatrix::solve() +BlockSolverPerformance fvBlockMatrix::solve() { return solve(psi_.mesh().solutionDict().solverDict(psi_.name())); } @@ -853,7 +858,7 @@ Foam::BlockSolverPerformance Foam::fvBlockMatrix::solve() // * * * * * * * * * * * * * * * IOstream Operators * * * * * * * * * * * * // template -Foam::Ostream& Foam::operator<< +Ostream& operator<< ( Ostream& os, const fvBlockMatrix& bxs @@ -866,4 +871,8 @@ Foam::Ostream& Foam::operator<< } +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace Foam + // ************************************************************************* //