From 7cfcf3a9dba5e4e27374b96875c140d8f8c40652 Mon Sep 17 00:00:00 2001 From: Guillaume Giudicelli Date: Thu, 29 Feb 2024 11:40:55 -0700 Subject: [PATCH 1/2] Remove header that no longer exists refs idaholab/moose#25584 --- src/base/RedbackApp.C | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/base/RedbackApp.C b/src/base/RedbackApp.C index f008b1ca..e3c576ef 100644 --- a/src/base/RedbackApp.C +++ b/src/base/RedbackApp.C @@ -18,12 +18,12 @@ #include "MooseSyntax.h" // Modules -#include "TensorMechanicsApp.h" +#include "SolidMechanicsApp.h" // Actions -//#include "RankTwoScalarAction.h" -//#include "RedbackAction.h" -//#include "RedbackMechAction.h" +// #include "RankTwoScalarAction.h" +// #include "RedbackAction.h" +// #include "RedbackMechAction.h" InputParameters RedbackApp::validParams() From 49f77994231bb1bb5009884fd3160df3662bcdae Mon Sep 17 00:00:00 2001 From: Guillaume Giudicelli Date: Wed, 7 Feb 2024 23:13:35 -0700 Subject: [PATCH 2/2] Update to new MOOSE module name, refs idaholab/moose#25584 --- Makefile | 2 +- unit/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7b63ce5e..c1a7d498 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ include $(FRAMEWORK_DIR)/moose.mk ################################## MODULES #################################### ALL_MODULES := no -TENSOR_MECHANICS := yes +SOLID_MECHANICS := yes include $(MOOSE_DIR)/modules/modules.mk ############################################################################### diff --git a/unit/Makefile b/unit/Makefile index b9b4af6c..e8d8d721 100644 --- a/unit/Makefile +++ b/unit/Makefile @@ -19,7 +19,7 @@ include $(FRAMEWORK_DIR)/moose.mk ################################## MODULES #################################### #HEAT_CONDUCTION := yes -TENSOR_MECHANICS := yes +SOLID_MECHANICS := yes MISC := yes include $(MOOSE_DIR)/modules/modules.mk ###############################################################################