diff options
author | 2022-05-16 18:37:15 +0200 | |
---|---|---|
committer | 2022-05-16 16:37:15 +0000 | |
commit | 251920a01a5415d974170ddcbf48e88b0ea9f65e (patch) | |
tree | d780c00b8b589f413b6a95c106baa83445c9bc2b /Python/pywarpx/EB2.py | |
parent | 47a0490323adde9d8475e458f886e322be040d05 (diff) | |
download | WarpX-251920a01a5415d974170ddcbf48e88b0ea9f65e.tar.gz WarpX-251920a01a5415d974170ddcbf48e88b0ea9f65e.tar.zst WarpX-251920a01a5415d974170ddcbf48e88b0ea9f65e.zip |
Add STL files support in pywarpx (#3089)
* Added STL files support in pywarpx
* Add new EB bucket
* Added name to file headers
* Fixing year in file headers
* Checking that stl file and imp function are not both specified
* Renamed EB bucket to EB2
* Adding STL documentation
* Implement suggestions from code review
Co-authored-by: lgiacome <lorenzo.giacome@cern.ch>
Diffstat (limited to 'Python/pywarpx/EB2.py')
-rw-r--r-- | Python/pywarpx/EB2.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Python/pywarpx/EB2.py b/Python/pywarpx/EB2.py new file mode 100644 index 000000000..4b74aafb0 --- /dev/null +++ b/Python/pywarpx/EB2.py @@ -0,0 +1,9 @@ +# Copyright 2022 Lorenzo Giacomel +# +# This file is part of WarpX. +# +# License: BSD-3-Clause-LBNL + +from .Bucket import Bucket + +eb2 = Bucket('eb2') |