From 31ecb416be16f5602f0d0fb57492e1b7cb9d36c9 Mon Sep 17 00:00:00 2001 From: Vegard Kippe Date: Thu, 22 Jun 2023 16:53:08 +0200 Subject: [PATCH] Adding default value to the InitialStateComputer constructor to avoid specifying the number of pressure points when using outside simulator (i.e., in testing..) --- 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 c64eea9f5..99b354b06 100644 --- a/ebos/equil/initstateequil.hh +++ b/ebos/equil/initstateequil.hh @@ -686,7 +686,7 @@ public: const GridView& gridView, const CartesianIndexMapper& cartMapper, const double grav, - const int num_pressure_points, + const int num_pressure_points = 2000, const bool applySwatInit = true); using Vec = std::vector;