Skip to content
Snippets Groups Projects
Commit 0d4ea5a9 authored by Timo Koch's avatar Timo Koch
Browse files

Merge branch 'feature/replace-typedef-in-spatialparams' into 'next'

[spatialparams] replace typedef by using (again)

See merge request !678
parents 73b757f9 b0a28bc1
No related branches found
No related tags found
2 merge requests!678[spatialparams] replace typedef by using (again),!617[WIP] Next
...@@ -42,19 +42,19 @@ namespace Dumux ...@@ -42,19 +42,19 @@ namespace Dumux
template<class TypeTag> template<class TypeTag>
class SequentialFVSpatialParams: public SequentialFVSpatialParamsOneP<TypeTag> class SequentialFVSpatialParams: public SequentialFVSpatialParamsOneP<TypeTag>
{ {
typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar; using Scalar = typename GET_PROP_TYPE(TypeTag, Scalar);
typedef typename GET_PROP_TYPE(TypeTag, GridView) GridView; using GridView = typename GET_PROP_TYPE(TypeTag, GridView);
typedef typename GET_PROP_TYPE(TypeTag, SpatialParams) Implementation; using Implementation = typename GET_PROP_TYPE(TypeTag, SpatialParams);
enum enum
{ {
dimWorld = GridView::dimensionworld dimWorld = GridView::dimensionworld
}; };
typedef typename GridView::template Codim<0>::Entity Element; using Element = typename GridView::template Codim<0>::Entity;
typedef Dune::FieldVector<Scalar, dimWorld> GlobalPosition; using GlobalPosition = Dune::FieldVector<Scalar, dimWorld>;
/// @cond false /// @cond false
typedef typename GET_PROP_TYPE(TypeTag, MaterialLaw)::Params MaterialLawParams; using MaterialLawParams = typename GET_PROP_TYPE(TypeTag, MaterialLaw)::Params;
/// @endcond /// @endcond
public: public:
......
...@@ -51,9 +51,9 @@ NEW_PROP_TAG(SpatialParams); ...@@ -51,9 +51,9 @@ NEW_PROP_TAG(SpatialParams);
template<class TypeTag> template<class TypeTag>
class SequentialFVSpatialParamsOneP class SequentialFVSpatialParamsOneP
{ {
typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar; using Scalar = typename GET_PROP_TYPE(TypeTag, Scalar);
typedef typename GET_PROP_TYPE(TypeTag, GridView) GridView; using GridView = typename GET_PROP_TYPE(TypeTag, GridView);
typedef typename GET_PROP_TYPE(TypeTag, SpatialParams) Implementation; using Implementation = typename GET_PROP_TYPE(TypeTag, SpatialParams);
enum enum
{ {
...@@ -61,9 +61,9 @@ class SequentialFVSpatialParamsOneP ...@@ -61,9 +61,9 @@ class SequentialFVSpatialParamsOneP
dimWorld = GridView::dimensionworld dimWorld = GridView::dimensionworld
}; };
typedef typename GridView::template Codim<0>::Entity Element; using Element = typename GridView::template Codim<0>::Entity;
typedef Dune::FieldVector<Scalar, dimWorld> GlobalPosition; using GlobalPosition = Dune::FieldVector<Scalar, dimWorld>;
typedef Dune::FieldMatrix<Scalar, dimWorld, dimWorld> DimWorldMatrix; using DimWorldMatrix = Dune::FieldMatrix<Scalar, dimWorld, dimWorld>;
public: public:
SequentialFVSpatialParamsOneP(const GridView &gridView) SequentialFVSpatialParamsOneP(const GridView &gridView)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment