27#ifndef DUMUX_DISCRETIZATION_STAGGERD_HH
28#define DUMUX_DISCRETIZATION_STAGGERD_HH
47#include <dune/istl/multitypeblockvector.hh>
48#include <dune/istl/multitypeblockmatrix.hh>
64template<
class TypeTag>
76template<
class TypeTag>
80template<
class TypeTag>
94template<
class TypeTag>
104template<
class TypeTag>
117template<
class TypeTag>
121template<
class TypeTag>
125template<
class TypeTag>
128 using type = Dune::FieldVector<GetPropType<TypeTag, Properties::Scalar>,
133template<
class TypeTag>
136 using type = Dune::FieldVector<GetPropType<TypeTag, Properties::Scalar>,
141template<
class TypeTag>
148template<
class TypeTag>
150{
using type = Dune::BlockVector<GetPropType<TypeTag, Properties::CellCenterPrimaryVariables>>; };
153template<
class TypeTag>
155{
using type = Dune::BlockVector<GetPropType<TypeTag, Properties::FacePrimaryVariables>>; };
158template<
class TypeTag>
165 using type = Dune::MultiTypeBlockVector<FaceSolutionVector, CellCenterSolutionVector>;
169template<
class TypeTag>
194 using RowFace =
typename Dune::MultiTypeBlockVector<MatrixBlockFaceToFace, MatrixBlockFaceToCC>;
195 using RowCellCenter =
typename Dune::MultiTypeBlockVector<MatrixBlockCCToFace, MatrixBlockCCToCC>;
Calculates the element-wise residual for the staggered FV scheme.
The available discretization methods in Dumux.
The global face variables class for staggered models.
Face variables cache class for staggered models.
Declares properties required for finite-volume models models.
Classes related to flux variables caching.
constexpr auto getPropValue()
get the value data member of a property
Definition propertysystem.hh:153
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:48
Type tag for numeric models.
Definition grid.hh:36
Calculates the element-wise residual for the staggered FV scheme.
Definition staggeredlocalresidual.hh:40
Class to specify the type of a boundary.
Definition common/boundarytypes.hh:38
Definition common/pdesolver.hh:37
The type of the base class of the local residual (specific to a discretization scheme).
Definition common/properties.hh:78
Type of the global jacobian matrix.
Definition common/properties.hh:80
Vector containing all primary variable vector of the grid.
Definition common/properties.hh:82
Stores the boundary types of a single degree of freedom.
Definition common/properties.hh:84
Stores the boundary types on an element.
Definition common/properties.hh:110
The global vector of flux variable containers.
Definition common/properties.hh:130
The grid variables object managing variable data on the grid (volvars/fluxvars cache).
Definition common/properties.hh:134
The solution vector type for cell-centered dofs.
Definition common/properties.hh:225
The solution vector type for face dofs.
Definition common/properties.hh:227
Global vector containing face-related data.
Definition common/properties.hh:229
The primary variables container type for cell-centered dofs.
Definition common/properties.hh:231
The primary variables container type for face dofs.
Definition common/properties.hh:233
A vector containing the solution for a face (similar to ElementSolution).
Definition common/properties.hh:245
Switch on/off caching of face variables.
Definition common/properties.hh:247
Boundary types gathered on an element.
Definition discretization/cellcentered/elementboundarytypes.hh:38
Definition staggered.hh:60
std::tuple< FiniteVolumeModel > InheritsFrom
Definition staggered.hh:60
StaggeredGridFaceVariables< Problem, FaceVariables, enableCache > type
Definition staggered.hh:72
static constexpr bool value
Definition staggered.hh:77
StaggeredGridFluxVariablesCache< Problem, FluxVariablesCache, FluxVariablesCacheFiller, enableCache, upwindSchemeOrder > type
Definition staggered.hh:90
Dumux::StaggeredFaceSolution< FaceSolutionVector > type
Definition staggered.hh:100
StaggeredGridVariables< GG, GVV, GFVC, GFV > type
Definition staggered.hh:113
CCElementBoundaryTypes type
Definition staggered.hh:118
StaggeredLocalResidual< TypeTag > type
Definition staggered.hh:122
Dune::FieldVector< GetPropType< TypeTag, Properties::Scalar >, getPropValue< TypeTag, Properties::NumEqCellCenter >()> type
Definition staggered.hh:128
Dune::FieldVector< GetPropType< TypeTag, Properties::Scalar >, getPropValue< TypeTag, Properties::NumEqFace >()> type
Definition staggered.hh:136
Dumux::BoundaryTypes< GetPropType< TypeTag, Properties::ModelTraits >::numEq()> type
Definition staggered.hh:142
Dune::BlockVector< GetPropType< TypeTag, Properties::CellCenterPrimaryVariables > > type
Definition staggered.hh:150
Dune::BlockVector< GetPropType< TypeTag, Properties::FacePrimaryVariables > > type
Definition staggered.hh:155
Dune::MultiTypeBlockVector< FaceSolutionVector, CellCenterSolutionVector > type
Definition staggered.hh:165
typename Dune::BCRSMatrix< MatrixLittleBlockCCToFace > MatrixBlockCCToFace
Definition staggered.hh:188
typename Dune::MultiTypeBlockVector< MatrixBlockFaceToFace, MatrixBlockFaceToCC > RowFace
Definition staggered.hh:194
typename Dune::BCRSMatrix< MatrixLittleBlockFaceToFace > MatrixBlockFaceToFace
Definition staggered.hh:190
typename Dune::FieldMatrix< Scalar, numEqCellCenter, numEqFace > MatrixLittleBlockCCToFace
Definition staggered.hh:181
typename Dune::MultiTypeBlockMatrix< RowFace, RowCellCenter > type
Definition staggered.hh:198
typename Dune::BCRSMatrix< MatrixLittleBlockCCToCC > MatrixBlockCCToCC
Definition staggered.hh:187
typename Dune::FieldMatrix< Scalar, numEqFace, numEqCellCenter > MatrixLittleBlockFaceToCC
Definition staggered.hh:184
typename Dune::FieldMatrix< Scalar, numEqFace, numEqFace > MatrixLittleBlockFaceToFace
Definition staggered.hh:183
typename Dune::MultiTypeBlockVector< MatrixBlockCCToFace, MatrixBlockCCToCC > RowCellCenter
Definition staggered.hh:195
typename Dune::BCRSMatrix< MatrixLittleBlockFaceToCC > MatrixBlockFaceToCC
Definition staggered.hh:191
typename Dune::FieldMatrix< Scalar, numEqCellCenter, numEqCellCenter > MatrixLittleBlockCCToCC
Definition staggered.hh:180
The global face variables class for staggered models.
Definition facesolution.hh:40
Face variables cache class for staggered models.
Definition gridfacevariables.hh:59
Flux variables cache class for staggered models.
Definition staggered/gridfluxvariablescache.hh:63
Class storing data associated to scvs and scvfs.
Definition discretization/staggered/gridvariables.hh:195
Declares all properties used in Dumux.
Boundary types gathered on an element.
Base class for the finite volume geometry vector for staggered models This builds up the sub control ...
Flux variables cache class for staggered models.
Sub control volumes for cell-centered discretization schemes.
Class for a sub control volume face in the staggered method, i.e a part of the boundary of a sub cont...
Class storing data associated to scvs and scvfs.