Skip to content

Commit

Permalink
cosmetic indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
RevathiJambunathan committed Sep 13, 2024
1 parent 9b72a1d commit b00bece
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions Source/ablastr/fields/PoissonSolver.H
Original file line number Diff line number Diff line change
Expand Up @@ -392,13 +392,15 @@ computePhi (amrex::Vector<amrex::MultiFab*> const & rho,
// - coarser level provides boundary values for finer level patch
// Interpolation from phi[lev] to phi[lev+1]
// (This provides both the boundary conditions and initial guess for phi[lev+1])
if (lev < finest_level) { interpolatePhiBetweenLevels(phi[lev],
phi[lev+1],
geom[lev],
do_single_precision_comms,
refratio,
ncomp,
ng);}
if (lev < finest_level) {
interpolatePhiBetweenLevels(phi[lev],
phi[lev+1],
geom[lev],
do_single_precision_comms,
refratio,
ncomp,
ng);
}

// Run additional operations, such as calculation of the E field for embedded boundaries
if constexpr (!std::is_same_v<T_PostPhiCalculationFunctor, std::nullopt_t>) {
Expand Down

0 comments on commit b00bece

Please sign in to comment.