Skip to content

Commit

Permalink
switch tomboulides underscore tol labels to dashes for consitency
Browse files Browse the repository at this point in the history
  • Loading branch information
Sigfried Haering committed Jun 17, 2024
1 parent 1289977 commit f721a33
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/tomboulides.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,17 +117,17 @@ Tomboulides::Tomboulides(mfem::ParMesh *pmesh, int vorder, int porder, temporalS
if (axisym_) assert(!numerical_integ_);

// exposing solver tolerance options to user
tps->getInput("loMach/tomboulides/psolve_atol", pressure_solve_atol_, default_atol_);
tps->getInput("loMach/tomboulides/hsolve_atol", hsolve_atol_, default_atol_);
tps->getInput("loMach/tomboulides/msolve_atol", mass_inverse_atol_, default_atol_);
tps->getInput("loMach/tomboulides/psolve-atol", pressure_solve_atol_, default_atol_);
tps->getInput("loMach/tomboulides/hsolve-atol", hsolve_atol_, default_atol_);
tps->getInput("loMach/tomboulides/msolve-atol", mass_inverse_atol_, default_atol_);

tps->getInput("loMach/tomboulides/psolve_rtol", pressure_solve_rtol_, default_rtol_);
tps->getInput("loMach/tomboulides/hsolve_rtol", hsolve_rtol_, default_rtol_);
tps->getInput("loMach/tomboulides/msolve_rtol", mass_inverse_rtol_, default_rtol_);
tps->getInput("loMach/tomboulides/psolve-rtol", pressure_solve_rtol_, default_rtol_);
tps->getInput("loMach/tomboulides/hsolve-rtol", hsolve_rtol_, default_rtol_);
tps->getInput("loMach/tomboulides/msolve-rtol", mass_inverse_rtol_, default_rtol_);

tps->getInput("loMach/tomboulides/psolve_maxIters", pressure_solve_max_iter_, default_max_iter_);
tps->getInput("loMach/tomboulides/hsolve_maxIters", hsolve_max_iter_, default_max_iter_);
tps->getInput("loMach/tomboulides/msolve_maxIters", mass_inverse_max_iter_, default_max_iter_);
tps->getInput("loMach/tomboulides/psolve-maxIters", pressure_solve_max_iter_, default_max_iter_);
tps->getInput("loMach/tomboulides/hsolve-maxIters", hsolve_max_iter_, default_max_iter_);
tps->getInput("loMach/tomboulides/msolve-maxIters", mass_inverse_max_iter_, default_max_iter_);
}
}

Expand Down

0 comments on commit f721a33

Please sign in to comment.