From c55864b1bec5de3d184711ffe0e6f34ba79f63a1 Mon Sep 17 00:00:00 2001 From: Tor Harald Sandve Date: Tue, 20 Apr 2021 09:24:26 +0200 Subject: [PATCH] extrapolate saltvd table --- ebos/equil/initstateequil.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ebos/equil/initstateequil.hh b/ebos/equil/initstateequil.hh index c867a8742..ff937c1e3 100644 --- a/ebos/equil/initstateequil.hh +++ b/ebos/equil/initstateequil.hh @@ -1762,7 +1762,7 @@ private: const auto& cells = reg.cells(i); for (const auto& cell : cells) { const double depth = cellCenterDepth_[cell]; - this->saltConcentration_[cell] = saltVdTable_[i].eval(depth); + this->saltConcentration_[cell] = saltVdTable_[i].eval(depth, /*extrapolate=*/true); } } }