aboutsummaryrefslogtreecommitdiff
path: root/Source/Utils/write_atomic_data_cpp.py (follow)
AgeCommit message (Collapse)AuthorFilesLines
2022-10-10Partial refactoring of the utils directory (#3404)Gravatar Luca Fedeli 1-87/+0
* initial work to clean WarpX Utils * remove AMRCore from Ionization tables * progress * refactoring of a part of the utils directory * fix bug * fixed bug * fixed bug * remove debug line accidentally slipped into the code * remove debug line accidentally slipped into the code * remove debug line accidentally slipped into the code * cleaning * fixed bug
2021-12-21pre-commit: Python imports (#2686)Gravatar Axel Huebl 1-1/+3
* pre-commit: Python imports Add two new Python rules to: - remove unused imports - sort imports according to PEP8 * pre-commit: Python imports Add two new Python rules to: - remove unused imports - sort imports according to PEP8 `.editorconfig`: isort options https://github.com/PyCQA/isort/wiki/isort-Settings * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * move import os (mpl) * move import yt (mpl) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Cleanup around matplotlib.use * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Cleaning: double np and lib Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2021-06-09ion_map_ids: static & const access (#2010)Gravatar Axel Huebl 1-4/+5
This fixes the `ion_map_ids` atom-to-number object: - declare static, so the file can be included in multiple translation units - use `.at()`: - missing entries do not cause an insertion - missing entries will throw - access is `const`, so we can declare the whole object `static const` as well.
2021-01-20SpeciesProperties: C, N, O, Cu (#1638)Gravatar Axel Huebl 1-7/+10
* SpeciesProperties: C, N, O, Cu Add more ionic species as pre-defined particle species. * Cu: Add to Ionization Energies
2020-01-27Automatically add copyright header with update_copyright.shGravatar Tools 1-0/+7
2020-01-13fix lgtm warningsGravatar Luca Fedeli 1-1/+0
2019-09-13Ionization Energies Script: no EOLGravatar Axel Huebl 1-11/+13
Avoid writing EOL whitspaces in ionization energies script.
2019-09-11Source & Tools: No EOL WhitespacesGravatar Tools 1-1/+1
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-08-21add comments and make sure charge=q_e for ionizable speciesGravatar MaxThevenet 1-0/+6
2019-08-03add ionization table dataGravatar MaxThevenet 1-0/+67