Skip to content
GitLab
Menu
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
09f60581
Commit
09f60581
authored
Nov 04, 2011
by
andy
Browse files
STYLE: updated error comments
parent
87e61c64
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/ODE/ODESolvers/KRR4/KRR4.C
View file @
09f60581
...
...
@@ -164,8 +164,21 @@ void Foam::KRR4::solve
if
(
x
==
xTemp
)
{
FatalErrorIn
(
"ODES::KRR4"
)
<<
"stepsize not significant"
FatalErrorIn
(
"void Foam::KRR4::solve"
"("
"const ODE&, "
"scalar&, "
"scalarField&, "
"scalarField&, "
"const scalar, "
"const scalarField&, "
"const scalar, "
"scalar&, "
"scalar&"
") const"
)
<<
"solver stalled: step size = 0"
<<
exit
(
FatalError
);
}
...
...
@@ -189,8 +202,21 @@ void Foam::KRR4::solve
}
}
FatalErrorIn
(
"ODES::KRR4"
)
<<
"exceeded maxtry"
FatalErrorIn
(
"void Foam::KRR4::solve"
"("
"const ODE&, "
"scalar&, "
"scalarField&, "
"scalarField&, "
"const scalar, "
"const scalarField&, "
"const scalar, "
"scalar&, "
"scalar&"
") const"
)
<<
"Maximum number of solver iterations exceeded"
<<
exit
(
FatalError
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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