Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dumux
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dumux-repositories
dumux
Commits
772e2f89
Commit
772e2f89
authored
7 years ago
by
Kilian Weishaupt
Browse files
Options
Downloads
Patches
Plain Diff
[porousmediumflow][problem] Minor beautifications
* replace typedefs by aliases
parent
ef1bc715
No related branches found
No related tags found
2 merge requests
!617
[WIP] Next
,
!491
Fix/#352 inital phase presence on next
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dumux/porousmediumflow/implicit/problem.hh
+11
-11
11 additions, 11 deletions
dumux/porousmediumflow/implicit/problem.hh
with
11 additions
and
11 deletions
dumux/porousmediumflow/implicit/problem.hh
+
11
−
11
View file @
772e2f89
...
@@ -41,25 +41,25 @@ NEW_PROP_TAG(ProblemEnableGravity); //!< Returns whether gravity is considered i
...
@@ -41,25 +41,25 @@ NEW_PROP_TAG(ProblemEnableGravity); //!< Returns whether gravity is considered i
template
<
class
TypeTag
>
template
<
class
TypeTag
>
class
ImplicitPorousMediaProblem
:
public
ImplicitProblem
<
TypeTag
>
class
ImplicitPorousMediaProblem
:
public
ImplicitProblem
<
TypeTag
>
{
{
typedef
ImplicitProblem
<
TypeTag
>
ParentType
;
using
ParentType
=
ImplicitProblem
<
TypeTag
>
;
typedef
typename
GET_PROP_TYPE
(
TypeTag
,
Problem
)
Implementation
;
using
Implementation
=
typename
GET_PROP_TYPE
(
TypeTag
,
Problem
);
typedef
typename
GET_PROP_TYPE
(
TypeTag
,
TimeManager
)
TimeManager
;
using
TimeManager
=
typename
GET_PROP_TYPE
(
TypeTag
,
TimeManager
);
typedef
typename
GET_PROP_TYPE
(
TypeTag
,
FVElementGeometry
)
FVElementGeometry
;
using
FVElementGeometry
=
typename
GET_PROP_TYPE
(
TypeTag
,
FVElementGeometry
);
typedef
typename
GET_PROP_TYPE
(
TypeTag
,
SpatialParams
)
SpatialParams
;
using
SpatialParams
=
typename
GET_PROP_TYPE
(
TypeTag
,
SpatialParams
);
typedef
typename
GET_PROP_TYPE
(
TypeTag
,
GridView
)
GridView
;
using
GridView
=
typename
GET_PROP_TYPE
(
TypeTag
,
GridView
);
enum
{
enum
{
dim
=
GridView
::
dimension
,
dim
=
GridView
::
dimension
,
dimWorld
=
GridView
::
dimensionworld
dimWorld
=
GridView
::
dimensionworld
};
};
typedef
typename
GridView
::
template
Codim
<
0
>
::
Entity
Element
;
using
Element
=
typename
GridView
::
template
Codim
<
0
>
::
Entity
;
typedef
typename
GridView
::
Traits
::
template
Codim
<
dim
>
::
Entity
Vertex
;
using
Vertex
=
typename
GridView
::
Traits
::
template
Codim
<
dim
>
::
Entity
;
typedef
typename
GridView
::
ctype
CoordScalar
;
using
CoordScalar
=
typename
GridView
::
ctype
;
typedef
Dune
::
FieldVector
<
CoordScalar
,
dimWorld
>
GlobalPosition
;
using
GlobalPosition
=
Dune
::
FieldVector
<
CoordScalar
,
dimWorld
>
;
typedef
typename
GET_PROP_TYPE
(
TypeTag
,
Scalar
)
Scalar
;
using
Scalar
=
typename
GET_PROP_TYPE
(
TypeTag
,
Scalar
);
enum
{
isBox
=
GET_PROP_VALUE
(
TypeTag
,
ImplicitIsBox
)
};
enum
{
isBox
=
GET_PROP_VALUE
(
TypeTag
,
ImplicitIsBox
)
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment