From 027676d573f14c56cc2424b4f94c06c9f1fadc72 Mon Sep 17 00:00:00 2001 From: Kristian Bendiksen Date: Fri, 22 Sep 2023 08:42:51 +0200 Subject: [PATCH 1/3] Revert "Fault Reactivation Model: Remove incorrect boundary conditions." This reverts commit 06eb0fb7244e093cb6db07ab7432586c2ca6647b. --- .../FileInterface/RifFaultReactivationModelExporter.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/ApplicationLibCode/FileInterface/RifFaultReactivationModelExporter.cpp b/ApplicationLibCode/FileInterface/RifFaultReactivationModelExporter.cpp index 12b6a85c66..9c92aba14f 100644 --- a/ApplicationLibCode/FileInterface/RifFaultReactivationModelExporter.cpp +++ b/ApplicationLibCode/FileInterface/RifFaultReactivationModelExporter.cpp @@ -316,6 +316,15 @@ std::pair } } + std::string partSymmetry = "XSYMM"; + for ( const auto& part : parts ) + { + auto partNameIt = partNames.find( part ); + CAF_ASSERT( partNameIt != partNames.end() ); + std::string partName = partNameIt->second; + printBoundaryCondition( stream, partName + "." + partName, partSymmetry ); + } + return { true, "" }; } From 1a8ca362a7e32edfdcb5b3926feb602708626c5a Mon Sep 17 00:00:00 2001 From: Kristian Bendiksen Date: Fri, 22 Sep 2023 08:50:25 +0200 Subject: [PATCH 2/3] Fault Reactivation: Fix part boundary conditions. Disallows movement out of the plane (fixates the nodes in Y direction). --- .../FileInterface/RifFaultReactivationModelExporter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ApplicationLibCode/FileInterface/RifFaultReactivationModelExporter.cpp b/ApplicationLibCode/FileInterface/RifFaultReactivationModelExporter.cpp index 9c92aba14f..4bcfc132db 100644 --- a/ApplicationLibCode/FileInterface/RifFaultReactivationModelExporter.cpp +++ b/ApplicationLibCode/FileInterface/RifFaultReactivationModelExporter.cpp @@ -316,7 +316,7 @@ std::pair } } - std::string partSymmetry = "XSYMM"; + std::string partSymmetry = "YSYMM"; for ( const auto& part : parts ) { auto partNameIt = partNames.find( part ); From 151c304ebe6f09902374c08c58537655f0660e5e Mon Sep 17 00:00:00 2001 From: Kristian Bendiksen Date: Fri, 22 Sep 2023 08:59:27 +0200 Subject: [PATCH 3/3] Set version to 2023.06.1-dev.11 --- ResInsightVersion.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ResInsightVersion.cmake b/ResInsightVersion.cmake index 89fcde5192..e43faaec03 100644 --- a/ResInsightVersion.cmake +++ b/ResInsightVersion.cmake @@ -11,7 +11,7 @@ set(RESINSIGHT_VERSION_TEXT "-dev") # Must be unique and increasing within one combination of major/minor/patch version # The uniqueness of this text is independent of RESINSIGHT_VERSION_TEXT # Format of text must be ".xx" -set(RESINSIGHT_DEV_VERSION ".10") +set(RESINSIGHT_DEV_VERSION ".11") # https://github.com/CRAVA/crava/tree/master/libs/nrlib set(NRLIB_GITHUB_SHA "ba35d4359882f1c6f5e9dc30eb95fe52af50fd6f")