Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
qbox-public
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
qbox
qbox-public
Commits
a7c71579
Commit
a7c71579
authored
Apr 01, 2019
by
Francois Gygi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix test convergence test of force_tol and stress_tol
parent
61ac1c16
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
+1
-1
BOSampleStepper.C
src/BOSampleStepper.C
+1
-1
No files found.
src/BOSampleStepper.C
View file @
a7c71579
...
...
@@ -1250,7 +1250,7 @@ void BOSampleStepper::step(int niter)
cout
<<
" maxstress: "
<<
scientific
<<
setprecision
(
4
)
<<
maxstress
<<
endl
;
}
iter_done
=
(
maxforce
<
=
force_tol
)
&&
(
maxstress
<=
stress_tol
);
iter_done
=
(
maxforce
<
force_tol
)
&&
(
maxstress
<
stress_tol
);
// print iteration time
double
time
=
tm_iter
.
real
();
...
...
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