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-course
Commits
285fcc15
Commit
285fcc15
authored
Apr 06, 2020
by
Maziar Veyskarami
Committed by
Ned Coltman
Apr 06, 2020
Browse files
[ex-coupling-solution][interface][propertiesheader] move properties to property header
parent
c1ce50bc
Changes
4
Hide whitespace changes
Inline
Side-by-side
exercises/solution/exercise-coupling-ff-pm/interface/freeflowsubproblem.hh
View file @
285fcc15
...
...
@@ -23,66 +23,10 @@
#ifndef DUMUX_STOKES_SUBPROBLEM_HH
#define DUMUX_STOKES_SUBPROBLEM_HH
#include <dune/grid/yaspgrid.hh>
#if EXNUMBER >= 3
#include <dumux/io/grid/gridmanager_sub.hh>
#endif
#include <dumux/material/fluidsystems/1pliquid.hh>
#include <dumux/material/components/simpleh2o.hh>
#include <dumux/freeflow/navierstokes/problem.hh>
#include <dumux/discretization/staggered/freeflow/properties.hh>
#include <dumux/freeflow/navierstokes/model.hh>
namespace
Dumux
{
template
<
class
TypeTag
>
class
FreeFlowSubProblem
;
namespace
Properties
{
// Create new type tags
namespace
TTag
{
struct
StokesOneP
{
using
InheritsFrom
=
std
::
tuple
<
NavierStokes
,
StaggeredFreeFlowModel
>
;
};
}
// end namespace TTag
// the fluid system
template
<
class
TypeTag
>
struct
FluidSystem
<
TypeTag
,
TTag
::
StokesOneP
>
{
using
Scalar
=
GetPropType
<
TypeTag
,
Properties
::
Scalar
>
;
using
type
=
FluidSystems
::
OnePLiquid
<
Scalar
,
Dumux
::
Components
::
SimpleH2O
<
Scalar
>
>
;
};
// Set the grid type
template
<
class
TypeTag
>
struct
Grid
<
TypeTag
,
TTag
::
StokesOneP
>
{
static
constexpr
auto
dim
=
2
;
using
Scalar
=
GetPropType
<
TypeTag
,
Properties
::
Scalar
>
;
using
TensorGrid
=
Dune
::
YaspGrid
<
2
,
Dune
::
TensorProductCoordinates
<
Scalar
,
dim
>
>
;
#include <dumux/common/properties.hh>
#if EXNUMBER < 3 // use "normal" grid
using
type
=
TensorGrid
;
#else // use dune-subgrid
using
HostGrid
=
TensorGrid
;
using
type
=
Dune
::
SubGrid
<
dim
,
HostGrid
>
;
#endif
};
// Set the problem property
template
<
class
TypeTag
>
struct
Problem
<
TypeTag
,
TTag
::
StokesOneP
>
{
using
type
=
Dumux
::
FreeFlowSubProblem
<
TypeTag
>
;
};
template
<
class
TypeTag
>
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
>
struct
EnableGridVolumeVariablesCache
<
TypeTag
,
TTag
::
StokesOneP
>
{
static
constexpr
bool
value
=
true
;
};
}
namespace
Dumux
{
/*!
* \brief The free flow sub problem
...
...
@@ -362,6 +306,7 @@ private:
mutable
std
::
vector
<
Scalar
>
analyticalVelocityX_
;
};
}
//end namespace
}
//end namespace Dumux
#endif // DUMUX_STOKES_SUBPROBLEM_HH
exercises/solution/exercise-coupling-ff-pm/interface/main.cc
View file @
285fcc15
...
...
@@ -47,28 +47,7 @@
#include <dumux/multidomain/boundary/stokesdarcy/couplingmanager.hh>
#include "porousmediumsubproblem.hh"
#include "freeflowsubproblem.hh"
namespace
Dumux
{
namespace
Properties
{
template
<
class
TypeTag
>
struct
CouplingManager
<
TypeTag
,
TTag
::
StokesOneP
>
{
using
Traits
=
StaggeredMultiDomainTraits
<
TypeTag
,
TypeTag
,
Properties
::
TTag
::
DarcyOneP
>
;
using
type
=
Dumux
::
StokesDarcyCouplingManager
<
Traits
>
;
};
template
<
class
TypeTag
>
struct
CouplingManager
<
TypeTag
,
TTag
::
DarcyOneP
>
{
using
Traits
=
StaggeredMultiDomainTraits
<
Properties
::
TTag
::
StokesOneP
,
Properties
::
TTag
::
StokesOneP
,
TypeTag
>
;
using
type
=
Dumux
::
StokesDarcyCouplingManager
<
Traits
>
;
};
}
// end namespace Properties
}
// end namespace Dumux
#include "properties.hh"
int
main
(
int
argc
,
char
**
argv
)
try
{
...
...
exercises/solution/exercise-coupling-ff-pm/interface/porousmediumsubproblem.hh
View file @
285fcc15
...
...
@@ -24,67 +24,10 @@
#ifndef DUMUX_DARCY_SUBPROBLEM_HH
#define DUMUX_DARCY_SUBPROBLEM_HH
#include <dune/grid/yaspgrid.hh>
#if EXNUMBER >= 3
#include <dumux/io/grid/gridmanager_sub.hh>
#endif
#include <dumux/discretization/cctpfa.hh>
#include <dumux/porousmediumflow/1p/model.hh>
#include <dumux/porousmediumflow/problem.hh>
#include <dumux/common/properties.hh>
#include "../1pspatialparams.hh"
#include <dumux/material/components/simpleh2o.hh>
#include <dumux/material/fluidsystems/1pliquid.hh>
namespace
Dumux
{
template
<
class
TypeTag
>
class
PorousMediumSubProblem
;
namespace
Properties
{
// Create new type tags
namespace
TTag
{
struct
DarcyOneP
{
using
InheritsFrom
=
std
::
tuple
<
OneP
,
CCTpfaModel
>
;
};
}
// end namespace TTag
// Set the problem property
template
<
class
TypeTag
>
struct
Problem
<
TypeTag
,
TTag
::
DarcyOneP
>
{
using
type
=
Dumux
::
PorousMediumSubProblem
<
TypeTag
>
;
};
// the fluid system
template
<
class
TypeTag
>
struct
FluidSystem
<
TypeTag
,
TTag
::
DarcyOneP
>
{
using
Scalar
=
GetPropType
<
TypeTag
,
Properties
::
Scalar
>
;
using
type
=
FluidSystems
::
OnePLiquid
<
Scalar
,
Dumux
::
Components
::
SimpleH2O
<
Scalar
>
>
;
};
// Set the grid type
template
<
class
TypeTag
>
struct
Grid
<
TypeTag
,
TTag
::
DarcyOneP
>
{
static
constexpr
auto
dim
=
2
;
using
Scalar
=
GetPropType
<
TypeTag
,
Properties
::
Scalar
>
;
using
TensorGrid
=
Dune
::
YaspGrid
<
2
,
Dune
::
TensorProductCoordinates
<
Scalar
,
dim
>
>
;
#if EXNUMBER < 3 // use "normal" grid
using
type
=
TensorGrid
;
#else // use dune-subgrid
using
HostGrid
=
TensorGrid
;
using
type
=
Dune
::
SubGrid
<
dim
,
HostGrid
>
;
#endif
};
template
<
class
TypeTag
>
struct
SpatialParams
<
TypeTag
,
TTag
::
DarcyOneP
>
{
using
type
=
OnePSpatialParams
<
GetPropType
<
TypeTag
,
GridGeometry
>
,
GetPropType
<
TypeTag
,
Scalar
>>
;
};
}
// end namespace Properties
namespace
Dumux
{
/*!
* \brief The porous medium flow sub problem
...
...
@@ -264,6 +207,7 @@ private:
Scalar
eps_
;
std
::
shared_ptr
<
CouplingManager
>
couplingManager_
;
};
}
//end namespace
}
//end namespace Dumux
#endif //DUMUX_DARCY_SUBPROBLEM_HH
exercises/solution/exercise-coupling-ff-pm/interface/properties.hh
0 → 100644
View file @
285fcc15
// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
// vi: set et ts=4 sw=4 sts=4:
/*****************************************************************************
* See the file COPYING for full copying permissions. *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
*****************************************************************************/
/*!
* \file
*
* \brief The coupled exercise properties file or the interface case.
*/
#ifndef DUMUX_EXERCISE_COUPLED_INTERFACE_PROPERTIES_HH
#define DUMUX_EXERCISE_COUPLED_INTERFACE_PROPERTIES_HH
// Both domains
#include <dune/grid/yaspgrid.hh>
#if EXNUMBER >= 3
#include <dumux/io/grid/gridmanager_sub.hh>
#endif
#include <dumux/material/components/simpleh2o.hh>
#include <dumux/material/fluidsystems/1pliquid.hh>
// Porous medium flow domain
#include <dumux/discretization/cctpfa.hh>
#include <dumux/porousmediumflow/1p/model.hh>
#include "../1pspatialparams.hh"
#include "porousmediumsubproblem.hh"
// Free-flow domain
#include <dumux/discretization/staggered/freeflow/properties.hh>
#include <dumux/freeflow/navierstokes/model.hh>
#include "freeflowsubproblem.hh"
namespace
Dumux
::
Properties
{
// Create new type tags
namespace
TTag
{
struct
DarcyOneP
{
using
InheritsFrom
=
std
::
tuple
<
OneP
,
CCTpfaModel
>
;
};
struct
StokesOneP
{
using
InheritsFrom
=
std
::
tuple
<
NavierStokes
,
StaggeredFreeFlowModel
>
;
};
}
// end namespace TTag
// Set the coupling manager
template
<
class
TypeTag
>
struct
CouplingManager
<
TypeTag
,
TTag
::
StokesOneP
>
{
using
Traits
=
StaggeredMultiDomainTraits
<
TypeTag
,
TypeTag
,
Properties
::
TTag
::
DarcyOneP
>
;
using
type
=
Dumux
::
StokesDarcyCouplingManager
<
Traits
>
;
};
template
<
class
TypeTag
>
struct
CouplingManager
<
TypeTag
,
TTag
::
DarcyOneP
>
{
using
Traits
=
StaggeredMultiDomainTraits
<
Properties
::
TTag
::
StokesOneP
,
Properties
::
TTag
::
StokesOneP
,
TypeTag
>
;
using
type
=
Dumux
::
StokesDarcyCouplingManager
<
Traits
>
;
};
// Set the problem property
template
<
class
TypeTag
>
struct
Problem
<
TypeTag
,
TTag
::
DarcyOneP
>
{
using
type
=
Dumux
::
PorousMediumSubProblem
<
TypeTag
>
;
};
template
<
class
TypeTag
>
struct
Problem
<
TypeTag
,
TTag
::
StokesOneP
>
{
using
type
=
Dumux
::
FreeFlowSubProblem
<
TypeTag
>
;
};
// Set the grid type
template
<
class
TypeTag
>
struct
Grid
<
TypeTag
,
TTag
::
DarcyOneP
>
{
static
constexpr
auto
dim
=
2
;
using
Scalar
=
GetPropType
<
TypeTag
,
Properties
::
Scalar
>
;
using
TensorGrid
=
Dune
::
YaspGrid
<
2
,
Dune
::
TensorProductCoordinates
<
Scalar
,
dim
>
>
;
#if EXNUMBER < 3 // use "normal" grid
using
type
=
TensorGrid
;
#else // use dune-subgrid
using
HostGrid
=
TensorGrid
;
using
type
=
Dune
::
SubGrid
<
dim
,
HostGrid
>
;
#endif
};
template
<
class
TypeTag
>
struct
Grid
<
TypeTag
,
TTag
::
StokesOneP
>
{
static
constexpr
auto
dim
=
2
;
using
Scalar
=
GetPropType
<
TypeTag
,
Properties
::
Scalar
>
;
using
TensorGrid
=
Dune
::
YaspGrid
<
2
,
Dune
::
TensorProductCoordinates
<
Scalar
,
dim
>
>
;
#if EXNUMBER < 3 // use "normal" grid
using
type
=
TensorGrid
;
#else // use dune-subgrid
using
HostGrid
=
TensorGrid
;
using
type
=
Dune
::
SubGrid
<
dim
,
HostGrid
>
;
#endif
};
// the fluid system
template
<
class
TypeTag
>
struct
FluidSystem
<
TypeTag
,
TTag
::
DarcyOneP
>
{
using
Scalar
=
GetPropType
<
TypeTag
,
Properties
::
Scalar
>
;
using
type
=
FluidSystems
::
OnePLiquid
<
Scalar
,
Dumux
::
Components
::
SimpleH2O
<
Scalar
>
>
;
};
template
<
class
TypeTag
>
struct
FluidSystem
<
TypeTag
,
TTag
::
StokesOneP
>
{
using
Scalar
=
GetPropType
<
TypeTag
,
Properties
::
Scalar
>
;
using
type
=
FluidSystems
::
OnePLiquid
<
Scalar
,
Dumux
::
Components
::
SimpleH2O
<
Scalar
>
>
;
};
template
<
class
TypeTag
>
struct
SpatialParams
<
TypeTag
,
TTag
::
DarcyOneP
>
{
using
type
=
OnePSpatialParams
<
GetPropType
<
TypeTag
,
GridGeometry
>
,
GetPropType
<
TypeTag
,
Scalar
>>
;
};
template
<
class
TypeTag
>
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
>
struct
EnableGridVolumeVariablesCache
<
TypeTag
,
TTag
::
StokesOneP
>
{
static
constexpr
bool
value
=
true
;
};
}
// end namespace Dumux::Properties
#endif // DUMUX_EXERCISE_COUPLED_INTERFACE_PROPERTIES_HH
Write
Preview
Markdown
is supported
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