From d99a0ff7a1ee4afca281a50fc70eef9835eb2371 Mon Sep 17 00:00:00 2001 From: Liu Ming Date: Wed, 15 Oct 2014 09:47:43 +0800 Subject: [PATCH] use PLMIXPAR instead of TLMIXPAR. --- opm/polymer/PolymerProperties.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opm/polymer/PolymerProperties.hpp b/opm/polymer/PolymerProperties.hpp index 9cf4d20de..08b920777 100644 --- a/opm/polymer/PolymerProperties.hpp +++ b/opm/polymer/PolymerProperties.hpp @@ -121,13 +121,13 @@ namespace Opm { // We assume NTMISC=1 const auto& plymaxTable = eclipseState->getPlymaxTables()[0]; - const auto tlmixparRecord = deck->getKeyword("TLMIXPAR")->getRecord(0); + const auto plmixparRecord = deck->getKeyword("PLMIXPAR")->getRecord(0); // We also assume that each table has exactly one row... assert(plymaxTable.numRows() == 1); c_max_ = plymaxTable.getPolymerConcentrationColumn()[0]; - mix_param_ = tlmixparRecord->getItem("TL_VISCOSITY_PARAMETER")->getSIDouble(0); + mix_param_ = plmixparRecord->getItem("TODD_LONGSTAFF")->getSIDouble(0); // We assume NTSFUN=1 const auto& plyrockTable = eclipseState->getPlyrockTables()[0];