From bd1993472f9c4a12167b48dfa7a56f666876f6d3 Mon Sep 17 00:00:00 2001
From: Markus Wolff <markus.wolff@twt-gmbh.de>
Date: Tue, 3 Dec 2013 14:13:06 +0000
Subject: [PATCH] Fixed small bug in the analytic solution that appeared in the
 case of a linear fractional flow function and residual saturations different
 than 0

   - reviewed by Martin



git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@12126 2fb0f335-1f38-0410-981e-8018bf24f1b0
---
 test/decoupled/2p/buckleyleverettanalyticsolution.hh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/decoupled/2p/buckleyleverettanalyticsolution.hh b/test/decoupled/2p/buckleyleverettanalyticsolution.hh
index ac8ae6130f..005fcca891 100644
--- a/test/decoupled/2p/buckleyleverettanalyticsolution.hh
+++ b/test/decoupled/2p/buckleyleverettanalyticsolution.hh
@@ -134,7 +134,7 @@ private:
         	std::pair<Scalar, Scalar> entry;
         	entry.first = 1 - snr_;
 
-        	entry.second = vTot_  / porosity;
+        	entry.second = vTot_  / (porosity * (1 - swr_ - snr_));
 
         	frontParams_.push_back(entry);
         }
-- 
GitLab