From bd03512c4eb322efb989258d220f5141e82b4007 Mon Sep 17 00:00:00 2001 From: Zhi Date: Tue, 10 Sep 2024 14:34:35 -0400 Subject: [PATCH] fix spelling --- Source/sources/Castro_geom.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Source/sources/Castro_geom.cpp b/Source/sources/Castro_geom.cpp index c48e31c0e3..d36cbcede2 100644 --- a/Source/sources/Castro_geom.cpp +++ b/Source/sources/Castro_geom.cpp @@ -4,7 +4,7 @@ using namespace amrex; /// -/// this adds the geomtric source terms for non-Cartesian Coordinates +/// this adds the geometric source terms for non-Cartesian Coordinates /// This includes 2D Cylindrical (R-Z) coordinate as described in Bernand-Champmartin /// and 2D Spherical (R-THETA) coordinate. /// @@ -63,13 +63,13 @@ void Castro::construct_new_geom_source(MultiFab& source, MultiFab& state_old, MultiFab& state_new, Real time, Real dt) { - if (geom.Coord() == 0) { - return; - } + if (geom.Coord() == 0) { + return; + } - if (use_geom_source == 0) { - return; - } + if (use_geom_source == 0) { + return; + } #if AMREX_SPACEDIM == 2 const Real strt_time = ParallelDescriptor::second();