From 521cce097e61caa7035c00dc9e3031e553f5bcb2 Mon Sep 17 00:00:00 2001 From: Timo Koch <timokoch@math.uio.no> Date: Fri, 22 Apr 2022 08:18:25 +0000 Subject: [PATCH] [test][3pwateroil][cleanup] Remove unused variables --- test/porousmediumflow/3pwateroil/problem.hh | 9 --------- 1 file changed, 9 deletions(-) diff --git a/test/porousmediumflow/3pwateroil/problem.hh b/test/porousmediumflow/3pwateroil/problem.hh index de8f2e5c5d..e0c85c9a3b 100644 --- a/test/porousmediumflow/3pwateroil/problem.hh +++ b/test/porousmediumflow/3pwateroil/problem.hh @@ -88,8 +88,6 @@ public: { maxDepth_ = 400.0; // [m] FluidSystem::init(); - totalMassProducedOil_ = 0.0; - totalMassProducedWater_ = 0.0; } /*! @@ -210,8 +208,6 @@ public: values[contiWEqIdx] = qW; values[contiNEqIdx] = qN; values[energyEqIdx] = qE; - massProducedOil_ = qN; - massProducedWater_ = qW; } return values; } @@ -252,11 +248,6 @@ private: static constexpr Scalar eps_ = 1e-6; Scalar pIn_; Scalar pOut_; - Scalar totalMassProducedOil_; - Scalar totalMassProducedWater_; - - mutable Scalar massProducedOil_; - mutable Scalar massProducedWater_; std::string name_; }; -- GitLab