Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-09-11 | Source & Tools: No EOL Whitespaces | 3 | -3/+3 | ||
End-of-line (EOL) whitespaces are verbose and increase diffs and merge conflicts over time. Cleaned them up for the `Source/`, `Examples/` and `Tools/` directory with the following bash one-liner: ```bash find . -type f -not -path './.git*' \ -exec sed -i 's/[[:blank:]]*$//' {} \; ``` Committed as generic user so git does not credit the many lines to me: ```bash GIT_AUTHOR_NAME="Tools" GIT_AUTHOR_EMAIL="warpx@lbl.gov" \ git commit ``` | |||||
2019-09-03 | Merge branch 'dev' into RZgeometry | 1 | -1/+0 | ||
2019-08-31 | back to defining imaginary number in each routine... | 1 | -1/+1 | ||
2019-08-31 | Define imaginary number I in MathConst | 1 | -1/+1 | ||
2019-08-31 | move WarpX_Complex.H to Source/Utils | 2 | -28/+0 | ||
2019-08-16 | Moved WarpX_Complex.H to Utils | 5 | -30/+24 | ||
2019-07-30 | Corrections to allow compilation on GPU | 2 | -45/+60 | ||
2019-07-22 | Merge branch 'dev' into psatd_pml | 5 | -63/+142 | ||
2019-06-24 | Only copy FFT data to the valid box | 1 | -21/+22 | ||
2019-06-06 | Included revisions as suggested in the PR | 3 | -12/+9 | ||
2019-06-06 | adding 2D cufft plans | 1 | -8/+13 | ||
2019-06-06 | cleaning code for spectral cufft for 3D | 4 | -93/+26 | ||
2019-05-14 | changed made after merging with lastest dev version | 3 | -20/+21 | ||
2019-05-08 | merged with upstream dev | 7 | -31/+114 | ||
2019-05-08 | temporary print files for debugging | 1 | -34/+18 | ||
2019-05-06 | Added cuFFT kernels -- debugging error in rho values before forward transform | 5 | -55/+203 | ||
2019-05-04 | Initialize spectral solver | 1 | -0/+1 | ||
2019-05-03 | Prepare spectralsolver for PML | 2 | -5/+18 | ||
2019-05-03 | Commit missing files | 2 | -0/+165 | ||
2019-05-02 | Start implementation of spectral PML | 6 | -13/+26 | ||
2019-05-02 | Merge pull request #103 from ECP-WarpX/factory | 8 | -62/+136 | ||
Use virtual function to select the spectral algorithm | |||||
2019-05-01 | Correct error in calculation of k vector | 2 | -6/+9 | ||
2019-05-01 | Fix FFT size | 1 | -5/+8 | ||
2019-05-01 | Fix normalization | 1 | -6/+8 | ||
2019-05-01 | Implement Real-to-complex FFT | 4 | -30/+56 | ||
2019-05-01 | Add virtual destructor | 1 | -0/+4 | ||
2019-05-01 | Add comments | 2 | -2/+9 | ||
2019-04-30 | Fix typo | 1 | -1/+2 | ||
2019-04-30 | Update Make.package | 1 | -0/+1 | ||
2019-04-30 | Add separate file for constructor | 2 | -17/+38 | ||
2019-04-30 | Use factory method for the solver | 5 | -27/+62 | ||
2019-04-30 | Reorganize directories | 4 | -2/+7 | ||
2019-04-29 | Merge branch 'dev' into fix_spectral | 3 | -79/+39 | ||
2019-04-29 | Revert to enumeration in struct | 1 | -3/+4 | ||
2019-04-29 | Update PSATD algorithm | 1 | -31/+21 | ||
2019-04-29 | Update structure for storing spectral fields | 2 | -48/+18 | ||
2019-04-28 | Fix more 2D bugs | 1 | -2/+7 | ||
2019-04-28 | Fix 2D bugs | 1 | -2/+5 | ||
2019-04-28 | Fix error in calculation of modified k vectors | 1 | -2/+3 | ||
2019-04-26 | Add missing file | 1 | -0/+27 | ||
2019-04-26 | Fix typos | 1 | -4/+4 | ||
2019-04-26 | Cosmetic changes | 4 | -43/+16 | ||
2019-04-26 | Add profiling variables | 1 | -0/+3 | ||
2019-04-26 | Correct naming of `dx` ; use initializer list | 2 | -4/+3 | ||
2019-04-25 | Correct shift | 1 | -2/+2 | ||
2019-04-24 | Correct out-of-bounds with real-space box | 1 | -4/+2 | ||
2019-04-23 | Add comments ; copy only to valid box | 5 | -45/+88 | ||
2019-04-23 | Add comments, switch value of k | 2 | -13/+43 | ||
2019-04-23 | Cleanup + add comments | 2 | -13/+36 | ||
2019-04-23 | Switch and rename the shift factors | 4 | -61/+83 | ||