diff options
author | 2020-04-17 10:27:06 -0700 | |
---|---|---|
committer | 2020-04-17 10:27:06 -0700 | |
commit | 7a8f63f9f938c2cc03fdf967308cd0fe54ae537f (patch) | |
tree | 9883b549505ecf28d6aae25918d899f40ad67e87 /Source/FieldSolver/SpectralSolver/SpectralKSpace.cpp | |
parent | e2300f2ca3897988bea47d5eb182755048520d99 (diff) | |
download | WarpX-7a8f63f9f938c2cc03fdf967308cd0fe54ae537f.tar.gz WarpX-7a8f63f9f938c2cc03fdf967308cd0fe54ae537f.tar.zst WarpX-7a8f63f9f938c2cc03fdf967308cd0fe54ae537f.zip |
Remove code for hybrid PSATD, as well as remaining Fortran interface file (#927)
* Clean-up hybrid code
* Remove Fortran interface
Diffstat (limited to 'Source/FieldSolver/SpectralSolver/SpectralKSpace.cpp')
-rw-r--r-- | Source/FieldSolver/SpectralSolver/SpectralKSpace.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Source/FieldSolver/SpectralSolver/SpectralKSpace.cpp b/Source/FieldSolver/SpectralSolver/SpectralKSpace.cpp index c1e0c59d0..c53070827 100644 --- a/Source/FieldSolver/SpectralSolver/SpectralKSpace.cpp +++ b/Source/FieldSolver/SpectralSolver/SpectralKSpace.cpp @@ -37,7 +37,6 @@ SpectralKSpace::SpectralKSpace( const BoxArray& realspace_ba, // For local FFTs, boxes in spectral space start at 0 in // each direction and have the same number of points as the // (cell-centered) real space box - // TODO: this will be different for the hybrid FFT scheme Box realspace_bx = realspace_ba[i]; IntVect fft_size = realspace_bx.length(); // Because the spectral solver uses real-to-complex FFTs, we only @@ -115,7 +114,6 @@ SpectralKSpace::getKComponent( const DistributionMapping& dm, k[i] = (i-N)*dk; } } - // TODO: this will be different for the hybrid FFT scheme } return k_comp; } |