From ff13cdd39d890a5b056bf962bda14a3b8bbb568d Mon Sep 17 00:00:00 2001 From: Mark Olesen Date: Thu, 2 Feb 2023 15:12:09 +0100 Subject: [PATCH] BUG: ensightWrite not reading "excludeFields" (fixes #2696) - field blocking/exclusion added in commit d9ab5d54efb5, but was incorrectly doing a lookup for "blockField" for ensight although "excludeFields" was documented (and expected). Now corrected to use "excludeFields" --- src/functionObjects/utilities/ensightWrite/ensightWriteUpdate.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/functionObjects/utilities/ensightWrite/ensightWriteUpdate.C b/src/functionObjects/utilities/ensightWrite/ensightWriteUpdate.C index 62084a8998..a6b7dbdc52 100644 --- a/src/functionObjects/utilities/ensightWrite/ensightWriteUpdate.C +++ b/src/functionObjects/utilities/ensightWrite/ensightWriteUpdate.C @@ -103,7 +103,7 @@ bool Foam::functionObjects::ensightWrite::readSelection(const dictionary& dict) selectFields_.uniq(); blockFields_.clear(); - dict.readIfPresent("blockFields", blockFields_); + dict.readIfPresent("excludeFields", blockFields_); blockFields_.uniq(); // Actions to define selection