diff options
author | 2020-01-31 05:10:59 -0800 | |
---|---|---|
committer | 2020-01-31 05:10:59 -0800 | |
commit | bbdaffb02f1412a7300e5e80940d61da1ead147e (patch) | |
tree | 69ad047b4d62c660dda382f948ff80491b042c49 /Source/FieldSolver/FiniteDifferenceSolver/FiniteDifferenceAlgorithms/YeeAlgorithm.H | |
parent | cb045a191a633ab2e6896161d58c3e6d0e0e074f (diff) | |
download | WarpX-bbdaffb02f1412a7300e5e80940d61da1ead147e.tar.gz WarpX-bbdaffb02f1412a7300e5e80940d61da1ead147e.tar.zst WarpX-bbdaffb02f1412a7300e5e80940d61da1ead147e.zip |
Correct name of Downward derivative
Diffstat (limited to 'Source/FieldSolver/FiniteDifferenceSolver/FiniteDifferenceAlgorithms/YeeAlgorithm.H')
-rw-r--r-- | Source/FieldSolver/FiniteDifferenceSolver/FiniteDifferenceAlgorithms/YeeAlgorithm.H | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/FieldSolver/FiniteDifferenceSolver/FiniteDifferenceAlgorithms/YeeAlgorithm.H b/Source/FieldSolver/FiniteDifferenceSolver/FiniteDifferenceAlgorithms/YeeAlgorithm.H index 75d191467..c01365e02 100644 --- a/Source/FieldSolver/FiniteDifferenceSolver/FiniteDifferenceAlgorithms/YeeAlgorithm.H +++ b/Source/FieldSolver/FiniteDifferenceSolver/FiniteDifferenceAlgorithms/YeeAlgorithm.H @@ -44,7 +44,7 @@ struct YeeAlgorithm { /** /* Perform derivative along x on a nodal grid, from a cell-centered field `F`*/ AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE - static amrex::Real Downwardx( + static amrex::Real DownwardDx( amrex::Array4<amrex::Real> const& F, amrex::Real const* coefs_x, int const n_coefs_x, int const i, int const j, int const k ) { @@ -72,7 +72,7 @@ struct YeeAlgorithm { /** /* Perform derivative along y on a nodal grid, from a cell-centered field `F`*/ AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE - static amrex::Real Downwardy( + static amrex::Real DownwardDy( amrex::Array4<amrex::Real> const& F, amrex::Real const* coefs_y, int const n_coefs_y, int const i, int const j, int const k ) { @@ -104,7 +104,7 @@ struct YeeAlgorithm { /** /* Perform derivative along z on a nodal grid, from a cell-centered field `F`*/ AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE - static amrex::Real Downwardz( + static amrex::Real DownwardDz( amrex::Array4<amrex::Real> const& F, amrex::Real const* coefs_z, int const n_coefs_z, int const i, int const j, int const k ) { |