aboutsummaryrefslogtreecommitdiff
path: root/Source/FieldSolver/FiniteDifferenceSolver (follow)
AgeCommit message (Collapse)AuthorFilesLines
2020-02-26Use C++ templates in `EvolveE` function (#676)Gravatar Remi Lehe 3-0/+369
* Prepare EvolveE * Cartesian equations without current * Implement Cartesian EvolveE * Progress towards cylindrical solver * Correct typo * Implement cylindrical solver (without on-axis condition) * Fix compilation errors * Add regularization for RZ solver * Added correction term for F * Remove file for nodal stencil * Apply stylistic changes to EvolveE * Fix compilation errors * Correction to avoid out of bound * Remove references to old file * Correct bug in EvolveB * Implement correction on axis for Et * Remove previous field update functions * Remove unused code
2020-02-25Includes: Clean Up (#743)Gravatar Axel Huebl 2-2/+2
- Use `""` for WarpX-local includes - Order: WarpX `""`, AMReX `<>`, other third party includes `<>` - Add dir prefixes for WarpX Add order to includes by including from `Source/` onward and keeping directory prefixes of non-local includes for clarity.
2020-02-25FDTD: Real Literals and Formatting (#736)Gravatar Axel Huebl 4-149/+176
Clean up `amrex::Real` literals (aka "numbers"). This avoids calculating a line in double precision and casting it down to `Real` on assignment. Also fixes some formatting issues. (Commit credited to Remi.) Co-authored-by: Axel Huebl <axel.huebl@plasma.ninja> Co-authored-by: Remi Lehe <remi.lehe@normalesup.org>
2020-02-06Add Doxygen commentsGravatar Remi Lehe 6-10/+28
2020-02-06Correct errors in CKCGravatar Remi Lehe 1-0/+5
2020-02-06Prepend class members with "m_"Gravatar Remi Lehe 3-19/+19
2020-02-06Explicitly use "Cartesian" in the name of algorithmsGravatar Remi Lehe 5-44/+36
2020-02-06Make calculation of CKC coefficients for const friendlyGravatar Remi Lehe 4-91/+73
2020-02-06Implement review commentsGravatar Remi Lehe 5-27/+27
2020-02-06Make on-axis condition more explicit in EvolveBGravatar Remi Lehe 2-35/+42
2020-01-31Correct alignment of pre-compiler directiveGravatar Remi Lehe 1-4/+4
2020-01-31Correct name of Downward derivativeGravatar Remi Lehe 3-9/+9
2020-01-31Left-align pre-compiler directivesGravatar Remi Lehe 3-42/+42
2020-01-31Add `const` anotationsGravatar Remi Lehe 4-32/+32
2020-01-29Add copyrightsGravatar Remi Lehe 7-0/+49
2020-01-28Add commentsGravatar Remi Lehe 7-65/+151
2020-01-28Remove unused functionsGravatar Remi Lehe 1-1/+2
2020-01-28Fix typo in cylindrical operatorGravatar Remi Lehe 1-2/+2
2020-01-28Fix compilation for GPUGravatar Remi Lehe 1-0/+4
2020-01-28Register missing parameterGravatar Remi Lehe 1-0/+1
2020-01-28Fix type of input parameter "do_nodal"Gravatar Remi Lehe 2-3/+3
2020-01-27Fix cylindrical solverGravatar Remi Lehe 1-1/+1
2020-01-27Implement nodal solverGravatar Remi Lehe 4-14/+129
2020-01-27Fix compilation errorsGravatar Remi Lehe 5-42/+80
2020-01-27Implement cylindrical Yee algorithmGravatar Remi Lehe 3-69/+73
2020-01-26Started cylindrical implementationGravatar Remi Lehe 3-8/+205
2020-01-24Bug fixes for CKCGravatar Remi Lehe 2-7/+8
2020-01-24Added CKC algorithmGravatar Remi Lehe 2-2/+213
2020-01-24Implement PR comments and fix compilation for PSATDGravatar Remi Lehe 2-23/+23
2020-01-13Correct compilation errorsGravatar Remi Lehe 2-28/+45
2020-01-10Start fixing compilation errorsGravatar Remi Lehe 4-55/+63
2020-01-10Update finite-difference solverGravatar Remi Lehe 2-18/+21
2020-01-10Update Evolve BGravatar Remi Lehe 4-30/+41
2020-01-10Started implementing finite difference solverGravatar Remi Lehe 4-0/+201
Added Yee algorithm