mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-11-22 09:16:27 -06:00
problems: fix some rename-fallout for the postTimeStep() to endTimeStep() drive
This commit is contained in:
parent
899f25a40a
commit
99779a52e8
@ -336,9 +336,9 @@ public:
|
||||
}
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvProblem::postTimeStep
|
||||
* \copydoc VcfvProblem::endTimeStep
|
||||
*/
|
||||
void postTimeStep()
|
||||
void endTimeStep()
|
||||
{
|
||||
// Calculate storage terms
|
||||
PrimaryVariables storageL, storageG;
|
||||
|
@ -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());
|
||||
|
@ -276,7 +276,7 @@ public:
|
||||
/*!
|
||||
* \brief Called directly after the time integration.
|
||||
*/
|
||||
void postTimeStep()
|
||||
void endTimeStep()
|
||||
{
|
||||
// Calculate storage terms
|
||||
EqVector storage;
|
||||
|
@ -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;
|
||||
|
@ -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) {
|
||||
|
@ -228,9 +228,9 @@ public:
|
||||
}
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvProblem::postTimeStep
|
||||
* \copydoc VcfvProblem::endTimeStep
|
||||
*/
|
||||
void postTimeStep()
|
||||
void endTimeStep()
|
||||
{
|
||||
// Calculate storage terms
|
||||
PrimaryVariables storage;
|
||||
|
Loading…
Reference in New Issue
Block a user