BUG: add missing fvMesh::solve(sphericalTensor) forward (closes #1526)

- got lost with overset changes
This commit is contained in:
Mark Olesen
2019-12-17 13:53:47 +01:00
parent 7c70125b92
commit 4e4c681c14
2 changed files with 24 additions and 5 deletions

View File

@ -6,7 +6,7 @@
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2011-2017 OpenFOAM Foundation
Copyright (C) 2016-2018 OpenCFD Ltd.
Copyright (C) 2016-2019 OpenCFD Ltd.
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
@ -455,6 +455,17 @@ Foam::SolverPerformance<Foam::vector> Foam::fvMesh::solve
}
Foam::SolverPerformance<Foam::sphericalTensor> Foam::fvMesh::solve
(
fvMatrix<sphericalTensor>& m,
const dictionary& dict
) const
{
// Redirect to fvMatrix solver
return m.solveSegregatedOrCoupled(dict);
}
Foam::SolverPerformance<Foam::symmTensor> Foam::fvMesh::solve
(
fvMatrix<symmTensor>& m,

View File

@ -332,7 +332,7 @@ public:
{}
//- Solve returning the solution statistics given convergence
// tolerance. Use the given solver controls
//- tolerance. Use the given solver controls
virtual SolverPerformance<scalar> solve
(
fvMatrix<scalar>&,
@ -340,7 +340,7 @@ public:
) const;
//- Solve returning the solution statistics given convergence
// tolerance. Use the given solver controls
//- tolerance. Use the given solver controls
virtual SolverPerformance<vector> solve
(
fvMatrix<vector>&,
@ -348,7 +348,15 @@ public:
) const;
//- Solve returning the solution statistics given convergence
// tolerance. Use the given solver controls
//- tolerance. Use the given solver controls
virtual SolverPerformance<sphericalTensor> solve
(
fvMatrix<sphericalTensor>&,
const dictionary&
) const;
//- Solve returning the solution statistics given convergence
//- tolerance. Use the given solver controls
virtual SolverPerformance<symmTensor> solve
(
fvMatrix<symmTensor>&,
@ -356,7 +364,7 @@ public:
) const;
//- Solve returning the solution statistics given convergence
// tolerance. Use the given solver controls
//- tolerance. Use the given solver controls
virtual SolverPerformance<tensor> solve
(
fvMatrix<tensor>&,