12#ifndef DUMUX_MODEL_PROPERTIES_HH
13#define DUMUX_MODEL_PROPERTIES_HH
15#include <dune/common/fvector.hh>
22namespace Dune {
class ParameterTree; }
33template<
class TypeTag>
34struct Scalar<TypeTag, TTag::ModelProperties> {
using type = double; };
37template<
class TypeTag>
38struct PrimaryVariables<TypeTag, TTag::ModelProperties> {
using type = Dune::FieldVector<GetPropType<TypeTag, Properties::Scalar>,
42template<
class TypeTag>
43struct ModelDefaultParameters<TypeTag, TTag::ModelProperties>
45 static void defaultParams(Dune::ParameterTree& tree,
const std::string& group =
"") { }
49template<
class TypeTag>
53template<
class TypeTag>
Traits class to set options used by the local residual when when evaluating the balance equations.
Definition: common/balanceequationopts.hh:27
Adds output fields to a given output module.
Definition: defaultiofields.hh:25
Traits class to set options used by the local residual when when evaluating the balance equations.
Defines all properties used in Dumux.
Adds output fields to a given output module, this is the default if a model doesn't implement this fu...
typename GetProp< TypeTag, Property >::type GetPropType
get the type alias defined in the property
Definition: propertysystem.hh:296
Definition: common/pdesolver.hh:24
static void defaultParams(Dune::ParameterTree &tree, const std::string &group="")
Definition: common/properties/model.hh:45
Dune::FieldVector< GetPropType< TypeTag, Properties::Scalar >, GetPropType< TypeTag, Properties::ModelTraits >::numEq()> type
Definition: common/properties/model.hh:39
double type
Definition: common/properties/model.hh:34
Definition: common/properties/model.hh:29