19#ifndef DUMUX_PRESSURE_PROPERTIES_HH
20#define DUMUX_PRESSURE_PROPERTIES_HH
23#include <dune/istl/bcrsmatrix.hh>
24#include <dune/istl/bvector.hh>
76template<
class TypeTag>
81 using MB = Dune::FieldMatrix<Scalar, 1, 1>;
84 using type = Dune::BCRSMatrix<MB>;
86template<
class TypeTag>
93 using type = Dune::BlockVector<Dune::FieldVector<Scalar, 1> >;
#define GET_PROP(TypeTag, PropTagName)
Definition: propertysystemmacros.hh:281
#define GET_PROP_TYPE(TypeTag, PropTagName)
Definition: propertysystemmacros.hh:283
#define NEW_TYPE_TAG(...)
Definition: propertysystemmacros.hh:130
Dumux sequential linear solver backends.
Default implementation of velocity class.
#define NEW_PROP_TAG(PTagName)
Define a property tag.
Definition: propertysystemmacros.hh:159
make the local view function available whenever we use the grid geometry
Definition: adapt.hh:29
Property tag PressureRHSVector
Type of the right hand side vector given to the linear solver.
Definition: sequential/pressureproperties.hh:60
Property tag VisitFacesOnlyOnce
Type of solution vector or pressure system.
Definition: sequential/pressureproperties.hh:62
Property tag PressureSolutionVector
Definition: sequential/pressureproperties.hh:61
SET_TYPE_PROP(FVPressureOneP, Velocity, FVVelocity1P< TypeTag >)
Set velocity reconstruction implementation standard cell centered finite volume schemes as default.
Property tag Velocity
The type velocity reconstruction.
Definition: porousmediumflow/sequential/properties.hh:67
Type tag FVPressureOneP INHERITS_FROM(PressureOneP))
The type tag for the one-phase problems using a standard finite volume model.
Property tag PressureCoefficientMatrix
Gives maximum number of intersections of an element and neighboring elements.
Definition: porousmediumflow/sequential/properties.hh:74
Property tag SolutionTypes
Definition: porousmediumflow/sequential/properties.hh:58
SET_BOOL_PROP(FVPressureOneP, VisitFacesOnlyOnce, true)
Allow assembling algorithm for the pressure matrix to assemble only from one side of a cell-cell inte...
TODO: Remove this property as soon as the decoupled models are integrated.
Definition: common/properties.hh:95
Sequential ILU(0)-preconditioned BiCGSTAB solver.
Definition: seqsolverbackend.hh:580
Default implementation of a velocity class.
Definition: velocitydefault.hh:42
Dune::BCRSMatrix< MB > type
Definition: sequential/pressureproperties.hh:84
Dune::BlockVector< Dune::FieldVector< Scalar, 1 > > type
Definition: sequential/pressureproperties.hh:93
Base file for properties related to sequential models.