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-lecture
Commits
a28378a2
Commit
a28378a2
authored
Mar 26, 2020
by
Simon Emmert
Browse files
[properties][cleanup] replace deprecated GridView by GridGeometry::GridView
parent
56126ea6
Changes
27
Hide whitespace changes
Inline
Side-by-side
lecture/efm/1p2c_2p_2p2c/lens1p2cproblem.hh
View file @
a28378a2
...
...
@@ -109,7 +109,7 @@ template <class TypeTag >
class
LensOnePTwoCProblem
:
public
PorousMediumFlowProblem
<
TypeTag
>
{
using
ParentType
=
PorousMediumFlowProblem
<
TypeTag
>
;
using
GridView
=
GetPropType
<
TypeTag
,
Properties
::
GridView
>
;
using
GridView
=
typename
GetPropType
<
TypeTag
,
Properties
::
GridGeometry
>::
GridView
;
using
Scalar
=
GetPropType
<
TypeTag
,
Properties
::
Scalar
>
;
using
FluidSystem
=
GetPropType
<
TypeTag
,
Properties
::
FluidSystem
>
;
using
VolumeVariables
=
GetPropType
<
TypeTag
,
Properties
::
VolumeVariables
>
;
...
...
lecture/efm/1p2c_2p_2p2c/lens2p2cproblem.hh
View file @
a28378a2
...
...
@@ -107,7 +107,7 @@ template<class TypeTag>
class
LensTwoPTwoCProblem
:
public
PorousMediumFlowProblem
<
TypeTag
>
{
using
ParentType
=
PorousMediumFlowProblem
<
TypeTag
>
;
using
GridView
=
GetPropType
<
TypeTag
,
Properties
::
GridView
>
;
using
GridView
=
typename
GetPropType
<
TypeTag
,
Properties
::
GridGeometry
>::
GridView
;
using
Scalar
=
GetPropType
<
TypeTag
,
Properties
::
Scalar
>
;
using
FluidSystem
=
GetPropType
<
TypeTag
,
Properties
::
FluidSystem
>
;
using
VolumeVariables
=
GetPropType
<
TypeTag
,
Properties
::
VolumeVariables
>
;
...
...
lecture/efm/1p2c_2p_2p2c/lens2pproblem.hh
View file @
a28378a2
...
...
@@ -111,7 +111,7 @@ template <typename TypeTag>
class
LensTwoPProblem
:
public
PorousMediumFlowProblem
<
TypeTag
>
{
using
ParentType
=
PorousMediumFlowProblem
<
TypeTag
>
;
using
GridView
=
GetPropType
<
TypeTag
,
Properties
::
GridView
>
;
using
GridView
=
typename
GetPropType
<
TypeTag
,
Properties
::
GridGeometry
>::
GridView
;
using
Scalar
=
GetPropType
<
TypeTag
,
Properties
::
Scalar
>
;
using
Indices
=
typename
GetPropType
<
TypeTag
,
Properties
::
ModelTraits
>::
Indices
;
using
FVGridGeometry
=
GetPropType
<
TypeTag
,
Properties
::
GridGeometry
>
;
...
...
lecture/efm/1p2cvs2p/lens1p2cproblem.hh
View file @
a28378a2
...
...
@@ -112,7 +112,7 @@ class LensOnePTwoCProblem : public PorousMediumFlowProblem<TypeTag>
using
Indices
=
typename
GetPropType
<
TypeTag
,
Properties
::
ModelTraits
>::
Indices
;
using
PrimaryVariables
=
GetPropType
<
TypeTag
,
Properties
::
PrimaryVariables
>
;
using
BoundaryTypes
=
GetPropType
<
TypeTag
,
Properties
::
BoundaryTypes
>
;
using
GridView
=
GetPropType
<
TypeTag
,
Properties
::
GridView
>
;
using
GridView
=
typename
GetPropType
<
TypeTag
,
Properties
::
GridGeometry
>::
GridView
;
using
FluidSystem
=
GetPropType
<
TypeTag
,
Properties
::
FluidSystem
>
;
using
FVGridGeometry
=
GetPropType
<
TypeTag
,
Properties
::
GridGeometry
>
;
using
FVElementGeometry
=
typename
GetPropType
<
TypeTag
,
Properties
::
GridGeometry
>::
LocalView
;
...
...
lecture/efm/1p2cvs2p/lens2pproblem.hh
View file @
a28378a2
...
...
@@ -120,7 +120,7 @@ template <class TypeTag >
class
LensTwoPProblem
:
public
PorousMediumFlowProblem
<
TypeTag
>
{
using
ParentType
=
PorousMediumFlowProblem
<
TypeTag
>
;
using
GridView
=
GetPropType
<
TypeTag
,
Properties
::
GridView
>
;
using
GridView
=
typename
GetPropType
<
TypeTag
,
Properties
::
GridGeometry
>::
GridView
;
using
Scalar
=
GetPropType
<
TypeTag
,
Properties
::
Scalar
>
;
using
Indices
=
typename
GetPropType
<
TypeTag
,
Properties
::
ModelTraits
>::
Indices
;
using
FluidSystem
=
GetPropType
<
TypeTag
,
Properties
::
FluidSystem
>
;
...
...
lecture/efm/2p/lens2pproblem.hh
View file @
a28378a2
...
...
@@ -118,7 +118,7 @@ template <class TypeTag >
class
LensTwoPProblem
:
public
PorousMediumFlowProblem
<
TypeTag
>
{
using
ParentType
=
PorousMediumFlowProblem
<
TypeTag
>
;
using
GridView
=
GetPropType
<
TypeTag
,
Properties
::
GridView
>
;
using
GridView
=
typename
GetPropType
<
TypeTag
,
Properties
::
GridGeometry
>::
GridView
;
using
FVGridGeometry
=
GetPropType
<
TypeTag
,
Properties
::
GridGeometry
>
;
using
Scalar
=
GetPropType
<
TypeTag
,
Properties
::
Scalar
>
;
using
Indices
=
typename
GetPropType
<
TypeTag
,
Properties
::
ModelTraits
>::
Indices
;
...
...
lecture/mhs/groundwater/groundwaterproblem.hh
View file @
a28378a2
...
...
@@ -76,7 +76,7 @@ class GroundwaterProblem : public DiffusionProblem1P<TypeTag>
{
typedef
DiffusionProblem1P
<
TypeTag
>
ParentType
;
typedef
GetPropType
<
TypeTag
,
Properties
::
TimeManager
>
TimeManager
;
typedef
GetPropType
<
TypeTag
,
Properties
::
GridView
>
GridView
;
typedef
typename
GetPropType
<
TypeTag
,
Properties
::
GridGeometry
>::
GridView
GridView
;
typedef
typename
GridView
::
Grid
Grid
;
typedef
GetPropType
<
TypeTag
,
Properties
::
FluidSystem
>
FluidSystem
;
typedef
GetPropType
<
TypeTag
,
Properties
::
PrimaryVariables
>
PrimaryVariables
;
...
...
lecture/mhs/groundwater/groundwaterspatialparams.hh
View file @
a28378a2
...
...
@@ -34,7 +34,7 @@ namespace Dumux {
template
<
class
TypeTag
>
class
GroundwaterSpatialParams
:
public
SequentialFVSpatialParamsOneP
<
TypeTag
>
{
typedef
GetPropType
<
TypeTag
,
Properties
::
GridView
>
GridView
;
typedef
typename
GetPropType
<
TypeTag
,
Properties
::
GridGeometry
>::
GridView
GridView
;
typedef
GetPropType
<
TypeTag
,
Properties
::
Problem
>
Problem
;
typedef
GetPropType
<
TypeTag
,
Properties
::
Scalar
>
Scalar
;
...
...
lecture/mm/buckleyleverett/buckleyleverettanalyticsolution.hh
View file @
a28378a2
...
...
@@ -67,7 +67,7 @@ template<class TypeTag> class BuckleyLeverettAnalytic
{
using
Problem
=
GetPropType
<
TypeTag
,
Properties
::
Problem
>
;
using
Grid
=
GetPropType
<
TypeTag
,
Properties
::
Grid
>
;
using
GridView
=
GetPropType
<
TypeTag
,
Properties
::
GridView
>
;
using
GridView
=
typename
GetPropType
<
TypeTag
,
Properties
::
GridGeometry
>::
GridView
;
using
Scalar
=
GetPropType
<
TypeTag
,
Properties
::
Scalar
>
;
using
SpatialParams
=
GetPropType
<
TypeTag
,
Properties
::
SpatialParams
>
;
using
MaterialLaw
=
typename
SpatialParams
::
MaterialLaw
;
...
...
lecture/mm/buckleyleverett/buckleyleverettproblem.hh
View file @
a28378a2
...
...
@@ -82,7 +82,7 @@ template<typename TypeTag>
class
BuckleyLeverettProblem
:
public
IMPESProblem2P
<
TypeTag
>
{
using
ParentType
=
IMPESProblem2P
<
TypeTag
>
;
using
GridView
=
GetPropType
<
TypeTag
,
Properties
::
GridView
>
;
using
GridView
=
typename
GetPropType
<
TypeTag
,
Properties
::
GridGeometry
>::
GridView
;
using
Indices
=
GetPropType
<
TypeTag
,
Properties
::
Indices
>
;
using
Scalar
=
GetPropType
<
TypeTag
,
Properties
::
Scalar
>
;
using
TimeManager
=
GetPropType
<
TypeTag
,
Properties
::
TimeManager
>
;
...
...
lecture/mm/buckleyleverett/buckleyleverettspatialparams.hh
View file @
a28378a2
...
...
@@ -61,7 +61,7 @@ template<class TypeTag>
class
BuckleyLeverettSpatialParams
:
public
SequentialFVSpatialParams
<
TypeTag
>
{
using
Grid
=
GetPropType
<
TypeTag
,
Properties
::
Grid
>
;
using
GridView
=
GetPropType
<
TypeTag
,
Properties
::
GridView
>
;
using
GridView
=
typename
GetPropType
<
TypeTag
,
Properties
::
GridGeometry
>::
GridView
;
using
Scalar
=
GetPropType
<
TypeTag
,
Properties
::
Scalar
>
;
using
Problem
=
GetPropType
<
TypeTag
,
Properties
::
Problem
>
;
using
ParentType
=
SequentialFVSpatialParams
<
TypeTag
>
;
...
...
lecture/mm/co2plume/co2plumeshapeproblem.hh
View file @
a28378a2
...
...
@@ -120,7 +120,7 @@ class PlumeShapeProblem : public PorousMediumFlowProblem<TypeTag>
{
using
ParentType
=
PorousMediumFlowProblem
<
TypeTag
>
;
using
GridView
=
GetPropType
<
TypeTag
,
Properties
::
GridView
>
;
using
GridView
=
typename
GetPropType
<
TypeTag
,
Properties
::
GridGeometry
>::
GridView
;
using
Scalar
=
GetPropType
<
TypeTag
,
Properties
::
Scalar
>
;
using
FluidSystem
=
GetPropType
<
TypeTag
,
Properties
::
FluidSystem
>
;
using
VolumeVariables
=
GetPropType
<
TypeTag
,
Properties
::
VolumeVariables
>
;
...
...
lecture/mm/columnxylene/columnxyleneproblem.hh
View file @
a28378a2
...
...
@@ -132,7 +132,7 @@ template <class TypeTag >
class
ColumnProblem
:
public
PorousMediumFlowProblem
<
TypeTag
>
{
using
Scalar
=
GetPropType
<
TypeTag
,
Properties
::
Scalar
>
;
using
GridView
=
GetPropType
<
TypeTag
,
Properties
::
GridView
>
;
using
GridView
=
typename
GetPropType
<
TypeTag
,
Properties
::
GridGeometry
>::
GridView
;
using
ParentType
=
PorousMediumFlowProblem
<
TypeTag
>
;
using
FluidSystem
=
GetPropType
<
TypeTag
,
Properties
::
FluidSystem
>
;
...
...
lecture/mm/convectivemixing/convmixproblem.hh
View file @
a28378a2
...
...
@@ -111,7 +111,7 @@ class ConvmixProblem : public PorousMediumFlowProblem<TypeTag>
using
Scalar
=
GetPropType
<
TypeTag
,
Properties
::
Scalar
>
;
using
Indices
=
typename
GetPropType
<
TypeTag
,
Properties
::
ModelTraits
>::
Indices
;
using
GridView
=
GetPropType
<
TypeTag
,
Properties
::
GridView
>
;
using
GridView
=
typename
GetPropType
<
TypeTag
,
Properties
::
GridGeometry
>::
GridView
;
using
FluidSystem
=
GetPropType
<
TypeTag
,
Properties
::
FluidSystem
>
;
using
BoundaryTypes
=
GetPropType
<
TypeTag
,
Properties
::
BoundaryTypes
>
;
using
PrimaryVariables
=
GetPropType
<
TypeTag
,
Properties
::
PrimaryVariables
>
;
...
...
lecture/mm/fuelcell/fuelcellproblem.hh
View file @
a28378a2
...
...
@@ -99,7 +99,7 @@ template <class TypeTag>
class
FuelCellLectureProblem
:
public
PorousMediumFlowProblem
<
TypeTag
>
{
using
ParentType
=
PorousMediumFlowProblem
<
TypeTag
>
;
using
GridView
=
GetPropType
<
TypeTag
,
Properties
::
GridView
>
;
using
GridView
=
typename
GetPropType
<
TypeTag
,
Properties
::
GridGeometry
>::
GridView
;
using
Scalar
=
GetPropType
<
TypeTag
,
Properties
::
Scalar
>
;
using
FluidSystem
=
GetPropType
<
TypeTag
,
Properties
::
FluidSystem
>
;
using
ElementVolumeVariables
=
typename
GetPropType
<
TypeTag
,
Properties
::
GridVolumeVariables
>::
LocalView
;
...
...
lecture/mm/heatpipe/heatpipeproblem.hh
View file @
a28378a2
...
...
@@ -76,7 +76,7 @@ class HeatPipeProblem : public PorousMediumFlowProblem<TypeTag>
using
Indices
=
typename
GetPropType
<
TypeTag
,
Properties
::
ModelTraits
>::
Indices
;
using
FVGridGeometry
=
GetPropType
<
TypeTag
,
Properties
::
GridGeometry
>
;
using
GridView
=
GetPropType
<
TypeTag
,
Properties
::
GridView
>
;
using
GridView
=
typename
GetPropType
<
TypeTag
,
Properties
::
GridGeometry
>::
GridView
;
using
Element
=
typename
GridView
::
template
Codim
<
0
>
::
Entity
;
using
GlobalPosition
=
typename
Element
::
Geometry
::
GlobalCoordinate
;
...
...
lecture/mm/heavyoil/sagd/problem.hh
View file @
a28378a2
...
...
@@ -106,7 +106,7 @@ template <class TypeTag >
class
SagdProblem
:
public
PorousMediumFlowProblem
<
TypeTag
>
{
using
ParentType
=
PorousMediumFlowProblem
<
TypeTag
>
;
using
GridView
=
GetPropType
<
TypeTag
,
Properties
::
GridView
>
;
using
GridView
=
typename
GetPropType
<
TypeTag
,
Properties
::
GridGeometry
>::
GridView
;
using
FVGridGeometry
=
GetPropType
<
TypeTag
,
Properties
::
GridGeometry
>
;
using
Scalar
=
GetPropType
<
TypeTag
,
Properties
::
Scalar
>
;
using
FluidSystem
=
GetPropType
<
TypeTag
,
Properties
::
FluidSystem
>
;
...
...
lecture/mm/heavyoil/sagdcyclic/problem.hh
View file @
a28378a2
...
...
@@ -106,7 +106,7 @@ template <class TypeTag >
class
SagdCyclicProblem
:
public
PorousMediumFlowProblem
<
TypeTag
>
{
using
ParentType
=
PorousMediumFlowProblem
<
TypeTag
>
;
using
GridView
=
GetPropType
<
TypeTag
,
Properties
::
GridView
>
;
using
GridView
=
typename
GetPropType
<
TypeTag
,
Properties
::
GridGeometry
>::
GridView
;
using
FVGridGeometry
=
GetPropType
<
TypeTag
,
Properties
::
GridGeometry
>
;
using
Scalar
=
GetPropType
<
TypeTag
,
Properties
::
Scalar
>
;
using
FluidSystem
=
GetPropType
<
TypeTag
,
Properties
::
FluidSystem
>
;
...
...
lecture/mm/heavyoil/sagdcyclichyst/problem.hh
View file @
a28378a2
...
...
@@ -105,7 +105,7 @@ template <class TypeTag>
class
SagdCyclicHystProblem
:
public
PorousMediumFlowProblem
<
TypeTag
>
{
using
ParentType
=
PorousMediumFlowProblem
<
TypeTag
>
;
using
GridView
=
GetPropType
<
TypeTag
,
Properties
::
GridView
>
;
using
GridView
=
typename
GetPropType
<
TypeTag
,
Properties
::
GridGeometry
>::
GridView
;
using
FVGridGeometry
=
GetPropType
<
TypeTag
,
Properties
::
GridGeometry
>
;
using
Scalar
=
GetPropType
<
TypeTag
,
Properties
::
Scalar
>
;
using
FluidSystem
=
GetPropType
<
TypeTag
,
Properties
::
FluidSystem
>
;
...
...
lecture/mm/henryproblem/henry1p2c/boxfickslawdispersion.hh
View file @
a28378a2
...
...
@@ -55,7 +55,7 @@ class FicksLawDispersionImplementation<TypeTag, DiscretizationMethod::box, refer
using
ElementFluxVariablesCache
=
typename
GetPropType
<
TypeTag
,
Properties
::
GridFluxVariablesCache
>::
LocalView
;
using
FluxVarCache
=
GetPropType
<
TypeTag
,
Properties
::
FluxVariablesCache
>
;
using
BalanceEqOpts
=
GetPropType
<
TypeTag
,
Properties
::
BalanceEqOpts
>
;
using
GridView
=
GetPropType
<
TypeTag
,
Properties
::
GridView
>
;
using
GridView
=
typename
GetPropType
<
TypeTag
,
Properties
::
GridGeometry
>::
GridView
;
using
Element
=
typename
GridView
::
template
Codim
<
0
>
::
Entity
;
using
IndexType
=
typename
GridView
::
IndexSet
::
IndexType
;
using
ModelTraits
=
GetPropType
<
TypeTag
,
Properties
::
ModelTraits
>
;
...
...
Prev
1
2
Next
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