problems: fix some rename-fallout for the postTimeStep() to endTimeStep() drive

This commit is contained in:
Andreas Lauser 2014-07-17 16:54:05 +02:00
parent 899f25a40a
commit 99779a52e8
6 changed files with 23 additions and 11 deletions

View File

@ -336,9 +336,9 @@ public:
}
/*!
* \copydoc VcfvProblem::postTimeStep
* \copydoc VcfvProblem::endTimeStep
*/
void postTimeStep()
void endTimeStep()
{
// Calculate storage terms
PrimaryVariables storageL, storageG;

View File

@ -259,9 +259,9 @@ public:
}
/*!
* \copydoc VcfvProblem::postTimeStep
* \copydoc VcfvProblem::endTimeStep
*/
void postTimeStep()
void endTimeStep()
{
// update the history of the hysteresis law
ElementContext elemCtx(this->simulator());

View File

@ -276,7 +276,7 @@ public:
/*!
* \brief Called directly after the time integration.
*/
void postTimeStep()
void endTimeStep()
{
// Calculate storage terms
EqVector storage;

View File

@ -347,9 +347,21 @@ public:
}
/*!
* \copydoc VcfvProblem::postTimeStep
* \copydoc FvBaseProblem::beginTimeStep
*/
void postTimeStep()
void beginTimeStep()
{ }
/*!
* \copydoc FvBaseProblem::beginIteration
*/
void beginIteration()
{ }
/*!
* \copydoc FvBaseProblem::endTimeStep
*/
void endTimeStep()
{
// Calculate storage terms
PrimaryVariables storage;

View File

@ -231,9 +231,9 @@ public:
}
/*!
* \copydoc VcfvProblem::postTimeStep
* \copydoc VcfvProblem::endTimeStep
*/
void postTimeStep()
void endTimeStep()
{
// Calculate storage terms of the individual phases
for (int phaseIdx = 0; phaseIdx < numPhases; ++phaseIdx) {

View File

@ -228,9 +228,9 @@ public:
}
/*!
* \copydoc VcfvProblem::postTimeStep
* \copydoc VcfvProblem::endTimeStep
*/
void postTimeStep()
void endTimeStep()
{
// Calculate storage terms
PrimaryVariables storage;