From 13cc9ba845aeb0f71c2a631ec7a40211c45e99b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20L=C3=BCbke?= Date: Wed, 18 Jan 2023 14:50:55 +0100 Subject: [PATCH] fix: set porosity to 1 (hardcoded for now) --- src/PhreeqcWrapper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PhreeqcWrapper.cpp b/src/PhreeqcWrapper.cpp index dda90605d..3b86d42c6 100644 --- a/src/PhreeqcWrapper.cpp +++ b/src/PhreeqcWrapper.cpp @@ -52,7 +52,7 @@ void poet::PhreeqcWrapper::SetupAndLoadDB( // Set initial porosity std::vector por; - por.resize(this->iWPSize, 0.05); + por.resize(this->iWPSize, 1); this->SetPorosity(por); // Set initial saturation