Skip to content

Commit

Permalink
updated terminology in what's printed to the screen
Browse files Browse the repository at this point in the history
  • Loading branch information
stvdwtt committed Mar 5, 2019
1 parent 288fbd5 commit 4c67762
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/matrixfree/solveIncrement.cc
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ void MatrixFreePDE<dim,degree>::solveIncrement(bool skip_time_dependent){
}
}
catch (...) {
pcout << "\nWarning: implicit solver did not converge as per set tolerances. consider increasing maxSolverIterations or decreasing solverTolerance.\n";
pcout << "\nWarning: linear solver did not converge as per set tolerances. consider increasing the maximum number of iterations or decreasing the solver tolerance.\n";
}

if (userInputs.var_nonlinear[fieldIndex]){
Expand Down Expand Up @@ -197,7 +197,7 @@ void MatrixFreePDE<dim,degree>::solveIncrement(bool skip_time_dependent){
else {
dU_norm = dU_vector.l2_norm();
}
sprintf(buffer, "field '%2s' [implicit solve]: initial residual:%12.6e, current residual:%12.6e, nsteps:%u, tolerance criterion:%12.6e, solution: %12.6e, dU: %12.6e\n", \
sprintf(buffer, "field '%2s' [linear solve]: initial residual:%12.6e, current residual:%12.6e, nsteps:%u, tolerance criterion:%12.6e, solution: %12.6e, dU: %12.6e\n", \
fields[fieldIndex].name.c_str(), \
residualSet[fieldIndex]->l2_norm(), \
solver_control.last_value(), \
Expand Down Expand Up @@ -245,7 +245,7 @@ void MatrixFreePDE<dim,degree>::solveIncrement(bool skip_time_dependent){
else {
dU_norm = dU_vector.l2_norm();
}
sprintf(buffer, "field '%2s' [implicit solve]: initial residual:%12.6e, current residual:%12.6e, nsteps:%u, tolerance criterion:%12.6e, solution: %12.6e, dU: %12.6e\n", \
sprintf(buffer, "field '%2s' [linear solve]: initial residual:%12.6e, current residual:%12.6e, nsteps:%u, tolerance criterion:%12.6e, solution: %12.6e, dU: %12.6e\n", \
fields[fieldIndex].name.c_str(), \
residualSet[fieldIndex]->l2_norm(), \
solver_control.last_value(), \
Expand Down

0 comments on commit 4c67762

Please sign in to comment.