From 4e4c681c14e979f3a8f949555f813ba38909ae40 Mon Sep 17 00:00:00 2001 From: Mark Olesen <Mark.Olesen@esi-group.com> Date: Tue, 17 Dec 2019 13:53:47 +0100 Subject: [PATCH] BUG: add missing fvMesh::solve(sphericalTensor) forward (closes #1526) - got lost with overset changes --- src/finiteVolume/fvMesh/fvMesh.C | 13 ++++++++++++- src/finiteVolume/fvMesh/fvMesh.H | 16 ++++++++++++---- 2 files changed, 24 insertions(+), 5 deletions(-) diff --git a/src/finiteVolume/fvMesh/fvMesh.C b/src/finiteVolume/fvMesh/fvMesh.C index 16bb6c893d5..21f041a812a 100644 --- a/src/finiteVolume/fvMesh/fvMesh.C +++ b/src/finiteVolume/fvMesh/fvMesh.C @@ -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, diff --git a/src/finiteVolume/fvMesh/fvMesh.H b/src/finiteVolume/fvMesh/fvMesh.H index cb4e5f15ec0..7c1edf9c965 100644 --- a/src/finiteVolume/fvMesh/fvMesh.H +++ b/src/finiteVolume/fvMesh/fvMesh.H @@ -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>&, -- GitLab