mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: add missing fvMesh::solve(sphericalTensor) forward (closes #1526)
- got lost with overset changes
This commit is contained in:
@ -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,
|
||||
|
||||
@ -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>&,
|
||||
|
||||
Reference in New Issue
Block a user