Skip to content
Snippets Groups Projects
Commit d2fda6cc authored by Martin Nolte's avatar Martin Nolte
Browse files

docu

parent bfa63f57
No related branches found
No related tags found
No related merge requests found
......@@ -274,11 +274,12 @@ public:
/** \brief check with the problem setup whether or not a cell is allowed to be refined
*
* \param[in] en Entity
* \param[in] it Intersection
* \param[in] time Current model time
* \param[in] x Point w.r.t. intersection \a it
* \return true if the cell can be refined
*/
inline bool allowsRefinement( const IntersectionType& en,
inline bool allowsRefinement( const IntersectionType& it,
const double time,
const FaceDomainType& x ) const
{
......
......@@ -569,7 +569,7 @@ namespace Dune {
JacobianRangeType& gDiffLeft,
JacobianRangeType& gDiffRight ) const
{
if( ! model_.allowsRefinement( it, time, faceQuadInner.point( quadPoint) ) )
if( ! model_.allowsRefinement( it, time, faceQuadInner.point( quadPoint ) ) )
return 0.;
double ldt = BaseType :: numericalFlux( it, time, faceQuadInner, faceQuadOuter, quadPoint,
......
......@@ -604,7 +604,7 @@ namespace Dune {
JacobianRangeType& gDiffLeft,
JacobianRangeType& gDiffRight ) const
{
if( ! model_.allowsRefinement( it, time, faceQuadInner.point( quadPoint) ) )
if( ! model_.allowsRefinement( it, time, faceQuadInner.point( quadPoint ) ) )
return 0.;
// call numerical flux of base type
......
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