26#ifndef DUMUX_TEST_TPFAFACETCOUPLING_TRACER_ONEP_BULKPROBLEM_HH
27#define DUMUX_TEST_TPFAFACETCOUPLING_TRACER_ONEP_BULKPROBLEM_HH
29#include <dune/alugrid/grid.hh>
58template<
class TypeTag>
59struct Grid<TypeTag,
TTag::OnePBulk> {
using type = Dune::ALUGrid<2, 2, Dune::simplex, Dune::conforming>; };
61template<
class TypeTag>
64template<
class TypeTag>
72template<
class TypeTag>
88template<
class TypeTag>
94 using PrimaryVariables =
typename GridVariables::PrimaryVariables;
95 using Scalar =
typename GridVariables::Scalar;
97 using GridGeometry =
typename GridVariables::GridGeometry;
98 using FVElementGeometry =
typename GridGeometry::LocalView;
99 using SubControlVolume =
typename GridGeometry::SubControlVolume;
100 using SubControlVolumeFace =
typename GridGeometry::SubControlVolumeFace;
101 using GridView =
typename GridGeometry::GridView;
102 using Element =
typename GridView::template Codim<0>::Entity;
103 using GlobalPosition =
typename Element::Geometry::GlobalCoordinate;
112 std::shared_ptr<typename ParentType::SpatialParams>
spatialParams,
124 const std::string&
name()
const
125 {
return problemName_; }
130 BoundaryTypes values;
131 values.setAllNeumann();
132 if (globalPos[0] < 1e-6 || globalPos[0] > this->
gridGeometry().bBoxMax()[0] - 1e-6)
133 values.setAllDirichlet();
140 BoundaryTypes values;
141 values.setAllNeumann();
147 {
return NumEqVector(0.0); }
153 if (globalPos[0] < 1e-6)
154 values[Indices::pressureIdx] += overPressure_;
160 {
return NumEqVector(0.0); }
164 {
return PrimaryVariables(1.0e5); }
172 {
return *couplingManagerPtr_; }
175 std::shared_ptr<CouplingManager> couplingManagerPtr_;
176 Scalar overPressure_;
177 std::string problemName_;
A much simpler (and thus potentially less buggy) version of pure water.
A liquid phase consisting of a single component.
T getParamFromGroup(Args &&... args)
A free function to get a parameter from the parameter tree singleton with a model group.
Definition parameters.hh:438
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
Definition common/properties.hh:47
Type tag for numeric models.
Definition grid.hh:35
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
SpatialParams & spatialParams()
Returns the spatial parameters object.
Definition dumux/porousmediumflow/problem.hh:146
PorousMediumFlowProblem(std::shared_ptr< const GridGeometry > gridGeometry, std::shared_ptr< SpatialParams > spatialParams, const std::string ¶mGroup="")
Constructor, passing the spatial parameters.
Definition dumux/porousmediumflow/problem.hh:67
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 problem_1p_bulk.hh:150
NumEqVector sourceAtPos(const GlobalPosition &globalPos) const
Evaluates the source term at a given position.
Definition problem_1p_bulk.hh:146
const std::string & name() const
The problem name.
Definition problem_1p_bulk.hh:124
BoundaryTypes boundaryTypesAtPos(const GlobalPosition &globalPos) const
Specifies the type of boundary condition at a given position.
Definition problem_1p_bulk.hh:128
BoundaryTypes interiorBoundaryTypes(const Element &element, const SubControlVolumeFace &scvf) const
Specifies the type of interior boundary condition at a given position.
Definition problem_1p_bulk.hh:138
NumEqVector neumannAtPos(const GlobalPosition &globalPos) const
Evaluates the Neumann boundary condition for a boundary segment.
Definition problem_1p_bulk.hh:159
OnePBulkProblem(std::shared_ptr< const GridGeometry > gridGeometry, std::shared_ptr< typename ParentType::SpatialParams > spatialParams, std::shared_ptr< CouplingManager > couplingManager, const std::string ¶mGroup="")
Definition problem_1p_bulk.hh:111
Scalar temperature() const
Returns the temperature in in the domain.
Definition problem_1p_bulk.hh:167
const CouplingManager & couplingManager() const
Returns reference to the coupling manager.
Definition analytical/problem_bulk.hh:207
OnePBulkProblem(std::shared_ptr< const GridGeometry > gridGeometry, std::shared_ptr< typename ParentType::SpatialParams > spatialParams, std::shared_ptr< CouplingManager > couplingManagerPtr, const std::string ¶mGroup="Bulk")
Definition analytical/problem_bulk.hh:107
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
Definition analytical/problem_bulk.hh:51
std::tuple< BoxFacetCouplingModel, OnePBulk > InheritsFrom
Definition analytical/problem_bulk.hh:51
Dune::ALUGrid< 2, 2, Dune::cube, Dune::nonconforming > type
Definition analytical/problem_bulk.hh:56
OnePBulkProblem< TypeTag > type
Definition analytical/problem_bulk.hh:59
OnePSpatialParams< GetPropType< TypeTag, Properties::GridGeometry >, GetPropType< TypeTag, Properties::Scalar > > type
Definition analytical/problem_bulk.hh:64
FluidSystems::OnePLiquid< Scalar, Components::Constant< 1, Scalar > > type
Definition analytical/problem_bulk.hh:75
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.
The spatial parameters of the single-phase problem within the tracer facet coupling test.