Skip to content

Commit

Permalink
Fixed tolerance for tentative velocity solver
Browse files Browse the repository at this point in the history
  • Loading branch information
eikehmueller committed Sep 19, 2024
1 parent b44f0d2 commit ca3c47a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/timesteppers/hdg_imex.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,7 @@ def get_coarse_op_nullspace():
# tentative velocity solve
solver_parameters = {
"ksp_type": "gmres",
"ksp_rtol": 1e-10,
"pc_type": "ilu",
}
u_Q = TrialFunction(self._V_Q)
Expand Down

0 comments on commit ca3c47a

Please sign in to comment.