Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
26386498
Commit
26386498
authored
Feb 12, 2016
by
Henry Weller
Browse files
OpenFOAM/matrices/solution: Simplify debug messages for consistency
parent
0326cbbd
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/OpenFOAM/matrices/solution/solution.C
View file @
26386498
...
...
@@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-201
5
OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-201
6
OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
...
...
@@ -39,12 +39,10 @@ namespace Foam
}
// List of sub-dictionaries to rewrite
//! \cond localScope
static
const
Foam
::
List
<
Foam
::
word
>
subDictNames
(
Foam
::
IStringStream
(
"(preconditioner smoother)"
)()
);
//! \endcond
// * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * * //
...
...
@@ -108,7 +106,7 @@ void Foam::solution::read(const dictionary& dict)
if
(
debug
)
{
Info
<<
"
r
elaxation factors:"
<<
nl
Info
<<
"
R
elaxation factors:"
<<
nl
<<
"fields: "
<<
fieldRelaxDict_
<<
nl
<<
"equations: "
<<
eqnRelaxDict_
<<
endl
;
}
...
...
@@ -364,8 +362,7 @@ const Foam::dictionary& Foam::solution::solverDict(const word& name) const
{
if
(
debug
)
{
InfoInFunction
<<
"Lookup solver for "
<<
name
<<
endl
;
Info
<<
"Lookup solver for "
<<
name
<<
endl
;
}
return
solvers_
.
subDict
(
name
);
...
...
@@ -376,8 +373,7 @@ const Foam::dictionary& Foam::solution::solver(const word& name) const
{
if
(
debug
)
{
InfoInFunction
<<
"Lookup solver for "
<<
name
<<
endl
;
Info
<<
"Lookup solver for "
<<
name
<<
endl
;
}
return
solvers_
.
subDict
(
name
);
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment