mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -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
|
// Calculate storage terms
|
||||||
PrimaryVariables storageL, storageG;
|
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
|
// update the history of the hysteresis law
|
||||||
ElementContext elemCtx(this->simulator());
|
ElementContext elemCtx(this->simulator());
|
||||||
|
@ -276,7 +276,7 @@ public:
|
|||||||
/*!
|
/*!
|
||||||
* \brief Called directly after the time integration.
|
* \brief Called directly after the time integration.
|
||||||
*/
|
*/
|
||||||
void postTimeStep()
|
void endTimeStep()
|
||||||
{
|
{
|
||||||
// Calculate storage terms
|
// Calculate storage terms
|
||||||
EqVector storage;
|
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
|
// Calculate storage terms
|
||||||
PrimaryVariables storage;
|
PrimaryVariables storage;
|
||||||
|
@ -231,9 +231,9 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* \copydoc VcfvProblem::postTimeStep
|
* \copydoc VcfvProblem::endTimeStep
|
||||||
*/
|
*/
|
||||||
void postTimeStep()
|
void endTimeStep()
|
||||||
{
|
{
|
||||||
// Calculate storage terms of the individual phases
|
// Calculate storage terms of the individual phases
|
||||||
for (int phaseIdx = 0; phaseIdx < numPhases; ++phaseIdx) {
|
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
|
// Calculate storage terms
|
||||||
PrimaryVariables storage;
|
PrimaryVariables storage;
|
||||||
|
Loading…
Reference in New Issue
Block a user