From 540eca6955d484fa8fbc80c3e4af8b6bf7950904 Mon Sep 17 00:00:00 2001 From: JamesEMcclure Date: Wed, 28 Aug 2019 09:15:46 -0400 Subject: [PATCH] revert eff perm --- models/ColorModel.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/models/ColorModel.cpp b/models/ColorModel.cpp index 54ff263b..d651e9c8 100644 --- a/models/ColorModel.cpp +++ b/models/ColorModel.cpp @@ -810,8 +810,8 @@ void ScaLBL_ColorModel::Run(){ double kAeff_connected = h*h*muA*flow_rate_A_connected/(force_mag); double kBeff_connected = h*h*muB*flow_rate_B_connected/(force_mag); - double kAeff = h*h*muA*(flow_rate_A_total)/(force_mag); - double kBeff = h*h*muB*(flow_rate_B_total)/(force_mag); + double kAeff = h*h*muA*(flow_rate_A)/(rhoA*force_mag); + double kBeff = h*h*muB*(flow_rate_B)/(rhoB*force_mag); double viscous_pressure_drop = (rhoA*volA + rhoB*volB)*force_mag; double Mobility = muA/muB;