From cdbbdd828e4f5f309ad2e34533811ef618799303 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Atgeirr=20Fl=C3=B8=20Rasmussen?= Date: Fri, 29 May 2020 10:28:42 +0200 Subject: [PATCH] Always create proper case name. Without this, rank 0 gets an empty case name, resulting in buggy VTK output with filenames containing the genereric stem "sim" rather than the case name as stem. --- ebos/eclbasevanguard.hh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ebos/eclbasevanguard.hh b/ebos/eclbasevanguard.hh index 414eb24be..7663c5d7a 100644 --- a/ebos/eclbasevanguard.hh +++ b/ebos/eclbasevanguard.hh @@ -268,8 +268,7 @@ public: edgeWeightsMethod_ = Dune::EdgeWeightMethod(EWOMS_GET_PARAM(TypeTag, int, EdgeWeightsMethod)); ownersFirst_ = EWOMS_GET_PARAM(TypeTag, bool, OwnerCellsFirst); - // Skip processing of filename if external deck already exists. - if (!externalDeck_) + // Make proper case name. { if (fileName == "") throw std::runtime_error("No input deck file has been specified as a command line argument,"