3.1-git
DUNE for Multi-{Phase, Component, Scale, Physics, ...} flow and transport in porous media
linearprofile/problem_bulk.hh
Go to the documentation of this file.
1// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2// vi: set et ts=4 sw=4 sts=4:
3/*****************************************************************************
4 * See the file COPYING for full copying permissions. *
5 * *
6 * This program is free software: you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation, either version 3 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program. If not, see <http://www.gnu.org/licenses/>. *
18 *****************************************************************************/
24#ifndef DUMUX_TEST_TPFAFACETCOUPLING_ONEP_BULKPROBLEM_HH
25#define DUMUX_TEST_TPFAFACETCOUPLING_ONEP_BULKPROBLEM_HH
26
27#include <dune/alugrid/grid.hh>
28
31
35
38
39#include "spatialparams.hh"
40
41// default for the bulk grid type
42#ifndef BULKGRIDTYPE
43#define BULKGRIDTYPE Dune::ALUGrid<2, 2, Dune::cube, Dune::nonconforming>
44#endif
45
46namespace Dumux {
47// forward declarations
48template<class TypeTag> class OnePBulkProblem;
49
50namespace Properties {
51
52// create the type tag nodes
53namespace TTag {
54struct OnePBulk { using InheritsFrom = std::tuple<OneP>; };
55struct OnePBulkTpfa { using InheritsFrom = std::tuple<CCTpfaFacetCouplingModel, OnePBulk>; };
56struct OnePBulkMpfa { using InheritsFrom = std::tuple<CCMpfaFacetCouplingModel, OnePBulk>; };
57} // end namespace TTag
58
59// Set the grid type
60template<class TypeTag>
61struct Grid<TypeTag, TTag::OnePBulk> { using type = BULKGRIDTYPE; };
62// Set the problem type
63template<class TypeTag>
64struct Problem<TypeTag, TTag::OnePBulk> { using type = OnePBulkProblem<TypeTag>; };
65// set the spatial params
66template<class TypeTag>
67struct SpatialParams<TypeTag, TTag::OnePBulk>
68{
71};
72
73// the fluid system
74template<class TypeTag>
75struct FluidSystem<TypeTag, TTag::OnePBulk>
76{
77private:
79public:
81};
82
83} // end namespace Properties
84
90template<class TypeTag>
91class OnePBulkProblem : public PorousMediumFlowProblem<TypeTag>
92{
93 using ParentType = PorousMediumFlowProblem<TypeTag>;
94
96 using PrimaryVariables = typename GridVariables::PrimaryVariables;
97 using Scalar = typename GridVariables::Scalar;
98
99 using GridGeometry = typename GridVariables::GridGeometry;
100 using FVElementGeometry = typename GridGeometry::LocalView;
101 using SubControlVolume = typename GridGeometry::SubControlVolume;
102 using SubControlVolumeFace = typename GridGeometry::SubControlVolumeFace;
103 using GridView = typename GridGeometry::GridView;
104 using Element = typename GridView::template Codim<0>::Entity;
105 using GlobalPosition = typename Element::Geometry::GlobalCoordinate;
106
110
111public:
112 OnePBulkProblem(std::shared_ptr<const GridGeometry> gridGeometry,
113 std::shared_ptr<typename ParentType::SpatialParams> spatialParams,
114 std::shared_ptr<CouplingManager> couplingManager,
115 const std::string& paramGroup = "")
117 , couplingManagerPtr_(couplingManager)
118 {
119 problemName_ = getParam<std::string>("Vtk.OutputName") + "_" +
120 getParamFromGroup<std::string>(this->paramGroup(), "Problem.Name");
121 }
122
124 const std::string& name() const
125 { return problemName_; }
126
128 BoundaryTypes boundaryTypesAtPos(const GlobalPosition& globalPos) const
129 {
130 BoundaryTypes values;
131 values.setAllNeumann();
132 if (globalPos[0] < 1e-6 || globalPos[0] > this->gridGeometry().bBoxMax()[0] - 1e-6)
133 values.setAllDirichlet();
134 return values;
135 }
136
138 BoundaryTypes interiorBoundaryTypes(const Element& element, const SubControlVolumeFace& scvf) const
139 {
140 BoundaryTypes values;
141 values.setAllNeumann();
142 return values;
143 }
144
146 NumEqVector sourceAtPos(const GlobalPosition& globalPos) const
147 { return NumEqVector(0.0); }
148
150 PrimaryVariables dirichletAtPos(const GlobalPosition& globalPos) const
151 { return initialAtPos(globalPos); }
152
154 NumEqVector neumannAtPos(const GlobalPosition& globalPos) const
155 { return NumEqVector(0.0); }
156
158 PrimaryVariables initialAtPos(const GlobalPosition& globalPos) const
159 { return PrimaryVariables(1.0 + globalPos[0]/this->gridGeometry().bBoxMax()[0]); }
160
162 Scalar temperature() const
163 { return 283.15; /*10°*/ }
164
166 const CouplingManager& couplingManager() const
167 { return *couplingManagerPtr_; }
168
169private:
170 std::shared_ptr<CouplingManager> couplingManagerPtr_;
171 std::string problemName_;
172};
173
174} // end namespace Dumux
175
176#endif
Setting constant fluid properties via the input file.
A liquid phase consisting of a single component.
make the local view function available whenever we use the grid geometry
Definition: adapt.hh:29
typename Properties::Detail::GetPropImpl< TypeTag, Property >::type::type GetPropType
get the type alias defined in the property (equivalent to old macro GET_PROP_TYPE(....
Definition: propertysystem.hh:149
Class to specify the type of a boundary.
Definition: common/boundarytypes.hh:38
Base class for all finite-volume problems.
Definition: common/fvproblem.hh:50
const std::string & paramGroup() const
The parameter group in which to retrieve runtime parameters.
Definition: common/fvproblem.hh:592
const GridGeometry & gridGeometry() const
The finite volume grid geometry.
Definition: common/fvproblem.hh:588
Property to specify the type of scalar values.
Definition: common/properties.hh:53
The DUNE grid type.
Definition: common/properties.hh:57
Property to specify the type of a problem which has to be solved.
Definition: common/properties.hh:69
The type of the spatial parameters object.
Definition: common/properties.hh:221
The type of the fluid system to use.
Definition: common/properties.hh:223
A liquid phase consisting of a single component.
Definition: 1pliquid.hh:46
Definition: multidomain/couplingmanager.hh:46
Base class for all fully implicit porous media problems.
Definition: dumux/porousmediumflow/problem.hh:39
SpatialParams & spatialParams()
Returns the spatial parameters object.
Definition: dumux/porousmediumflow/problem.hh:146
The spatial parameters class for the test problem using the 1p cc model.
Definition: multidomain/boundary/stokesdarcy/1p2c_1p2c/spatialparams.hh:41
Test problem for the incompressible one-phase model with coupling across the bulk grid facets.
Definition: problem_1p_bulk.hh:90
PrimaryVariables dirichletAtPos(const GlobalPosition &globalPos) const
Evaluates the Dirichlet boundary condition for a given position.
Definition: linearprofile/problem_bulk.hh:150
NumEqVector sourceAtPos(const GlobalPosition &globalPos) const
Evaluates the source term at a given position.
Definition: linearprofile/problem_bulk.hh:146
const std::string & name() const
The problem name.
Definition: linearprofile/problem_bulk.hh:124
BoundaryTypes boundaryTypesAtPos(const GlobalPosition &globalPos) const
Specifies the type of boundary condition at a given position.
Definition: linearprofile/problem_bulk.hh:128
BoundaryTypes interiorBoundaryTypes(const Element &element, const SubControlVolumeFace &scvf) const
Specifies the type of interior boundary condition at a given position.
Definition: linearprofile/problem_bulk.hh:138
NumEqVector neumannAtPos(const GlobalPosition &globalPos) const
Evaluates the Neumann boundary condition for a boundary segment.
Definition: linearprofile/problem_bulk.hh:154
OnePBulkProblem(std::shared_ptr< const GridGeometry > gridGeometry, std::shared_ptr< typename ParentType::SpatialParams > spatialParams, std::shared_ptr< CouplingManager > couplingManager, const std::string &paramGroup="")
Definition: linearprofile/problem_bulk.hh:112
Scalar temperature() const
Returns the temperature in in the domain.
Definition: linearprofile/problem_bulk.hh:162
const CouplingManager & couplingManager() const
Returns reference to the coupling manager.
Definition: analytical/problem_bulk.hh:207
PrimaryVariables initialAtPos(const GlobalPosition &globalPos) const
Evaluates the initial conditions.
Definition: analytical/problem_bulk.hh:199
Definition: analytical/problem_bulk.hh:49
std::tuple< OneP > InheritsFrom
Definition: analytical/problem_bulk.hh:49
Definition: analytical/problem_bulk.hh:50
std::tuple< CCTpfaFacetCouplingModel, OnePBulk > InheritsFrom
Definition: analytical/problem_bulk.hh:50
Dune::ALUGrid< 2, 2, Dune::cube, Dune::nonconforming > type
Definition: analytical/problem_bulk.hh:56
Definition: gravity/problem_bulk.hh:55
std::tuple< CCMpfaFacetCouplingModel, OnePBulk > InheritsFrom
Definition: gravity/problem_bulk.hh:55
Properties (and default properties) for all models using the box scheme together with coupling across...
Properties (and default properties) for all models using cell-centered finite volume scheme with MPFA...
Properties (and default properties) for all models using cell-centered finite volume scheme with TPFA...
A single-phase, isothermal flow model using the fully implicit scheme.
Base class for all porous media problems.
Definition of the spatial parameters for the MaxwellStefan problem.
#define BULKGRIDTYPE
Definition: linearprofile/problem_bulk.hh:43