From c68a6fd103dc23a4b1893a924af82749b80d87b3 Mon Sep 17 00:00:00 2001
From: Haibing Shao <haibing.shao@ufz.de>
Date: Mon, 5 Aug 2024 12:48:08 +0200
Subject: [PATCH] set requireNormalization to false by default

Only HeatTransportBHE process will require Normalization feature for now. The "requireNormalization" query is set to false by default in all other processes
---
 ProcessLib/Process.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/ProcessLib/Process.h b/ProcessLib/Process.h
index 3b2f076105d..b8c4fd9ed64 100644
--- a/ProcessLib/Process.h
+++ b/ProcessLib/Process.h
@@ -192,6 +192,8 @@ public:
     {
     }
 
+    bool requiresNormalization() const override { return false; }
+
 protected:
     std::vector<NumLib::LocalToGlobalIndexMap const*> getDOFTables(
         int const number_of_processes) const;
-- 
GitLab