Skip to content
GitLab
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-course
Commits
4add82f1
Commit
4add82f1
authored
Oct 10, 2019
by
Katharina Heck
Browse files
[cleanup] rename all local occurences of EnableFvGridGeometryCache to
EnableGridGeometryCache
parent
d71a12db
Changes
10
Hide whitespace changes
Inline
Side-by-side
exercises/exercise-biomineralization/biominproblem.hh
View file @
4add82f1
...
...
@@ -95,7 +95,7 @@ struct SpatialParams<TypeTag, TTag::ExerciseFourBioMin> {
};
template
<
class
TypeTag
>
struct
Enable
FV
GridGeometryCache
<
TypeTag
,
TTag
::
ExerciseFourBioMin
>
{
static
constexpr
bool
value
=
true
;
};
struct
EnableGridGeometryCache
<
TypeTag
,
TTag
::
ExerciseFourBioMin
>
{
static
constexpr
bool
value
=
true
;
};
template
<
class
TypeTag
>
struct
EnableGridVolumeVariablesCache
<
TypeTag
,
TTag
::
ExerciseFourBioMin
>
{
static
constexpr
bool
value
=
true
;
};
template
<
class
TypeTag
>
...
...
exercises/exercise-coupling-ff-pm/interface/freeflowsubproblem.hh
View file @
4add82f1
...
...
@@ -78,7 +78,7 @@ template<class TypeTag>
struct
Problem
<
TypeTag
,
TTag
::
StokesOneP
>
{
using
type
=
Dumux
::
FreeFlowSubProblem
<
TypeTag
>
;
};
template
<
class
TypeTag
>
struct
Enable
FV
GridGeometryCache
<
TypeTag
,
TTag
::
StokesOneP
>
{
static
constexpr
bool
value
=
true
;
};
struct
EnableGridGeometryCache
<
TypeTag
,
TTag
::
StokesOneP
>
{
static
constexpr
bool
value
=
true
;
};
template
<
class
TypeTag
>
struct
EnableGridFluxVariablesCache
<
TypeTag
,
TTag
::
StokesOneP
>
{
static
constexpr
bool
value
=
true
;
};
template
<
class
TypeTag
>
...
...
exercises/exercise-coupling-ff-pm/models/freeflowsubproblem.hh
View file @
4add82f1
...
...
@@ -70,7 +70,7 @@ template<class TypeTag>
struct
Problem
<
TypeTag
,
TTag
::
StokesNC
>
{
using
type
=
Dumux
::
FreeFlowSubProblem
<
TypeTag
>
;
};
template
<
class
TypeTag
>
struct
Enable
FV
GridGeometryCache
<
TypeTag
,
TTag
::
StokesNC
>
{
static
constexpr
bool
value
=
true
;
};
struct
EnableGridGeometryCache
<
TypeTag
,
TTag
::
StokesNC
>
{
static
constexpr
bool
value
=
true
;
};
template
<
class
TypeTag
>
struct
EnableGridFluxVariablesCache
<
TypeTag
,
TTag
::
StokesNC
>
{
static
constexpr
bool
value
=
true
;
};
template
<
class
TypeTag
>
...
...
exercises/exercise-coupling-ff-pm/turbulence/freeflowsubproblem.hh
View file @
4add82f1
...
...
@@ -69,7 +69,7 @@ template<class TypeTag>
struct
Problem
<
TypeTag
,
TTag
::
StokesZeroEq
>
{
using
type
=
Dumux
::
FreeFlowSubProblem
<
TypeTag
>
;
};
template
<
class
TypeTag
>
struct
Enable
FV
GridGeometryCache
<
TypeTag
,
TTag
::
StokesZeroEq
>
{
static
constexpr
bool
value
=
true
;
};
struct
EnableGridGeometryCache
<
TypeTag
,
TTag
::
StokesZeroEq
>
{
static
constexpr
bool
value
=
true
;
};
template
<
class
TypeTag
>
struct
EnableGridFluxVariablesCache
<
TypeTag
,
TTag
::
StokesZeroEq
>
{
static
constexpr
bool
value
=
true
;
};
template
<
class
TypeTag
>
...
...
exercises/exercise-mainfile/1pproblem.hh
View file @
4add82f1
...
...
@@ -106,7 +106,7 @@ struct EnableGridVolumeVariablesCache<TypeTag, TTag::OnePBase> { static constexp
template
<
class
TypeTag
>
struct
EnableGridFluxVariablesCache
<
TypeTag
,
TTag
::
OnePBase
>
{
static
constexpr
bool
value
=
false
;
};
template
<
class
TypeTag
>
struct
Enable
FV
GridGeometryCache
<
TypeTag
,
TTag
::
OnePBase
>
{
static
constexpr
bool
value
=
false
;
};
struct
EnableGridGeometryCache
<
TypeTag
,
TTag
::
OnePBase
>
{
static
constexpr
bool
value
=
false
;
};
}
// end namespace Properties
/*!
...
...
exercises/solution/exercise-biomineralization/biominproblem.hh
View file @
4add82f1
...
...
@@ -96,7 +96,7 @@ struct SpatialParams<TypeTag, TTag::ExerciseFourBioMin> {
};
template
<
class
TypeTag
>
struct
Enable
FV
GridGeometryCache
<
TypeTag
,
TTag
::
ExerciseFourBioMin
>
{
static
constexpr
bool
value
=
true
;
};
struct
EnableGridGeometryCache
<
TypeTag
,
TTag
::
ExerciseFourBioMin
>
{
static
constexpr
bool
value
=
true
;
};
template
<
class
TypeTag
>
struct
EnableGridVolumeVariablesCache
<
TypeTag
,
TTag
::
ExerciseFourBioMin
>
{
static
constexpr
bool
value
=
true
;
};
template
<
class
TypeTag
>
...
...
exercises/solution/exercise-coupling-ff-pm/interface/freeflowsubproblem.hh
View file @
4add82f1
...
...
@@ -77,7 +77,7 @@ template<class TypeTag>
struct
Problem
<
TypeTag
,
TTag
::
StokesOneP
>
{
using
type
=
Dumux
::
FreeFlowSubProblem
<
TypeTag
>
;
};
template
<
class
TypeTag
>
struct
Enable
FV
GridGeometryCache
<
TypeTag
,
TTag
::
StokesOneP
>
{
static
constexpr
bool
value
=
true
;
};
struct
EnableGridGeometryCache
<
TypeTag
,
TTag
::
StokesOneP
>
{
static
constexpr
bool
value
=
true
;
};
template
<
class
TypeTag
>
struct
EnableGridFluxVariablesCache
<
TypeTag
,
TTag
::
StokesOneP
>
{
static
constexpr
bool
value
=
true
;
};
template
<
class
TypeTag
>
...
...
exercises/solution/exercise-coupling-ff-pm/models/freeflowsubproblem.hh
View file @
4add82f1
...
...
@@ -70,7 +70,7 @@ template<class TypeTag>
struct
Problem
<
TypeTag
,
TTag
::
StokesNC
>
{
using
type
=
Dumux
::
FreeFlowSubProblem
<
TypeTag
>
;
};
template
<
class
TypeTag
>
struct
Enable
FV
GridGeometryCache
<
TypeTag
,
TTag
::
StokesNC
>
{
static
constexpr
bool
value
=
true
;
};
struct
EnableGridGeometryCache
<
TypeTag
,
TTag
::
StokesNC
>
{
static
constexpr
bool
value
=
true
;
};
template
<
class
TypeTag
>
struct
EnableGridFluxVariablesCache
<
TypeTag
,
TTag
::
StokesNC
>
{
static
constexpr
bool
value
=
true
;
};
template
<
class
TypeTag
>
...
...
exercises/solution/exercise-coupling-ff-pm/turbulence/freeflowsubproblem.hh
View file @
4add82f1
...
...
@@ -78,7 +78,7 @@ template<class TypeTag>
struct
Problem
<
TypeTag
,
TTag
::
StokesZeroEq
>
{
using
type
=
Dumux
::
FreeFlowSubProblem
<
TypeTag
>
;
};
template
<
class
TypeTag
>
struct
Enable
FV
GridGeometryCache
<
TypeTag
,
TTag
::
StokesZeroEq
>
{
static
constexpr
bool
value
=
true
;
};
struct
EnableGridGeometryCache
<
TypeTag
,
TTag
::
StokesZeroEq
>
{
static
constexpr
bool
value
=
true
;
};
template
<
class
TypeTag
>
struct
EnableGridFluxVariablesCache
<
TypeTag
,
TTag
::
StokesZeroEq
>
{
static
constexpr
bool
value
=
true
;
};
template
<
class
TypeTag
>
...
...
exercises/solution/exercise-mainfile/1pproblem.hh
View file @
4add82f1
...
...
@@ -106,7 +106,7 @@ struct EnableGridVolumeVariablesCache<TypeTag, TTag::OnePBase> { static constexp
template
<
class
TypeTag
>
struct
EnableGridFluxVariablesCache
<
TypeTag
,
TTag
::
OnePBase
>
{
static
constexpr
bool
value
=
false
;
};
template
<
class
TypeTag
>
struct
Enable
FV
GridGeometryCache
<
TypeTag
,
TTag
::
OnePBase
>
{
static
constexpr
bool
value
=
false
;
};
struct
EnableGridGeometryCache
<
TypeTag
,
TTag
::
OnePBase
>
{
static
constexpr
bool
value
=
false
;
};
}
// end namespace Properties
/*!
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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