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-appl
dumux-preCICE
Commits
77a2e470
Commit
77a2e470
authored
Oct 13, 2021
by
Alexander Jaust
Browse files
[update] update partitioned 3d case to DuMuX 3.4
parent
c1e834ef
Changes
3
Hide whitespace changes
Inline
Side-by-side
appl/coupling-ff-pm/partitioned/ff-pm-3d/ffproblem-reversed.hh
View file @
77a2e470
...
...
@@ -28,6 +28,7 @@
#endif
#include
<dune/grid/yaspgrid.hh>
#include
<dumux/common/numeqvector.hh>
#include
<dumux/material/components/simpleh2o.hh>
#include
<dumux/material/fluidsystems/1pliquid.hh>
...
...
@@ -105,7 +106,7 @@ class StokesSubProblem : public NavierStokesProblem<TypeTag>
using
Indices
=
typename
GetPropType
<
TypeTag
,
Properties
::
ModelTraits
>::
Indices
;
using
BoundaryTypes
=
GetPropType
<
TypeTag
,
Properties
::
BoundaryTypes
>
;
using
BoundaryTypes
=
Dumux
::
NavierStokesBoundaryTypes
<
GetPropType
<
TypeTag
,
Properties
::
ModelTraits
>::
numEq
()
>
;
using
FVElementGeometry
=
typename
GridGeometry
::
LocalView
;
using
SubControlVolumeFace
=
...
...
@@ -115,7 +116,7 @@ class StokesSubProblem : public NavierStokesProblem<TypeTag>
using
GlobalPosition
=
typename
Element
::
Geometry
::
GlobalCoordinate
;
using
PrimaryVariables
=
GetPropType
<
TypeTag
,
Properties
::
PrimaryVariables
>
;
using
NumEqVector
=
GetPropType
<
TypeTag
,
Properties
::
NumEqVector
>
;
using
NumEqVector
=
Dumux
::
NumEqVector
<
PrimaryVariables
>
;
using
FluidSystem
=
GetPropType
<
TypeTag
,
Properties
::
FluidSystem
>
;
#if ENABLEMONOLITHIC
...
...
appl/coupling-ff-pm/partitioned/ff-pm-3d/main_pm-reversed.cc
View file @
77a2e470
...
...
@@ -41,7 +41,6 @@ bool printstuff = false;
#include
<dumux/common/math.hh>
#include
<dumux/common/parameters.hh>
#include
<dumux/common/properties.hh>
#include
<dumux/common/valgrind.hh>
#include
<dumux/linear/amgbackend.hh>
#include
<dumux/nonlinear/newtonsolver.hh>
...
...
appl/coupling-ff-pm/partitioned/ff-pm-3d/pmproblem-reversed.hh
View file @
77a2e470
...
...
@@ -29,7 +29,7 @@
#endif
#include
<dune/grid/yaspgrid.hh>
#include
<dumux/common/numeqvector.hh>
//****** uncomment for the last exercise *****//
// #include <dumux/io/grid/subgridgridcreator.hh>
...
...
@@ -100,8 +100,8 @@ class DarcySubProblem : public PorousMediumFlowProblemWithGravity<TypeTag>
typename
GetPropType
<
TypeTag
,
Properties
::
GridGeometry
>::
GridView
;
using
Scalar
=
GetPropType
<
TypeTag
,
Properties
::
Scalar
>
;
using
PrimaryVariables
=
GetPropType
<
TypeTag
,
Properties
::
PrimaryVariables
>
;
using
NumEqVector
=
GetPropType
<
TypeTag
,
Properties
::
NumEqVector
>
;
using
BoundaryTypes
=
GetPropType
<
TypeTag
,
Properties
::
BoundaryTypes
>
;
using
NumEqVector
=
Dumux
::
NumEqVector
<
PrimaryVariables
>
;
using
BoundaryTypes
=
Dumux
::
BoundaryTypes
<
GetPropType
<
TypeTag
,
Properties
::
ModelTraits
>::
numEq
()
>
;
using
VolumeVariables
=
GetPropType
<
TypeTag
,
Properties
::
VolumeVariables
>
;
using
FVElementGeometry
=
typename
GetPropType
<
TypeTag
,
Properties
::
GridGeometry
>::
LocalView
;
...
...
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