EclGenericTracerModel: remove unused tracerResidual_ member

This commit is contained in:
Arne Morten Kvarving 2023-02-09 10:00:23 +01:00
parent 4148df3752
commit 9bbce08bfa
2 changed files with 0 additions and 4 deletions

View File

@ -219,9 +219,6 @@ doInit(bool rst, size_t numGridDof,
throw std::logic_error(fmt::format("Can not initialize tracer: {}", tracer.name));
}
// residual of tracers
tracerResidual_.resize(numGridDof);
// allocate matrix for storing the Jacobian of the tracer residual
tracerMatrix_ = std::make_unique<TracerMatrix>(numGridDof, numGridDof, TracerMatrix::random);

View File

@ -108,7 +108,6 @@ protected:
std::vector<int> tracerPhaseIdx_;
std::vector<Dune::BlockVector<Dune::FieldVector<Scalar, 1>>> tracerConcentration_;
std::unique_ptr<TracerMatrix> tracerMatrix_;
TracerVector tracerResidual_;
std::vector<int> cartToGlobal_;
std::vector<Dune::BlockVector<Dune::FieldVector<Scalar, 1>>> storageOfTimeIndex1_;