Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openfoam
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Development
openfoam
Commits
4e4c681c
Commit
4e4c681c
authored
5 years ago
by
Mark OLESEN
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/finiteVolume/fvMesh/fvMesh.C
+12
-1
12 additions, 1 deletion
src/finiteVolume/fvMesh/fvMesh.C
src/finiteVolume/fvMesh/fvMesh.H
+12
-4
12 additions, 4 deletions
src/finiteVolume/fvMesh/fvMesh.H
with
24 additions
and
5 deletions
src/finiteVolume/fvMesh/fvMesh.C
+
12
−
1
View file @
4e4c681c
...
@@ -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-201
8
OpenCFD Ltd.
Copyright (C) 2016-201
9
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
,
...
...
This diff is collapsed.
Click to expand it.
src/finiteVolume/fvMesh/fvMesh.H
+
12
−
4
View file @
4e4c681c
...
@@ -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
>&
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment