cleaning up StandardWellsDense

removing more unused stuff.
This commit is contained in:
Kai Bao
2017-07-26 14:17:16 +02:00
parent 63c418c02f
commit 8ddd197dcf
3 changed files with 3 additions and 98 deletions

View File

@@ -64,9 +64,11 @@ namespace Opm
using typename WellInterface<TypeTag>::BVector;
using typename WellInterface<TypeTag>::Eval;
static const int numWellEq = GET_PROP_VALUE(TypeTag, EnablePolymer)? 3:numEq; // //numEq; //number of wellEq is only for 3 for polymer
static const int numWellEq = GET_PROP_VALUE(TypeTag, EnablePolymer)? numEq-1 : numEq; // //numEq; //number of wellEq is only numEq for polymer
static const int contiSolventEqIdx = BlackoilIndices::contiSolventEqIdx;
static const int contiPolymerEqIdx = BlackoilIndices::contiPolymerEqIdx;
static const int solventSaturationIdx = BlackoilIndices::solventSaturationIdx;
static const int polymerConcentrationIdx = BlackoilIndices::polymerConcentrationIdx;
typedef DenseAd::Evaluation<double, /*size=*/numEq + numWellEq> EvalWell;