Skip to content

Commit

Permalink
fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
zhichen3 committed Sep 10, 2024
1 parent 7b39533 commit bd03512
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Source/sources/Castro_geom.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.
///
Expand Down Expand Up @@ -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();
Expand Down

0 comments on commit bd03512

Please sign in to comment.