From 2e8a22048642af977c0bff8779d378137893ab9d Mon Sep 17 00:00:00 2001 From: Ann Almgren Date: Thu, 5 Dec 2024 20:30:41 -0800 Subject: [PATCH 1/4] update with new filenames --- Exec/DryRegTests/ParticlesOverWoA/ERF_Prob.H | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Exec/DryRegTests/ParticlesOverWoA/ERF_Prob.H b/Exec/DryRegTests/ParticlesOverWoA/ERF_Prob.H index 11050919c..4303ffe22 100644 --- a/Exec/DryRegTests/ParticlesOverWoA/ERF_Prob.H +++ b/Exec/DryRegTests/ParticlesOverWoA/ERF_Prob.H @@ -25,7 +25,7 @@ class Problem : public ProblemBase public: Problem(); -#include "Prob/ERF_InitConstantDensityHSEDry.H" +#include "Prob/ERF_InitDensityHSEDry.H" void init_custom_pert ( const amrex::Box& bx, From d870e14b6e50b446654d191d4db64f14c538c2b9 Mon Sep 17 00:00:00 2001 From: Ann Almgren Date: Thu, 5 Dec 2024 20:34:39 -0800 Subject: [PATCH 2/4] fix for EB --- CMake/BuildERFExe.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMake/BuildERFExe.cmake b/CMake/BuildERFExe.cmake index 53512bd57..a83267f29 100644 --- a/CMake/BuildERFExe.cmake +++ b/CMake/BuildERFExe.cmake @@ -37,7 +37,7 @@ function(build_erf_lib erf_lib_name) if(ERF_ENABLE_EB) target_sources(${erf_lib_name} PRIVATE - ${SRC_DIR}/EB/InitEB.cpp + ${SRC_DIR}/EB/ERF_InitEB.cpp ${SRC_DIR}/EB/ERF_EBBox.cpp ${SRC_DIR}/EB/ERF_EBCylinder.cpp ${SRC_DIR}/EB/ERF_EBRegular.cpp From 7cd021e681b32841f398aa2b8bb7972d211c0b2c Mon Sep 17 00:00:00 2001 From: Ann Almgren Date: Thu, 5 Dec 2024 20:35:21 -0800 Subject: [PATCH 3/4] fix for EB --- CMake/BuildERFExe.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMake/BuildERFExe.cmake b/CMake/BuildERFExe.cmake index a83267f29..0a926b1bb 100644 --- a/CMake/BuildERFExe.cmake +++ b/CMake/BuildERFExe.cmake @@ -42,7 +42,7 @@ function(build_erf_lib erf_lib_name) ${SRC_DIR}/EB/ERF_EBCylinder.cpp ${SRC_DIR}/EB/ERF_EBRegular.cpp ${SRC_DIR}/EB/ERF_InitEB.cpp - ${SRC_DIR}/EB/ERF_WriteEBsurface.cpp + ${SRC_DIR}/EB/ERF_WriteEBSurface.cpp ${SRC_DIR}/LinearSolvers/ERF_SolveWithEBMLMG.cpp) target_include_directories(${erf_lib_name} PUBLIC $) target_compile_definitions(${erf_lib_name} PUBLIC ERF_USE_EB) From c082c7aafe58629e979d56da10df2fa9582551c7 Mon Sep 17 00:00:00 2001 From: Ann Almgren Date: Thu, 5 Dec 2024 20:45:14 -0800 Subject: [PATCH 4/4] one more fix for EB --- Source/EB/ERF_EBRegular.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/EB/ERF_EBRegular.cpp b/Source/EB/ERF_EBRegular.cpp index be5e1fca8..710c7cd13 100644 --- a/Source/EB/ERF_EBRegular.cpp +++ b/Source/EB/ERF_EBRegular.cpp @@ -1,7 +1,7 @@ #include #include -#include +#include #include using namespace amrex;