Skip to content

Commit

Permalink
- use a parallel linear solver
Browse files Browse the repository at this point in the history
  • Loading branch information
guignont committed Nov 19, 2024
1 parent c5d33ba commit ece6f60
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
<verbose>true</verbose>
</linear-solver-->
<linear-solver name="PETScSolver">
<solver name="LU" />
<solver name="SuperLU" />
<verbose>low</verbose>
</linear-solver>
</newton>
Expand Down
14 changes: 7 additions & 7 deletions test/TwoPhaseFlowSimulation/use-case-two-phase-flow.arc
Original file line number Diff line number Diff line change
Expand Up @@ -84,17 +84,17 @@
<tolerance>1.e-8</tolerance>
<control-factor>0.1</control-factor>
<debug-dump-matlab>false</debug-dump-matlab>
<linear-solver name="HypreSolver">
<num-iterations-max>10</num-iterations-max>
<stop-criteria-value>1e-8</stop-criteria-value>
<!--linear-solver name="HypreSolver">
<num-iterations-max>1000</num-iterations-max>
<stop-criteria-value>1e-3</stop-criteria-value>
<solver>BiCGStab</solver>
<preconditioner>Euclid</preconditioner>
<verbose>true</verbose>
</linear-solver>
<!--linear-solver name="PETScSolver">
<solver name="LU" />
<verbose>low</verbose>
</linear-solver-->
<linear-solver name="PETScSolver">
<solver name="SuperLU" />
<verbose>low</verbose>
</linear-solver>
</newton>
</numerics>
<boundary-condition name="DirichletManager">
Expand Down

0 comments on commit ece6f60

Please sign in to comment.