Skip to content
Snippets Groups Projects
Commit 521cce09 authored by Timo Koch's avatar Timo Koch
Browse files

[test][3pwateroil][cleanup] Remove unused variables

parent 5152b2ff
No related branches found
No related tags found
Loading
Pipeline #15181 passed
Pipeline: dumux-lecture

#15186

    Pipeline: dumux

    #15185

      Pipeline: dumux

      #15184

        +2
        ...@@ -88,8 +88,6 @@ public: ...@@ -88,8 +88,6 @@ public:
        { {
        maxDepth_ = 400.0; // [m] maxDepth_ = 400.0; // [m]
        FluidSystem::init(); FluidSystem::init();
        totalMassProducedOil_ = 0.0;
        totalMassProducedWater_ = 0.0;
        } }
        /*! /*!
        ...@@ -210,8 +208,6 @@ public: ...@@ -210,8 +208,6 @@ public:
        values[contiWEqIdx] = qW; values[contiWEqIdx] = qW;
        values[contiNEqIdx] = qN; values[contiNEqIdx] = qN;
        values[energyEqIdx] = qE; values[energyEqIdx] = qE;
        massProducedOil_ = qN;
        massProducedWater_ = qW;
        } }
        return values; return values;
        } }
        ...@@ -252,11 +248,6 @@ private: ...@@ -252,11 +248,6 @@ private:
        static constexpr Scalar eps_ = 1e-6; static constexpr Scalar eps_ = 1e-6;
        Scalar pIn_; Scalar pIn_;
        Scalar pOut_; Scalar pOut_;
        Scalar totalMassProducedOil_;
        Scalar totalMassProducedWater_;
        mutable Scalar massProducedOil_;
        mutable Scalar massProducedWater_;
        std::string name_; std::string name_;
        }; };
        ......
        0% Loading or .
        You are about to add 0 people to the discussion. Proceed with caution.
        Finish editing this message first!
        Please register or to comment