Skip to content
Snippets Groups Projects
Commit 73bad849 authored by Kilian Weishaupt's avatar Kilian Weishaupt
Browse files

[problem] Remove initialPhasePresence() from ImplicitProblem

* is a porousmediumflow entitiy
parent 432332e8
No related branches found
No related tags found
Loading
......@@ -458,33 +458,6 @@ public:
"an initial() or an initialAtPos() method.");
}
/*!
* \brief Evaluate the initial phase state inside a control volume.
*
* \param vertex The vertex
* \param vIdxGlobal The global index of the vertex
* \param globalPos The global position
*/
int initialPhasePresence(const Vertex &vertex,
int &vIdxGlobal,
const GlobalPosition &globalPos) const
{
// forward to generic interface
return asImp_().initialPhasePresenceAtPos(globalPos);
}
/*!
* \brief Evaluate the initial value for a control volume.
*
* \param globalPos The global position
*/
int initialPhasePresenceAtPos(const GlobalPosition &globalPos) const
{
//! As a default, i.e. if the user's problem does not overload any initialPhasePresence method
//! return 0 (the default phase state is depending on the model context)
return 0;
}
/*!
* \brief Return how much the domain is extruded at a given sub-control volume.
*
......
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