├── .github └── workflows │ ├── publish-to-pypi.yml │ └── unix.yml ├── .gitignore ├── LICENSE ├── README.md ├── axiprop ├── __init__.py ├── backends.py ├── common.py ├── containers.py ├── lib.py ├── lib_compat.py ├── simulation │ ├── __init__.py │ ├── diags.py │ ├── ionization_inline.py │ ├── lib.py │ ├── plasma.py │ ├── solvers.py │ └── steppers.py ├── steppers.py └── utils.py ├── examples ├── example.ipynb ├── example_figure.png └── test2d.ipynb ├── requirements.txt ├── setup.py ├── somedocs ├── propagatorDHT.ipynb ├── propagatorDHT.slides.html ├── slides_axibeam.ipynb └── slides_axibeam.slides.html └── tests ├── test_containers.py ├── test_propagators_rt.py └── test_propagators_xyt.py /.github/workflows/publish-to-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightower8083/axiprop/HEAD/.github/workflows/publish-to-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/unix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightower8083/axiprop/HEAD/.github/workflows/unix.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightower8083/axiprop/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightower8083/axiprop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightower8083/axiprop/HEAD/README.md -------------------------------------------------------------------------------- /axiprop/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightower8083/axiprop/HEAD/axiprop/__init__.py -------------------------------------------------------------------------------- /axiprop/backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightower8083/axiprop/HEAD/axiprop/backends.py -------------------------------------------------------------------------------- /axiprop/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightower8083/axiprop/HEAD/axiprop/common.py -------------------------------------------------------------------------------- /axiprop/containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightower8083/axiprop/HEAD/axiprop/containers.py -------------------------------------------------------------------------------- /axiprop/lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightower8083/axiprop/HEAD/axiprop/lib.py -------------------------------------------------------------------------------- /axiprop/lib_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightower8083/axiprop/HEAD/axiprop/lib_compat.py -------------------------------------------------------------------------------- /axiprop/simulation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /axiprop/simulation/diags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightower8083/axiprop/HEAD/axiprop/simulation/diags.py -------------------------------------------------------------------------------- /axiprop/simulation/ionization_inline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightower8083/axiprop/HEAD/axiprop/simulation/ionization_inline.py -------------------------------------------------------------------------------- /axiprop/simulation/lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightower8083/axiprop/HEAD/axiprop/simulation/lib.py -------------------------------------------------------------------------------- /axiprop/simulation/plasma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightower8083/axiprop/HEAD/axiprop/simulation/plasma.py -------------------------------------------------------------------------------- /axiprop/simulation/solvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightower8083/axiprop/HEAD/axiprop/simulation/solvers.py -------------------------------------------------------------------------------- /axiprop/simulation/steppers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightower8083/axiprop/HEAD/axiprop/simulation/steppers.py -------------------------------------------------------------------------------- /axiprop/steppers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightower8083/axiprop/HEAD/axiprop/steppers.py -------------------------------------------------------------------------------- /axiprop/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightower8083/axiprop/HEAD/axiprop/utils.py -------------------------------------------------------------------------------- /examples/example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightower8083/axiprop/HEAD/examples/example.ipynb -------------------------------------------------------------------------------- /examples/example_figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightower8083/axiprop/HEAD/examples/example_figure.png -------------------------------------------------------------------------------- /examples/test2d.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightower8083/axiprop/HEAD/examples/test2d.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightower8083/axiprop/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightower8083/axiprop/HEAD/setup.py -------------------------------------------------------------------------------- /somedocs/propagatorDHT.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightower8083/axiprop/HEAD/somedocs/propagatorDHT.ipynb -------------------------------------------------------------------------------- /somedocs/propagatorDHT.slides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightower8083/axiprop/HEAD/somedocs/propagatorDHT.slides.html -------------------------------------------------------------------------------- /somedocs/slides_axibeam.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightower8083/axiprop/HEAD/somedocs/slides_axibeam.ipynb -------------------------------------------------------------------------------- /somedocs/slides_axibeam.slides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightower8083/axiprop/HEAD/somedocs/slides_axibeam.slides.html -------------------------------------------------------------------------------- /tests/test_containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightower8083/axiprop/HEAD/tests/test_containers.py -------------------------------------------------------------------------------- /tests/test_propagators_rt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightower8083/axiprop/HEAD/tests/test_propagators_rt.py -------------------------------------------------------------------------------- /tests/test_propagators_xyt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightower8083/axiprop/HEAD/tests/test_propagators_xyt.py --------------------------------------------------------------------------------