From bbdaffb02f1412a7300e5e80940d61da1ead147e Mon Sep 17 00:00:00 2001 From: Remi Lehe Date: Fri, 31 Jan 2020 05:10:59 -0800 Subject: Correct name of Downward derivative --- .../FiniteDifferenceAlgorithms/NodalAlgorithm.H | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Source/FieldSolver/FiniteDifferenceSolver/FiniteDifferenceAlgorithms/NodalAlgorithm.H') diff --git a/Source/FieldSolver/FiniteDifferenceSolver/FiniteDifferenceAlgorithms/NodalAlgorithm.H b/Source/FieldSolver/FiniteDifferenceSolver/FiniteDifferenceAlgorithms/NodalAlgorithm.H index 82527bc5f..82528576d 100644 --- a/Source/FieldSolver/FiniteDifferenceSolver/FiniteDifferenceAlgorithms/NodalAlgorithm.H +++ b/Source/FieldSolver/FiniteDifferenceSolver/FiniteDifferenceAlgorithms/NodalAlgorithm.H @@ -48,7 +48,7 @@ struct NodalAlgorithm { /* (For a solver on a staggered grid, `UpwardDx` and `DownwardDx` take into /* account the staggering; but for `NodalAlgorithm`, they are equivalent) */ AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE - static amrex::Real Downwardx( + static amrex::Real DownwardDx( amrex::Array4 const& F, amrex::Real const* coefs_x, int const n_coefs_x, int const i, int const j, int const k ) { @@ -80,7 +80,7 @@ struct NodalAlgorithm { /* (For a solver on a staggered grid, `UpwardDy` and `DownwardDy` take into /* account the staggering; but for `NodalAlgorithm`, they are equivalent) */ AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE - static amrex::Real Downwardy( + static amrex::Real DownwardDy( amrex::Array4 const& F, amrex::Real const* coefs_y, int const n_coefs_y, int const i, int const j, int const k ) { @@ -116,7 +116,7 @@ struct NodalAlgorithm { /* (For a solver on a staggered grid, `UpwardDz` and `DownwardDz` take into /* account the staggering; but for `NodalAlgorithm`, they are equivalent) */ AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE - static amrex::Real Downwardz( + static amrex::Real DownwardDz( amrex::Array4 const& F, amrex::Real const* coefs_z, int const n_coefs_z, int const i, int const j, int const k ) { -- cgit v1.2.3