Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
dumux-repositories
dumux
Commits
e070e79b
Commit
e070e79b
authored
May 10, 2021
by
Timo Koch
Browse files
Merge branch 'fix/3p-tests-on-minimal-setup' into 'master'
fix/3p-tests-on-minimal-setup Closes
#1026
See merge request
!2601
parents
4e48ebff
7cf5f2fb
Changes
3
Hide whitespace changes
Inline
Side-by-side
test/porousmediumflow/3p3c/columnxylol/main.cc
View file @
e070e79b
...
...
@@ -32,7 +32,7 @@
#include <dumux/common/dumuxmessage.hh>
#include <dumux/common/timeloop.hh>
#include <dumux/linear/
amg
backend.hh>
#include <dumux/linear/
seqsolver
backend.hh>
#include <dumux/linear/linearsolvertraits.hh>
#include <dumux/nonlinear/newtonsolver.hh>
...
...
@@ -118,8 +118,8 @@ int main(int argc, char** argv)
auto
assembler
=
std
::
make_shared
<
Assembler
>
(
problem
,
gridGeometry
,
gridVariables
,
timeLoop
,
xOld
);
// the linear solver
using
LinearSolver
=
AMG
BiCGSTABBackend
<
LinearSolverTraits
<
GridGeometry
>>
;
auto
linearSolver
=
std
::
make_shared
<
LinearSolver
>
(
leafGridView
,
gridGeometry
->
dofMapper
()
);
using
LinearSolver
=
ILU0
BiCGSTABBackend
;
auto
linearSolver
=
std
::
make_shared
<
LinearSolver
>
();
// the non-linear solver
using
NewtonSolver
=
NewtonSolver
<
Assembler
,
LinearSolver
>
;
...
...
test/porousmediumflow/3pwateroil/main.cc
View file @
e070e79b
...
...
@@ -33,7 +33,7 @@
#include <dumux/common/dumuxmessage.hh>
#include <dumux/common/timeloop.hh>
#include <dumux/linear/
amg
backend.hh>
#include <dumux/linear/
seqsolver
backend.hh>
#include <dumux/linear/linearsolvertraits.hh>
#include <dumux/nonlinear/newtonsolver.hh>
...
...
@@ -120,8 +120,8 @@ int main(int argc, char** argv)
auto
assembler
=
std
::
make_shared
<
Assembler
>
(
problem
,
gridGeometry
,
gridVariables
,
timeLoop
,
xOld
);
// the linear solver
using
LinearSolver
=
AMG
BiCGSTABBackend
<
LinearSolverTraits
<
GridGeometry
>>
;
auto
linearSolver
=
std
::
make_shared
<
LinearSolver
>
(
leafGridView
,
gridGeometry
->
dofMapper
()
);
using
LinearSolver
=
ILU0
BiCGSTABBackend
;
auto
linearSolver
=
std
::
make_shared
<
LinearSolver
>
();
// the non-linear solver
using
NewtonSolver
=
NewtonSolver
<
Assembler
,
LinearSolver
>
;
...
...
test/porousmediumflow/3pwateroil/params.input
View file @
e070e79b
...
...
@@ -12,6 +12,9 @@ Name = sagd # name passed to the output routines
[Newton]
MaxSteps = 8
[LinearSolver]
ResidualReduction = 1e-16
[Component]
SolidDensity = 2650
SolidThermalConductivity = 2.8
...
...
Write
Preview
Supports
Markdown
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