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
359fc74d
Commit
359fc74d
authored
May 03, 2018
by
Dennis Gläser
Browse files
[disc][scv/scvf] add comment to global position alias
parent
9adbe088
Changes
7
Hide whitespace changes
Inline
Side-by-side
dumux/discretization/box/subcontrolvolume.hh
View file @
359fc74d
...
...
@@ -95,8 +95,8 @@ class BoxSubControlVolume
enum
{
dim
=
Geometry
::
mydimension
};
public:
//! export the type used for global coordinates
using
GlobalPosition
=
typename
T
::
GlobalPosition
;
//! state the traits public and thus export all types
using
Traits
=
T
;
...
...
dumux/discretization/box/subcontrolvolumeface.hh
View file @
359fc74d
...
...
@@ -99,12 +99,13 @@ class BoxSubControlVolumeFace
using
BoundaryFlag
=
typename
T
::
BoundaryFlag
;
public:
//! export the type used for global coordinates
using
GlobalPosition
=
typename
T
::
GlobalPosition
;
//! state the traits public and thus export all types
using
Traits
=
T
;
//! The default constructor
BoxSubControlVolumeFace
()
=
default
;
using
GlobalPosition
=
typename
T
::
GlobalPosition
;
//! Constructor for inner scvfs
template
<
class
GeometryHelper
,
class
Element
>
...
...
dumux/discretization/cellcentered/mpfa/subcontrolvolumeface.hh
View file @
359fc74d
...
...
@@ -98,6 +98,7 @@ class CCMpfaSubControlVolumeFace
using
Geometry
=
typename
T
::
Geometry
;
public:
//! export the type used for global coordinates
using
GlobalPosition
=
typename
T
::
GlobalPosition
;
//! state the traits public and thus export all types
using
Traits
=
T
;
...
...
dumux/discretization/cellcentered/subcontrolvolume.hh
View file @
359fc74d
...
...
@@ -66,8 +66,8 @@ class CCSubControlVolume
using
Scalar
=
typename
T
::
Scalar
;
public:
//! export the type used for global coordinates
using
GlobalPosition
=
typename
T
::
GlobalPosition
;
//! state the traits public and thus export all types
using
Traits
=
T
;
...
...
dumux/discretization/cellcentered/tpfa/subcontrolvolumeface.hh
View file @
359fc74d
...
...
@@ -97,8 +97,8 @@ class CCTpfaSubControlVolumeFace
using
BoundaryFlag
=
typename
T
::
BoundaryFlag
;
public:
//! export the type used for global coordinates
using
GlobalPosition
=
typename
T
::
GlobalPosition
;
//! state the traits public and thus export all types
using
Traits
=
T
;
...
...
dumux/discretization/subcontrolvolumebase.hh
View file @
359fc74d
...
...
@@ -42,8 +42,8 @@ class SubControlVolumeBase
using
Scalar
=
typename
ScvGeometryTraits
::
Scalar
;
public:
//! export the type used for global coordinates
using
GlobalPosition
=
typename
ScvGeometryTraits
::
GlobalPosition
;
//! state the traits public and thus export all types
using
Traits
=
ScvGeometryTraits
;
...
...
dumux/discretization/subcontrolvolumefacebase.hh
View file @
359fc74d
...
...
@@ -44,10 +44,9 @@ class SubControlVolumeFaceBase
using
GridIndexType
=
typename
ScvfGeometryTraits
::
GridIndexType
;
using
Scalar
=
typename
ScvfGeometryTraits
::
Scalar
;
public:
//! export the type used for global coordinates
using
GlobalPosition
=
typename
ScvfGeometryTraits
::
GlobalPosition
;
//! state the traits public and thus export all types
using
Traits
=
ScvfGeometryTraits
;
...
...
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