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

[2pnc][test] Replace initialPhasePresence(scv) by initialPhasePresenceAtPos()

parent e0a33a35
No related branches found
No related tags found
2 merge requests!617[WIP] Next,!491Fix/#352 inital phase presence on next
...@@ -254,14 +254,14 @@ public: ...@@ -254,14 +254,14 @@ public:
PrimaryVariables initialAtPos(const GlobalPosition &globalPos) const PrimaryVariables initialAtPos(const GlobalPosition &globalPos) const
{ return initial_(globalPos); } { return initial_(globalPos); }
/*!
* \brief Return the initial phase state inside a sub control volume.
*
* \param scv The sub control volume
*/
int initialPhasePresence(const SubControlVolume& scv) const /*!
{ return Indices::bothPhases; } * \brief Evaluate the initial phase state at a given position
*
* \param globalPos The global position
*/
int initialPhasePresenceAtPos(const GlobalPosition &globalPos)
{ return Indices::bothPhases; }
/*! /*!
* \brief Adds additional VTK output data to the VTKWriter. Function is called by the output module on every write. * \brief Adds additional VTK output data to the VTKWriter. Function is called by the output module on every write.
......
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