Skip to content
Snippets Groups Projects
Commit 4e4c681c authored by Mark OLESEN's avatar Mark OLESEN
Browse files

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

- got lost with overset changes
parent 7c70125b
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
Copyright (C) 2011-2017 OpenFOAM Foundation Copyright (C) 2011-2017 OpenFOAM Foundation
Copyright (C) 2016-2018 OpenCFD Ltd. Copyright (C) 2016-2019 OpenCFD Ltd.
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
This file is part of OpenFOAM. This file is part of OpenFOAM.
...@@ -455,6 +455,17 @@ Foam::SolverPerformance<Foam::vector> Foam::fvMesh::solve ...@@ -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 Foam::SolverPerformance<Foam::symmTensor> Foam::fvMesh::solve
( (
fvMatrix<symmTensor>& m, fvMatrix<symmTensor>& m,
......
...@@ -332,7 +332,7 @@ public: ...@@ -332,7 +332,7 @@ public:
{} {}
//- Solve returning the solution statistics given convergence //- Solve returning the solution statistics given convergence
// tolerance. Use the given solver controls //- tolerance. Use the given solver controls
virtual SolverPerformance<scalar> solve virtual SolverPerformance<scalar> solve
( (
fvMatrix<scalar>&, fvMatrix<scalar>&,
...@@ -340,7 +340,7 @@ public: ...@@ -340,7 +340,7 @@ public:
) const; ) const;
//- Solve returning the solution statistics given convergence //- Solve returning the solution statistics given convergence
// tolerance. Use the given solver controls //- tolerance. Use the given solver controls
virtual SolverPerformance<vector> solve virtual SolverPerformance<vector> solve
( (
fvMatrix<vector>&, fvMatrix<vector>&,
...@@ -348,7 +348,15 @@ public: ...@@ -348,7 +348,15 @@ public:
) const; ) const;
//- Solve returning the solution statistics given convergence //- 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 virtual SolverPerformance<symmTensor> solve
( (
fvMatrix<symmTensor>&, fvMatrix<symmTensor>&,
...@@ -356,7 +364,7 @@ public: ...@@ -356,7 +364,7 @@ public:
) const; ) const;
//- Solve returning the solution statistics given convergence //- Solve returning the solution statistics given convergence
// tolerance. Use the given solver controls //- tolerance. Use the given solver controls
virtual SolverPerformance<tensor> solve virtual SolverPerformance<tensor> solve
( (
fvMatrix<tensor>&, fvMatrix<tensor>&,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment