From c0d7a7d26766f81f4b1ce3963dc59f91a571fd63 Mon Sep 17 00:00:00 2001
From: David Seus <david.seus@ians.uni-stuttgart.de>
Date: Thu, 5 Sep 2019 18:24:14 +0200
Subject: [PATCH] switch order of phase calculation back

---
 LDDsimulation/domainPatch.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/LDDsimulation/domainPatch.py b/LDDsimulation/domainPatch.py
index 92d2aef..098089a 100644
--- a/LDDsimulation/domainPatch.py
+++ b/LDDsimulation/domainPatch.py
@@ -171,7 +171,7 @@ class DomainPatch(df.SubDomain):
         if self.isRichards:
             self.has_phases = ['wetting']
         else:
-            self.has_phases = ['nonwetting', 'wetting'] #['wetting', 'nonwetting']
+            self.has_phases = ['wetting', 'nonwetting']  #['nonwetting', 'wetting']
         # dictionary holding the dof indices corresponding to an interface of
         # given interface. see self._calc_dof_indices_of_interfaces()
         self._dof_indices_of_interface = dict()
-- 
GitLab