From dda97206944aa6ec3e0c6bec824d65fd8445d0c6 Mon Sep 17 00:00:00 2001 From: Ann Almgren Date: Wed, 23 Oct 2024 15:47:31 -0700 Subject: [PATCH] remove assertion of no moisture with anelastic (#1907) --- Source/TimeIntegration/ERF_slow_rhs_pre.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Source/TimeIntegration/ERF_slow_rhs_pre.cpp b/Source/TimeIntegration/ERF_slow_rhs_pre.cpp index 7ec8b392c..51890a8cd 100644 --- a/Source/TimeIntegration/ERF_slow_rhs_pre.cpp +++ b/Source/TimeIntegration/ERF_slow_rhs_pre.cpp @@ -165,7 +165,6 @@ void erf_slow_rhs_pre (int level, int finest_level, // We cannot use anelastic with terrain or with moisture AMREX_ALWAYS_ASSERT(!l_use_terrain || !l_anelastic); - AMREX_ALWAYS_ASSERT(!l_use_moisture || !l_anelastic); const Box& domain = geom.Domain(); const int domhi_z = domain.bigEnd(2);