Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Nektar
Nektar
Commits
ded2bb02
Commit
ded2bb02
authored
Dec 05, 2017
by
Kilian Lackhove
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix/SteadyStateOutput' into 'master'
Fix steady state output condition See merge request
!881
parents
db44629f
2d30d401
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
library/SolverUtils/UnsteadySystem.cpp
library/SolverUtils/UnsteadySystem.cpp
+1
-1
No files found.
library/SolverUtils/UnsteadySystem.cpp
View file @
ded2bb02
...
...
@@ -759,7 +759,7 @@ namespace Nektar
NekDouble
maxL2
=
Vmath
::
Vmax
(
nFields
,
L2
,
1
);
if
(
m_session
->
DefinesCmdLineArgument
(
"verbose"
)
&&
m_comm
->
GetRank
()
==
0
&&
(
step
%
m_infosteps
==
0
))
m_comm
->
GetRank
()
==
0
&&
(
(
step
+
1
)
%
m_infosteps
==
0
))
{
cout
<<
"-- Maximum L^2 residual: "
<<
maxL2
<<
endl
;
}
...
...
Write
Preview
Markdown
is supported
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