mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
use the checkConservativeness() method in all appropriate test problems
"appropriate" basically means "does not use constraints", as constraints do not care about the conservation quantities...
This commit is contained in:
parent
7af0060812
commit
fe341d88cf
@ -175,6 +175,7 @@ class EclProblem : public GET_PROP_TYPE(TypeTag, BaseProblem)
|
|||||||
enum { waterCompIdx = FluidSystem::waterCompIdx };
|
enum { waterCompIdx = FluidSystem::waterCompIdx };
|
||||||
|
|
||||||
typedef typename GET_PROP_TYPE(TypeTag, PrimaryVariables) PrimaryVariables;
|
typedef typename GET_PROP_TYPE(TypeTag, PrimaryVariables) PrimaryVariables;
|
||||||
|
typedef typename GET_PROP_TYPE(TypeTag, EqVector) EqVector;
|
||||||
typedef typename GET_PROP_TYPE(TypeTag, RateVector) RateVector;
|
typedef typename GET_PROP_TYPE(TypeTag, RateVector) RateVector;
|
||||||
typedef typename GET_PROP_TYPE(TypeTag, BoundaryRateVector) BoundaryRateVector;
|
typedef typename GET_PROP_TYPE(TypeTag, BoundaryRateVector) BoundaryRateVector;
|
||||||
typedef typename GET_PROP_TYPE(TypeTag, MaterialLaw) MaterialLaw;
|
typedef typename GET_PROP_TYPE(TypeTag, MaterialLaw) MaterialLaw;
|
||||||
@ -250,8 +251,21 @@ public:
|
|||||||
/*!
|
/*!
|
||||||
* \brief Called by the simulator before each time integration.
|
* \brief Called by the simulator before each time integration.
|
||||||
*/
|
*/
|
||||||
void beginTimeStep()
|
void endTimeStep()
|
||||||
{ }
|
{
|
||||||
|
#ifndef NDEBUG
|
||||||
|
this->model().checkConservativeness();
|
||||||
|
|
||||||
|
// Calculate storage terms
|
||||||
|
EqVector storage;
|
||||||
|
this->model().globalStorage(storage);
|
||||||
|
|
||||||
|
// Write mass balance information for rank 0
|
||||||
|
if (this->gridView().comm().rank() == 0) {
|
||||||
|
std::cout << "Storage: " << storage << std::endl << std::flush;
|
||||||
|
}
|
||||||
|
#endif // NDEBUG
|
||||||
|
}
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* \brief Called by the simulator before each Newton-Raphson iteration.
|
* \brief Called by the simulator before each Newton-Raphson iteration.
|
||||||
|
Loading…
Reference in New Issue
Block a user