Skip to content
Snippets Groups Projects
Commit a6413ab6 authored by Markus Wolff's avatar Markus Wolff
Browse files

added a new property/parameter for choice of different transmissibility

criteria in implementations of the MPFA l-method



git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@8679 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent 94a28900
No related branches found
No related tags found
No related merge requests found
...@@ -108,6 +108,7 @@ NEW_PROP_TAG( GridTypeIndices );//!< The grid type indices to decide which grid ...@@ -108,6 +108,7 @@ NEW_PROP_TAG( GridTypeIndices );//!< The grid type indices to decide which grid
NEW_PROP_TAG( GridImplementation ); //!< Gives kind of grid implementation in form of a GridType NEW_PROP_TAG( GridImplementation ); //!< Gives kind of grid implementation in form of a GridType
NEW_PROP_TAG( EnableComplexLStencil ); //!< Enable use of four different L-shapes instead of 2 (3-d) NEW_PROP_TAG( EnableComplexLStencil ); //!< Enable use of four different L-shapes instead of 2 (3-d)
NEW_PROP_TAG( MPFATransmissibilityCriterionThreshold ); //!< Threshold for transmissibility choice NEW_PROP_TAG( MPFATransmissibilityCriterionThreshold ); //!< Threshold for transmissibility choice
NEW_PROP_TAG( MPFATransmissibilityCriterion ); //!< Choose transmissibility criterion
} }
} }
...@@ -134,6 +135,9 @@ SET_BOOL_PROP(MPFAProperties, EnableComplexLStencil, true); ...@@ -134,6 +135,9 @@ SET_BOOL_PROP(MPFAProperties, EnableComplexLStencil, true);
//! Allow use of all available L-shapes //! Allow use of all available L-shapes
SET_SCALAR_PROP(MPFAProperties, MPFATransmissibilityCriterionThreshold, 1e-8); SET_SCALAR_PROP(MPFAProperties, MPFATransmissibilityCriterionThreshold, 1e-8);
//! Set standard criterion
SET_INT_PROP(MPFAProperties, MPFATransmissibilityCriterion, 0);
} }
}// end of Dune namespace }// end of Dune namespace
#endif #endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment