├── .clang-tidy ├── .editorconfig ├── .github ├── pull_request_template.md └── workflows │ ├── clangtidy.yml │ ├── cuda.yml │ ├── cudaLocal.yml │ ├── disabled │ └── macos.yml │ ├── hip.yml │ ├── linux.yml │ ├── macos.yml │ ├── setup │ ├── hip.sh │ ├── macos.sh │ ├── macos_omp.sh │ ├── nvcc11.sh │ ├── nvhpc.sh │ ├── ubuntu.sh │ ├── ubuntu_clang.sh │ └── ubuntu_ompi.sh │ ├── source.yml │ ├── source │ ├── buildDoxygen │ ├── hasEOLwhiteSpace │ ├── hasNonASCII │ ├── hasTabs │ ├── inputsNotTested │ └── wrongFileNameInExamples │ └── windows.yml ├── .gitignore ├── .mailmap ├── .readthedocs.yml ├── .zenodo.json ├── CMakeLists.txt ├── README.md ├── cmake ├── HiPACEFunctions.cmake └── dependencies │ ├── AMReX.cmake │ ├── FFT.cmake │ └── openPMD.cmake ├── docs ├── Doxyfile ├── Makefile ├── equations_hipace.tex ├── optimizations.txt ├── requirements.txt └── source │ ├── acknowledge_hipace.rst │ ├── building │ ├── brew.svg │ ├── building.rst │ ├── hpc.rst │ ├── platforms │ │ ├── booster_jsc.rst │ │ ├── lumi_csc.rst │ │ ├── maxwell_desy.rst │ │ └── perlmutter_nersc.rst │ └── spack.svg │ ├── conf.py │ ├── contributing │ └── contributing.rst │ ├── index.rst │ ├── run │ ├── chat.rst │ ├── get_started.rst │ ├── inputs_lwfa.rst │ ├── inputs_pwfa.rst │ └── parameters.rst │ └── visualize │ └── visualization.rst ├── examples ├── beam_in_vacuum │ ├── analysis.py │ ├── analysis_2ranks.py │ ├── analysis_RR.py │ ├── analysis_adaptive_ts.py │ ├── analysis_beam_push.py │ ├── analysis_from_file.py │ ├── analysis_grid_current.py │ ├── analysis_open_boundary.py │ ├── analysis_transverse.py │ ├── inputs_RR │ ├── inputs_SI │ ├── inputs_normalized │ └── inputs_normalized_transverse ├── benchmarks │ ├── inputs_timestep_benchmark │ └── inputs_transverse_benchmark ├── blowout_wake │ ├── analysis.py │ ├── analysis_coarsening.py │ ├── analysis_slice_IO.py │ ├── inputs_SI │ ├── inputs_ionization_SI │ └── inputs_normalized ├── gaussian_weight │ ├── analysis.py │ ├── inputs_SI │ └── inputs_normalized ├── get_started │ ├── inputs_lwfa │ ├── inputs_mesh_refinement │ ├── inputs_normalized │ ├── inputs_pwfa │ └── notebook.ipynb ├── laser │ ├── analysis_laser_vacuum.py │ └── inputs_SI ├── laser_STC │ ├── analysis_laser_STC.py │ └── inputs_STC ├── laser_ionization │ ├── analysis_laser_ionization.py │ └── inputs_laser_ionization ├── linear_wake │ ├── analysis.py │ ├── analysis_equal.py │ ├── inputs_SI │ ├── inputs_ion_motion_SI │ └── inputs_normalized └── plasma_initialization │ └── inputs_SI_plasma_from_file ├── legal.txt ├── license.txt ├── src ├── CMakeLists.txt ├── Hipace.H ├── Hipace.cpp ├── HipaceVersion.H.in ├── HipaceVersion.cpp ├── diagnostics │ ├── CMakeLists.txt │ ├── Diagnostic.H │ ├── Diagnostic.cpp │ ├── OpenPMDWriter.H │ └── OpenPMDWriter.cpp ├── fields │ ├── CMakeLists.txt │ ├── Fields.H │ ├── Fields.cpp │ ├── OpenBoundary.H │ └── fft_poisson_solver │ │ ├── CMakeLists.txt │ │ ├── FFTPoissonSolver.H │ │ ├── FFTPoissonSolver.cpp │ │ ├── FFTPoissonSolverDirichletDirect.H │ │ ├── FFTPoissonSolverDirichletDirect.cpp │ │ ├── FFTPoissonSolverDirichletExpanded.H │ │ ├── FFTPoissonSolverDirichletExpanded.cpp │ │ ├── FFTPoissonSolverDirichletFast.H │ │ ├── FFTPoissonSolverDirichletFast.cpp │ │ ├── FFTPoissonSolverPeriodic.H │ │ ├── FFTPoissonSolverPeriodic.cpp │ │ ├── MGPoissonSolverDirichlet.H │ │ ├── MGPoissonSolverDirichlet.cpp │ │ └── fft │ │ ├── AnyFFT.H │ │ ├── CMakeLists.txt │ │ ├── WrapCuFFT.cpp │ │ ├── WrapFFTW.cpp │ │ └── WrapRocFFT.cpp ├── laser │ ├── CMakeLists.txt │ ├── Laser.H │ ├── Laser.cpp │ ├── MultiLaser.H │ └── MultiLaser.cpp ├── main.cpp ├── mg_solver │ ├── CMakeLists.txt │ ├── HpMultiGrid.H │ └── HpMultiGrid.cpp ├── particles │ ├── CMakeLists.txt │ ├── beam │ │ ├── BeamParticleContainer.H │ │ ├── BeamParticleContainer.cpp │ │ ├── BeamParticleContainerInit.cpp │ │ ├── CMakeLists.txt │ │ ├── MultiBeam.H │ │ └── MultiBeam.cpp │ ├── collisions │ │ ├── CMakeLists.txt │ │ ├── ComputeTemperature.H │ │ ├── CoulombCollision.H │ │ ├── CoulombCollision.cpp │ │ ├── ElasticCollisionPerez.H │ │ ├── ShuffleFisherYates.H │ │ └── UpdateMomentumPerez.H │ ├── deposition │ │ ├── BeamDepositCurrent.H │ │ ├── BeamDepositCurrent.cpp │ │ ├── CMakeLists.txt │ │ ├── DepositionUtil.H │ │ ├── ExplicitDeposition.H │ │ ├── ExplicitDeposition.cpp │ │ ├── PlasmaDepositCurrent.H │ │ ├── PlasmaDepositCurrent.cpp │ │ ├── TemperatureDeposition.H │ │ └── TemperatureDeposition.cpp │ ├── particles_utils │ │ ├── FieldGather.H │ │ ├── ParticleUtil.H │ │ └── ShapeFactors.H │ ├── plasma │ │ ├── CMakeLists.txt │ │ ├── MultiPlasma.H │ │ ├── MultiPlasma.cpp │ │ ├── PlasmaParticleContainer.H │ │ ├── PlasmaParticleContainer.cpp │ │ └── PlasmaParticleContainerInit.cpp │ ├── profiles │ │ ├── CMakeLists.txt │ │ ├── GetInitialDensity.H │ │ ├── GetInitialDensity.cpp │ │ ├── GetInitialMomentum.H │ │ └── GetInitialMomentum.cpp │ ├── pusher │ │ ├── BeamParticleAdvance.H │ │ ├── BeamParticleAdvance.cpp │ │ ├── CMakeLists.txt │ │ ├── ExternalFields.H │ │ ├── GetAndSetPosition.H │ │ ├── PlasmaParticleAdvance.H │ │ ├── PlasmaParticleAdvance.cpp │ │ └── PushPlasmaParticles.H │ └── sorting │ │ ├── BoxSort.H │ │ ├── BoxSort.cpp │ │ ├── CMakeLists.txt │ │ ├── SliceSort.H │ │ ├── SliceSort.cpp │ │ ├── TileSort.H │ │ └── TileSort.cpp ├── salame │ ├── CMakeLists.txt │ ├── Salame.H │ └── Salame.cpp └── utils │ ├── AdaptiveTimeStep.H │ ├── AdaptiveTimeStep.cpp │ ├── AtomicWeightTable.H │ ├── CMakeLists.txt │ ├── Constants.H │ ├── Constants.cpp │ ├── DeprecatedInput.H │ ├── DualNumbers.H │ ├── GPUUtil.H │ ├── GridCurrent.H │ ├── GridCurrent.cpp │ ├── HipaceProfilerWrapper.H │ ├── IOUtil.H │ ├── IOUtil.cpp │ ├── InsituUtil.H │ ├── IonizationEnergiesTable.H │ ├── MakeOpenBoundary.py │ ├── MultiBuffer.H │ ├── MultiBuffer.cpp │ ├── OMPUtil.H │ ├── Parser.H │ ├── Parser.cpp │ ├── write_atomic_data_cpp.py │ └── write_atomic_weight_cpp.py ├── tests ├── adaptive_time_step.1Rank.sh ├── beam_evolution.1Rank.sh ├── beam_in_vacuum.SI.1Rank.sh ├── beam_in_vacuum.SI.Serial.sh ├── beam_in_vacuum.normalized.1Rank.sh ├── beam_in_vacuum.normalized.2Rank.sh ├── beam_in_vacuum.normalized.Serial.sh ├── beam_in_vacuum_open_boundary.normalized.1Rank.sh ├── blowout_wake.2Rank.sh ├── blowout_wake.Serial.sh ├── blowout_wake_explicit.2Rank.sh ├── checksum │ ├── __init__.py │ ├── backend │ │ ├── amrex_backend.py │ │ └── openpmd_backend.py │ ├── benchmark.py │ ├── benchmarks_json │ │ ├── adaptive_time_step.1Rank.json │ │ ├── beam_evolution.1Rank.json │ │ ├── beam_in_vacuum.SI.1Rank.json │ │ ├── beam_in_vacuum.SI.Serial.json │ │ ├── beam_in_vacuum.normalized.1Rank.json │ │ ├── beam_in_vacuum.normalized.Serial.json │ │ ├── beam_in_vacuum_open_boundary.normalized.1Rank.json │ │ ├── blowout_wake.2Rank.json │ │ ├── blowout_wake.Serial.json │ │ ├── blowout_wake_explicit.2Rank.json │ │ ├── collisions.SI.1Rank.json │ │ ├── collisions_beam.SI.1Rank.json │ │ ├── gaussian_linear_wake.SI.1Rank.json │ │ ├── gaussian_linear_wake.normalized.1Rank.json │ │ ├── gaussian_weight.1Rank.json │ │ ├── grid_current.1Rank.json │ │ ├── hosing.2Rank.json │ │ ├── ion_motion.SI.1Rank.json │ │ ├── ionization.2Rank.json │ │ ├── laser_blowout_wake_explicit.1Rank.json │ │ ├── laser_blowout_wake_explicit.SI.1Rank.json │ │ ├── laser_evolution.SI.2Rank.json │ │ ├── laser_ionization.1Rank.json │ │ ├── linear_wake.SI.1Rank.json │ │ ├── linear_wake.normalized.1Rank.json │ │ ├── mesh_refinement.SI.2Rank.json │ │ ├── plasma_density_from_file.SI.1Rank.json │ │ ├── production_lwfa.SI.2Rank.json │ │ ├── production_pwfa.SI.2Rank.json │ │ ├── radiation_reaction.1Rank.json │ │ ├── reset.1Rank.json │ │ ├── reset.2Rank.json │ │ └── transverse_benchmark.1Rank.json │ ├── checksum.py │ ├── checksumAPI.py │ └── config.py ├── collisions.SI.1Rank.sh ├── collisions_beam.SI.1Rank.sh ├── from_file.SI.1Rank.sh ├── from_file.normalized.1Rank.sh ├── gaussian_linear_wake.SI.1Rank.sh ├── gaussian_linear_wake.normalized.1Rank.sh ├── gaussian_weight.1Rank.sh ├── grid_current.1Rank.sh ├── hosing.2Rank.sh ├── ion_motion.SI.1Rank.sh ├── ionization.2Rank.sh ├── laser_STC.1Rank.sh ├── laser_blowout_wake_explicit.1Rank.sh ├── laser_blowout_wake_explicit.SI.1Rank.sh ├── laser_evolution.SI.2Rank.sh ├── laser_ionization.1Rank.sh ├── linear_wake.SI.1Rank.sh ├── linear_wake.normalized.1Rank.sh ├── mesh_refinement.SI.2Rank.sh ├── next_deposition_beam.2Rank.sh ├── output_coarsening.2Rank.sh ├── plasma_density_from_file.SI.1Rank.sh ├── production_lwfa.SI.2Rank.sh ├── production_pwfa.SI.2Rank.sh ├── radiation_reaction.1Rank.sh ├── reset.2Rank.sh ├── restart.normalized.1Rank.sh ├── slice_IO.1Rank.sh └── transverse_benchmark.1Rank.sh └── tools ├── convert_hipace_to_hipace++_file.py ├── pyproject.toml ├── read_insitu_diagnostics.py ├── runClangTidy.sh ├── write_beam.py ├── write_plasma_density.py └── write_plasma_density_rz.py /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/clangtidy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/.github/workflows/clangtidy.yml -------------------------------------------------------------------------------- /.github/workflows/cuda.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/.github/workflows/cuda.yml -------------------------------------------------------------------------------- /.github/workflows/cudaLocal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/.github/workflows/cudaLocal.yml -------------------------------------------------------------------------------- /.github/workflows/disabled/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/.github/workflows/disabled/macos.yml -------------------------------------------------------------------------------- /.github/workflows/hip.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/.github/workflows/hip.yml -------------------------------------------------------------------------------- /.github/workflows/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/.github/workflows/linux.yml -------------------------------------------------------------------------------- /.github/workflows/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/.github/workflows/macos.yml -------------------------------------------------------------------------------- /.github/workflows/setup/hip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/.github/workflows/setup/hip.sh -------------------------------------------------------------------------------- /.github/workflows/setup/macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/.github/workflows/setup/macos.sh -------------------------------------------------------------------------------- /.github/workflows/setup/macos_omp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/.github/workflows/setup/macos_omp.sh -------------------------------------------------------------------------------- /.github/workflows/setup/nvcc11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/.github/workflows/setup/nvcc11.sh -------------------------------------------------------------------------------- /.github/workflows/setup/nvhpc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/.github/workflows/setup/nvhpc.sh -------------------------------------------------------------------------------- /.github/workflows/setup/ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/.github/workflows/setup/ubuntu.sh -------------------------------------------------------------------------------- /.github/workflows/setup/ubuntu_clang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/.github/workflows/setup/ubuntu_clang.sh -------------------------------------------------------------------------------- /.github/workflows/setup/ubuntu_ompi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/.github/workflows/setup/ubuntu_ompi.sh -------------------------------------------------------------------------------- /.github/workflows/source.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/.github/workflows/source.yml -------------------------------------------------------------------------------- /.github/workflows/source/buildDoxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/.github/workflows/source/buildDoxygen -------------------------------------------------------------------------------- /.github/workflows/source/hasEOLwhiteSpace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/.github/workflows/source/hasEOLwhiteSpace -------------------------------------------------------------------------------- /.github/workflows/source/hasNonASCII: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/.github/workflows/source/hasNonASCII -------------------------------------------------------------------------------- /.github/workflows/source/hasTabs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/.github/workflows/source/hasTabs -------------------------------------------------------------------------------- /.github/workflows/source/inputsNotTested: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/.github/workflows/source/inputsNotTested -------------------------------------------------------------------------------- /.github/workflows/source/wrongFileNameInExamples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/.github/workflows/source/wrongFileNameInExamples -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/.mailmap -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.zenodo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/.zenodo.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/README.md -------------------------------------------------------------------------------- /cmake/HiPACEFunctions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/cmake/HiPACEFunctions.cmake -------------------------------------------------------------------------------- /cmake/dependencies/AMReX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/cmake/dependencies/AMReX.cmake -------------------------------------------------------------------------------- /cmake/dependencies/FFT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/cmake/dependencies/FFT.cmake -------------------------------------------------------------------------------- /cmake/dependencies/openPMD.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/cmake/dependencies/openPMD.cmake -------------------------------------------------------------------------------- /docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/docs/Doxyfile -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/equations_hipace.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/docs/equations_hipace.tex -------------------------------------------------------------------------------- /docs/optimizations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/docs/optimizations.txt -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/acknowledge_hipace.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/docs/source/acknowledge_hipace.rst -------------------------------------------------------------------------------- /docs/source/building/brew.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/docs/source/building/brew.svg -------------------------------------------------------------------------------- /docs/source/building/building.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/docs/source/building/building.rst -------------------------------------------------------------------------------- /docs/source/building/hpc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/docs/source/building/hpc.rst -------------------------------------------------------------------------------- /docs/source/building/platforms/booster_jsc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/docs/source/building/platforms/booster_jsc.rst -------------------------------------------------------------------------------- /docs/source/building/platforms/lumi_csc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/docs/source/building/platforms/lumi_csc.rst -------------------------------------------------------------------------------- /docs/source/building/platforms/maxwell_desy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/docs/source/building/platforms/maxwell_desy.rst -------------------------------------------------------------------------------- /docs/source/building/platforms/perlmutter_nersc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/docs/source/building/platforms/perlmutter_nersc.rst -------------------------------------------------------------------------------- /docs/source/building/spack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/docs/source/building/spack.svg -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/contributing/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/docs/source/contributing/contributing.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/run/chat.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/docs/source/run/chat.rst -------------------------------------------------------------------------------- /docs/source/run/get_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/docs/source/run/get_started.rst -------------------------------------------------------------------------------- /docs/source/run/inputs_lwfa.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/docs/source/run/inputs_lwfa.rst -------------------------------------------------------------------------------- /docs/source/run/inputs_pwfa.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/docs/source/run/inputs_pwfa.rst -------------------------------------------------------------------------------- /docs/source/run/parameters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/docs/source/run/parameters.rst -------------------------------------------------------------------------------- /docs/source/visualize/visualization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/docs/source/visualize/visualization.rst -------------------------------------------------------------------------------- /examples/beam_in_vacuum/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/beam_in_vacuum/analysis.py -------------------------------------------------------------------------------- /examples/beam_in_vacuum/analysis_2ranks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/beam_in_vacuum/analysis_2ranks.py -------------------------------------------------------------------------------- /examples/beam_in_vacuum/analysis_RR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/beam_in_vacuum/analysis_RR.py -------------------------------------------------------------------------------- /examples/beam_in_vacuum/analysis_adaptive_ts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/beam_in_vacuum/analysis_adaptive_ts.py -------------------------------------------------------------------------------- /examples/beam_in_vacuum/analysis_beam_push.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/beam_in_vacuum/analysis_beam_push.py -------------------------------------------------------------------------------- /examples/beam_in_vacuum/analysis_from_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/beam_in_vacuum/analysis_from_file.py -------------------------------------------------------------------------------- /examples/beam_in_vacuum/analysis_grid_current.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/beam_in_vacuum/analysis_grid_current.py -------------------------------------------------------------------------------- /examples/beam_in_vacuum/analysis_open_boundary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/beam_in_vacuum/analysis_open_boundary.py -------------------------------------------------------------------------------- /examples/beam_in_vacuum/analysis_transverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/beam_in_vacuum/analysis_transverse.py -------------------------------------------------------------------------------- /examples/beam_in_vacuum/inputs_RR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/beam_in_vacuum/inputs_RR -------------------------------------------------------------------------------- /examples/beam_in_vacuum/inputs_SI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/beam_in_vacuum/inputs_SI -------------------------------------------------------------------------------- /examples/beam_in_vacuum/inputs_normalized: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/beam_in_vacuum/inputs_normalized -------------------------------------------------------------------------------- /examples/beam_in_vacuum/inputs_normalized_transverse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/beam_in_vacuum/inputs_normalized_transverse -------------------------------------------------------------------------------- /examples/benchmarks/inputs_timestep_benchmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/benchmarks/inputs_timestep_benchmark -------------------------------------------------------------------------------- /examples/benchmarks/inputs_transverse_benchmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/benchmarks/inputs_transverse_benchmark -------------------------------------------------------------------------------- /examples/blowout_wake/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/blowout_wake/analysis.py -------------------------------------------------------------------------------- /examples/blowout_wake/analysis_coarsening.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/blowout_wake/analysis_coarsening.py -------------------------------------------------------------------------------- /examples/blowout_wake/analysis_slice_IO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/blowout_wake/analysis_slice_IO.py -------------------------------------------------------------------------------- /examples/blowout_wake/inputs_SI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/blowout_wake/inputs_SI -------------------------------------------------------------------------------- /examples/blowout_wake/inputs_ionization_SI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/blowout_wake/inputs_ionization_SI -------------------------------------------------------------------------------- /examples/blowout_wake/inputs_normalized: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/blowout_wake/inputs_normalized -------------------------------------------------------------------------------- /examples/gaussian_weight/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/gaussian_weight/analysis.py -------------------------------------------------------------------------------- /examples/gaussian_weight/inputs_SI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/gaussian_weight/inputs_SI -------------------------------------------------------------------------------- /examples/gaussian_weight/inputs_normalized: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/gaussian_weight/inputs_normalized -------------------------------------------------------------------------------- /examples/get_started/inputs_lwfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/get_started/inputs_lwfa -------------------------------------------------------------------------------- /examples/get_started/inputs_mesh_refinement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/get_started/inputs_mesh_refinement -------------------------------------------------------------------------------- /examples/get_started/inputs_normalized: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/get_started/inputs_normalized -------------------------------------------------------------------------------- /examples/get_started/inputs_pwfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/get_started/inputs_pwfa -------------------------------------------------------------------------------- /examples/get_started/notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/get_started/notebook.ipynb -------------------------------------------------------------------------------- /examples/laser/analysis_laser_vacuum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/laser/analysis_laser_vacuum.py -------------------------------------------------------------------------------- /examples/laser/inputs_SI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/laser/inputs_SI -------------------------------------------------------------------------------- /examples/laser_STC/analysis_laser_STC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/laser_STC/analysis_laser_STC.py -------------------------------------------------------------------------------- /examples/laser_STC/inputs_STC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/laser_STC/inputs_STC -------------------------------------------------------------------------------- /examples/laser_ionization/analysis_laser_ionization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/laser_ionization/analysis_laser_ionization.py -------------------------------------------------------------------------------- /examples/laser_ionization/inputs_laser_ionization: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/laser_ionization/inputs_laser_ionization -------------------------------------------------------------------------------- /examples/linear_wake/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/linear_wake/analysis.py -------------------------------------------------------------------------------- /examples/linear_wake/analysis_equal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/linear_wake/analysis_equal.py -------------------------------------------------------------------------------- /examples/linear_wake/inputs_SI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/linear_wake/inputs_SI -------------------------------------------------------------------------------- /examples/linear_wake/inputs_ion_motion_SI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/linear_wake/inputs_ion_motion_SI -------------------------------------------------------------------------------- /examples/linear_wake/inputs_normalized: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/linear_wake/inputs_normalized -------------------------------------------------------------------------------- /examples/plasma_initialization/inputs_SI_plasma_from_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/examples/plasma_initialization/inputs_SI_plasma_from_file -------------------------------------------------------------------------------- /legal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/legal.txt -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/license.txt -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Hipace.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/Hipace.H -------------------------------------------------------------------------------- /src/Hipace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/Hipace.cpp -------------------------------------------------------------------------------- /src/HipaceVersion.H.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/HipaceVersion.H.in -------------------------------------------------------------------------------- /src/HipaceVersion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/HipaceVersion.cpp -------------------------------------------------------------------------------- /src/diagnostics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/diagnostics/CMakeLists.txt -------------------------------------------------------------------------------- /src/diagnostics/Diagnostic.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/diagnostics/Diagnostic.H -------------------------------------------------------------------------------- /src/diagnostics/Diagnostic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/diagnostics/Diagnostic.cpp -------------------------------------------------------------------------------- /src/diagnostics/OpenPMDWriter.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/diagnostics/OpenPMDWriter.H -------------------------------------------------------------------------------- /src/diagnostics/OpenPMDWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/diagnostics/OpenPMDWriter.cpp -------------------------------------------------------------------------------- /src/fields/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/fields/CMakeLists.txt -------------------------------------------------------------------------------- /src/fields/Fields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/fields/Fields.H -------------------------------------------------------------------------------- /src/fields/Fields.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/fields/Fields.cpp -------------------------------------------------------------------------------- /src/fields/OpenBoundary.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/fields/OpenBoundary.H -------------------------------------------------------------------------------- /src/fields/fft_poisson_solver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/fields/fft_poisson_solver/CMakeLists.txt -------------------------------------------------------------------------------- /src/fields/fft_poisson_solver/FFTPoissonSolver.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/fields/fft_poisson_solver/FFTPoissonSolver.H -------------------------------------------------------------------------------- /src/fields/fft_poisson_solver/FFTPoissonSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/fields/fft_poisson_solver/FFTPoissonSolver.cpp -------------------------------------------------------------------------------- /src/fields/fft_poisson_solver/FFTPoissonSolverDirichletDirect.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/fields/fft_poisson_solver/FFTPoissonSolverDirichletDirect.H -------------------------------------------------------------------------------- /src/fields/fft_poisson_solver/FFTPoissonSolverDirichletDirect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/fields/fft_poisson_solver/FFTPoissonSolverDirichletDirect.cpp -------------------------------------------------------------------------------- /src/fields/fft_poisson_solver/FFTPoissonSolverDirichletExpanded.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/fields/fft_poisson_solver/FFTPoissonSolverDirichletExpanded.H -------------------------------------------------------------------------------- /src/fields/fft_poisson_solver/FFTPoissonSolverDirichletExpanded.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/fields/fft_poisson_solver/FFTPoissonSolverDirichletExpanded.cpp -------------------------------------------------------------------------------- /src/fields/fft_poisson_solver/FFTPoissonSolverDirichletFast.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/fields/fft_poisson_solver/FFTPoissonSolverDirichletFast.H -------------------------------------------------------------------------------- /src/fields/fft_poisson_solver/FFTPoissonSolverDirichletFast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/fields/fft_poisson_solver/FFTPoissonSolverDirichletFast.cpp -------------------------------------------------------------------------------- /src/fields/fft_poisson_solver/FFTPoissonSolverPeriodic.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/fields/fft_poisson_solver/FFTPoissonSolverPeriodic.H -------------------------------------------------------------------------------- /src/fields/fft_poisson_solver/FFTPoissonSolverPeriodic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/fields/fft_poisson_solver/FFTPoissonSolverPeriodic.cpp -------------------------------------------------------------------------------- /src/fields/fft_poisson_solver/MGPoissonSolverDirichlet.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/fields/fft_poisson_solver/MGPoissonSolverDirichlet.H -------------------------------------------------------------------------------- /src/fields/fft_poisson_solver/MGPoissonSolverDirichlet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/fields/fft_poisson_solver/MGPoissonSolverDirichlet.cpp -------------------------------------------------------------------------------- /src/fields/fft_poisson_solver/fft/AnyFFT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/fields/fft_poisson_solver/fft/AnyFFT.H -------------------------------------------------------------------------------- /src/fields/fft_poisson_solver/fft/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/fields/fft_poisson_solver/fft/CMakeLists.txt -------------------------------------------------------------------------------- /src/fields/fft_poisson_solver/fft/WrapCuFFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/fields/fft_poisson_solver/fft/WrapCuFFT.cpp -------------------------------------------------------------------------------- /src/fields/fft_poisson_solver/fft/WrapFFTW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/fields/fft_poisson_solver/fft/WrapFFTW.cpp -------------------------------------------------------------------------------- /src/fields/fft_poisson_solver/fft/WrapRocFFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/fields/fft_poisson_solver/fft/WrapRocFFT.cpp -------------------------------------------------------------------------------- /src/laser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/laser/CMakeLists.txt -------------------------------------------------------------------------------- /src/laser/Laser.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/laser/Laser.H -------------------------------------------------------------------------------- /src/laser/Laser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/laser/Laser.cpp -------------------------------------------------------------------------------- /src/laser/MultiLaser.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/laser/MultiLaser.H -------------------------------------------------------------------------------- /src/laser/MultiLaser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/laser/MultiLaser.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/mg_solver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/mg_solver/CMakeLists.txt -------------------------------------------------------------------------------- /src/mg_solver/HpMultiGrid.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/mg_solver/HpMultiGrid.H -------------------------------------------------------------------------------- /src/mg_solver/HpMultiGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/mg_solver/HpMultiGrid.cpp -------------------------------------------------------------------------------- /src/particles/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/CMakeLists.txt -------------------------------------------------------------------------------- /src/particles/beam/BeamParticleContainer.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/beam/BeamParticleContainer.H -------------------------------------------------------------------------------- /src/particles/beam/BeamParticleContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/beam/BeamParticleContainer.cpp -------------------------------------------------------------------------------- /src/particles/beam/BeamParticleContainerInit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/beam/BeamParticleContainerInit.cpp -------------------------------------------------------------------------------- /src/particles/beam/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/beam/CMakeLists.txt -------------------------------------------------------------------------------- /src/particles/beam/MultiBeam.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/beam/MultiBeam.H -------------------------------------------------------------------------------- /src/particles/beam/MultiBeam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/beam/MultiBeam.cpp -------------------------------------------------------------------------------- /src/particles/collisions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/collisions/CMakeLists.txt -------------------------------------------------------------------------------- /src/particles/collisions/ComputeTemperature.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/collisions/ComputeTemperature.H -------------------------------------------------------------------------------- /src/particles/collisions/CoulombCollision.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/collisions/CoulombCollision.H -------------------------------------------------------------------------------- /src/particles/collisions/CoulombCollision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/collisions/CoulombCollision.cpp -------------------------------------------------------------------------------- /src/particles/collisions/ElasticCollisionPerez.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/collisions/ElasticCollisionPerez.H -------------------------------------------------------------------------------- /src/particles/collisions/ShuffleFisherYates.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/collisions/ShuffleFisherYates.H -------------------------------------------------------------------------------- /src/particles/collisions/UpdateMomentumPerez.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/collisions/UpdateMomentumPerez.H -------------------------------------------------------------------------------- /src/particles/deposition/BeamDepositCurrent.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/deposition/BeamDepositCurrent.H -------------------------------------------------------------------------------- /src/particles/deposition/BeamDepositCurrent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/deposition/BeamDepositCurrent.cpp -------------------------------------------------------------------------------- /src/particles/deposition/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/deposition/CMakeLists.txt -------------------------------------------------------------------------------- /src/particles/deposition/DepositionUtil.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/deposition/DepositionUtil.H -------------------------------------------------------------------------------- /src/particles/deposition/ExplicitDeposition.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/deposition/ExplicitDeposition.H -------------------------------------------------------------------------------- /src/particles/deposition/ExplicitDeposition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/deposition/ExplicitDeposition.cpp -------------------------------------------------------------------------------- /src/particles/deposition/PlasmaDepositCurrent.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/deposition/PlasmaDepositCurrent.H -------------------------------------------------------------------------------- /src/particles/deposition/PlasmaDepositCurrent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/deposition/PlasmaDepositCurrent.cpp -------------------------------------------------------------------------------- /src/particles/deposition/TemperatureDeposition.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/deposition/TemperatureDeposition.H -------------------------------------------------------------------------------- /src/particles/deposition/TemperatureDeposition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/deposition/TemperatureDeposition.cpp -------------------------------------------------------------------------------- /src/particles/particles_utils/FieldGather.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/particles_utils/FieldGather.H -------------------------------------------------------------------------------- /src/particles/particles_utils/ParticleUtil.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/particles_utils/ParticleUtil.H -------------------------------------------------------------------------------- /src/particles/particles_utils/ShapeFactors.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/particles_utils/ShapeFactors.H -------------------------------------------------------------------------------- /src/particles/plasma/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/plasma/CMakeLists.txt -------------------------------------------------------------------------------- /src/particles/plasma/MultiPlasma.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/plasma/MultiPlasma.H -------------------------------------------------------------------------------- /src/particles/plasma/MultiPlasma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/plasma/MultiPlasma.cpp -------------------------------------------------------------------------------- /src/particles/plasma/PlasmaParticleContainer.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/plasma/PlasmaParticleContainer.H -------------------------------------------------------------------------------- /src/particles/plasma/PlasmaParticleContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/plasma/PlasmaParticleContainer.cpp -------------------------------------------------------------------------------- /src/particles/plasma/PlasmaParticleContainerInit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/plasma/PlasmaParticleContainerInit.cpp -------------------------------------------------------------------------------- /src/particles/profiles/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/profiles/CMakeLists.txt -------------------------------------------------------------------------------- /src/particles/profiles/GetInitialDensity.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/profiles/GetInitialDensity.H -------------------------------------------------------------------------------- /src/particles/profiles/GetInitialDensity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/profiles/GetInitialDensity.cpp -------------------------------------------------------------------------------- /src/particles/profiles/GetInitialMomentum.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/profiles/GetInitialMomentum.H -------------------------------------------------------------------------------- /src/particles/profiles/GetInitialMomentum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/profiles/GetInitialMomentum.cpp -------------------------------------------------------------------------------- /src/particles/pusher/BeamParticleAdvance.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/pusher/BeamParticleAdvance.H -------------------------------------------------------------------------------- /src/particles/pusher/BeamParticleAdvance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/pusher/BeamParticleAdvance.cpp -------------------------------------------------------------------------------- /src/particles/pusher/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/pusher/CMakeLists.txt -------------------------------------------------------------------------------- /src/particles/pusher/ExternalFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/pusher/ExternalFields.H -------------------------------------------------------------------------------- /src/particles/pusher/GetAndSetPosition.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/pusher/GetAndSetPosition.H -------------------------------------------------------------------------------- /src/particles/pusher/PlasmaParticleAdvance.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/pusher/PlasmaParticleAdvance.H -------------------------------------------------------------------------------- /src/particles/pusher/PlasmaParticleAdvance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/pusher/PlasmaParticleAdvance.cpp -------------------------------------------------------------------------------- /src/particles/pusher/PushPlasmaParticles.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/pusher/PushPlasmaParticles.H -------------------------------------------------------------------------------- /src/particles/sorting/BoxSort.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/sorting/BoxSort.H -------------------------------------------------------------------------------- /src/particles/sorting/BoxSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/sorting/BoxSort.cpp -------------------------------------------------------------------------------- /src/particles/sorting/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/sorting/CMakeLists.txt -------------------------------------------------------------------------------- /src/particles/sorting/SliceSort.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/sorting/SliceSort.H -------------------------------------------------------------------------------- /src/particles/sorting/SliceSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/sorting/SliceSort.cpp -------------------------------------------------------------------------------- /src/particles/sorting/TileSort.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/sorting/TileSort.H -------------------------------------------------------------------------------- /src/particles/sorting/TileSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/particles/sorting/TileSort.cpp -------------------------------------------------------------------------------- /src/salame/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/salame/CMakeLists.txt -------------------------------------------------------------------------------- /src/salame/Salame.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/salame/Salame.H -------------------------------------------------------------------------------- /src/salame/Salame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/salame/Salame.cpp -------------------------------------------------------------------------------- /src/utils/AdaptiveTimeStep.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/utils/AdaptiveTimeStep.H -------------------------------------------------------------------------------- /src/utils/AdaptiveTimeStep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/utils/AdaptiveTimeStep.cpp -------------------------------------------------------------------------------- /src/utils/AtomicWeightTable.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/utils/AtomicWeightTable.H -------------------------------------------------------------------------------- /src/utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/utils/CMakeLists.txt -------------------------------------------------------------------------------- /src/utils/Constants.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/utils/Constants.H -------------------------------------------------------------------------------- /src/utils/Constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/utils/Constants.cpp -------------------------------------------------------------------------------- /src/utils/DeprecatedInput.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/utils/DeprecatedInput.H -------------------------------------------------------------------------------- /src/utils/DualNumbers.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/utils/DualNumbers.H -------------------------------------------------------------------------------- /src/utils/GPUUtil.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/utils/GPUUtil.H -------------------------------------------------------------------------------- /src/utils/GridCurrent.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/utils/GridCurrent.H -------------------------------------------------------------------------------- /src/utils/GridCurrent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/utils/GridCurrent.cpp -------------------------------------------------------------------------------- /src/utils/HipaceProfilerWrapper.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/utils/HipaceProfilerWrapper.H -------------------------------------------------------------------------------- /src/utils/IOUtil.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/utils/IOUtil.H -------------------------------------------------------------------------------- /src/utils/IOUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/utils/IOUtil.cpp -------------------------------------------------------------------------------- /src/utils/InsituUtil.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/utils/InsituUtil.H -------------------------------------------------------------------------------- /src/utils/IonizationEnergiesTable.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/utils/IonizationEnergiesTable.H -------------------------------------------------------------------------------- /src/utils/MakeOpenBoundary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/utils/MakeOpenBoundary.py -------------------------------------------------------------------------------- /src/utils/MultiBuffer.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/utils/MultiBuffer.H -------------------------------------------------------------------------------- /src/utils/MultiBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/utils/MultiBuffer.cpp -------------------------------------------------------------------------------- /src/utils/OMPUtil.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/utils/OMPUtil.H -------------------------------------------------------------------------------- /src/utils/Parser.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/utils/Parser.H -------------------------------------------------------------------------------- /src/utils/Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/utils/Parser.cpp -------------------------------------------------------------------------------- /src/utils/write_atomic_data_cpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/utils/write_atomic_data_cpp.py -------------------------------------------------------------------------------- /src/utils/write_atomic_weight_cpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/src/utils/write_atomic_weight_cpp.py -------------------------------------------------------------------------------- /tests/adaptive_time_step.1Rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/adaptive_time_step.1Rank.sh -------------------------------------------------------------------------------- /tests/beam_evolution.1Rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/beam_evolution.1Rank.sh -------------------------------------------------------------------------------- /tests/beam_in_vacuum.SI.1Rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/beam_in_vacuum.SI.1Rank.sh -------------------------------------------------------------------------------- /tests/beam_in_vacuum.SI.Serial.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/beam_in_vacuum.SI.Serial.sh -------------------------------------------------------------------------------- /tests/beam_in_vacuum.normalized.1Rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/beam_in_vacuum.normalized.1Rank.sh -------------------------------------------------------------------------------- /tests/beam_in_vacuum.normalized.2Rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/beam_in_vacuum.normalized.2Rank.sh -------------------------------------------------------------------------------- /tests/beam_in_vacuum.normalized.Serial.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/beam_in_vacuum.normalized.Serial.sh -------------------------------------------------------------------------------- /tests/beam_in_vacuum_open_boundary.normalized.1Rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/beam_in_vacuum_open_boundary.normalized.1Rank.sh -------------------------------------------------------------------------------- /tests/blowout_wake.2Rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/blowout_wake.2Rank.sh -------------------------------------------------------------------------------- /tests/blowout_wake.Serial.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/blowout_wake.Serial.sh -------------------------------------------------------------------------------- /tests/blowout_wake_explicit.2Rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/blowout_wake_explicit.2Rank.sh -------------------------------------------------------------------------------- /tests/checksum/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/checksum/backend/amrex_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/backend/amrex_backend.py -------------------------------------------------------------------------------- /tests/checksum/backend/openpmd_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/backend/openpmd_backend.py -------------------------------------------------------------------------------- /tests/checksum/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/benchmark.py -------------------------------------------------------------------------------- /tests/checksum/benchmarks_json/adaptive_time_step.1Rank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/benchmarks_json/adaptive_time_step.1Rank.json -------------------------------------------------------------------------------- /tests/checksum/benchmarks_json/beam_evolution.1Rank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/benchmarks_json/beam_evolution.1Rank.json -------------------------------------------------------------------------------- /tests/checksum/benchmarks_json/beam_in_vacuum.SI.1Rank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/benchmarks_json/beam_in_vacuum.SI.1Rank.json -------------------------------------------------------------------------------- /tests/checksum/benchmarks_json/beam_in_vacuum.SI.Serial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/benchmarks_json/beam_in_vacuum.SI.Serial.json -------------------------------------------------------------------------------- /tests/checksum/benchmarks_json/beam_in_vacuum.normalized.1Rank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/benchmarks_json/beam_in_vacuum.normalized.1Rank.json -------------------------------------------------------------------------------- /tests/checksum/benchmarks_json/beam_in_vacuum.normalized.Serial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/benchmarks_json/beam_in_vacuum.normalized.Serial.json -------------------------------------------------------------------------------- /tests/checksum/benchmarks_json/beam_in_vacuum_open_boundary.normalized.1Rank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/benchmarks_json/beam_in_vacuum_open_boundary.normalized.1Rank.json -------------------------------------------------------------------------------- /tests/checksum/benchmarks_json/blowout_wake.2Rank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/benchmarks_json/blowout_wake.2Rank.json -------------------------------------------------------------------------------- /tests/checksum/benchmarks_json/blowout_wake.Serial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/benchmarks_json/blowout_wake.Serial.json -------------------------------------------------------------------------------- /tests/checksum/benchmarks_json/blowout_wake_explicit.2Rank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/benchmarks_json/blowout_wake_explicit.2Rank.json -------------------------------------------------------------------------------- /tests/checksum/benchmarks_json/collisions.SI.1Rank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/benchmarks_json/collisions.SI.1Rank.json -------------------------------------------------------------------------------- /tests/checksum/benchmarks_json/collisions_beam.SI.1Rank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/benchmarks_json/collisions_beam.SI.1Rank.json -------------------------------------------------------------------------------- /tests/checksum/benchmarks_json/gaussian_linear_wake.SI.1Rank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/benchmarks_json/gaussian_linear_wake.SI.1Rank.json -------------------------------------------------------------------------------- /tests/checksum/benchmarks_json/gaussian_linear_wake.normalized.1Rank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/benchmarks_json/gaussian_linear_wake.normalized.1Rank.json -------------------------------------------------------------------------------- /tests/checksum/benchmarks_json/gaussian_weight.1Rank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/benchmarks_json/gaussian_weight.1Rank.json -------------------------------------------------------------------------------- /tests/checksum/benchmarks_json/grid_current.1Rank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/benchmarks_json/grid_current.1Rank.json -------------------------------------------------------------------------------- /tests/checksum/benchmarks_json/hosing.2Rank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/benchmarks_json/hosing.2Rank.json -------------------------------------------------------------------------------- /tests/checksum/benchmarks_json/ion_motion.SI.1Rank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/benchmarks_json/ion_motion.SI.1Rank.json -------------------------------------------------------------------------------- /tests/checksum/benchmarks_json/ionization.2Rank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/benchmarks_json/ionization.2Rank.json -------------------------------------------------------------------------------- /tests/checksum/benchmarks_json/laser_blowout_wake_explicit.1Rank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/benchmarks_json/laser_blowout_wake_explicit.1Rank.json -------------------------------------------------------------------------------- /tests/checksum/benchmarks_json/laser_blowout_wake_explicit.SI.1Rank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/benchmarks_json/laser_blowout_wake_explicit.SI.1Rank.json -------------------------------------------------------------------------------- /tests/checksum/benchmarks_json/laser_evolution.SI.2Rank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/benchmarks_json/laser_evolution.SI.2Rank.json -------------------------------------------------------------------------------- /tests/checksum/benchmarks_json/laser_ionization.1Rank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/benchmarks_json/laser_ionization.1Rank.json -------------------------------------------------------------------------------- /tests/checksum/benchmarks_json/linear_wake.SI.1Rank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/benchmarks_json/linear_wake.SI.1Rank.json -------------------------------------------------------------------------------- /tests/checksum/benchmarks_json/linear_wake.normalized.1Rank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/benchmarks_json/linear_wake.normalized.1Rank.json -------------------------------------------------------------------------------- /tests/checksum/benchmarks_json/mesh_refinement.SI.2Rank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/benchmarks_json/mesh_refinement.SI.2Rank.json -------------------------------------------------------------------------------- /tests/checksum/benchmarks_json/plasma_density_from_file.SI.1Rank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/benchmarks_json/plasma_density_from_file.SI.1Rank.json -------------------------------------------------------------------------------- /tests/checksum/benchmarks_json/production_lwfa.SI.2Rank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/benchmarks_json/production_lwfa.SI.2Rank.json -------------------------------------------------------------------------------- /tests/checksum/benchmarks_json/production_pwfa.SI.2Rank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/benchmarks_json/production_pwfa.SI.2Rank.json -------------------------------------------------------------------------------- /tests/checksum/benchmarks_json/radiation_reaction.1Rank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/benchmarks_json/radiation_reaction.1Rank.json -------------------------------------------------------------------------------- /tests/checksum/benchmarks_json/reset.1Rank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/benchmarks_json/reset.1Rank.json -------------------------------------------------------------------------------- /tests/checksum/benchmarks_json/reset.2Rank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/benchmarks_json/reset.2Rank.json -------------------------------------------------------------------------------- /tests/checksum/benchmarks_json/transverse_benchmark.1Rank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/benchmarks_json/transverse_benchmark.1Rank.json -------------------------------------------------------------------------------- /tests/checksum/checksum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/checksum.py -------------------------------------------------------------------------------- /tests/checksum/checksumAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/checksumAPI.py -------------------------------------------------------------------------------- /tests/checksum/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/checksum/config.py -------------------------------------------------------------------------------- /tests/collisions.SI.1Rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/collisions.SI.1Rank.sh -------------------------------------------------------------------------------- /tests/collisions_beam.SI.1Rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/collisions_beam.SI.1Rank.sh -------------------------------------------------------------------------------- /tests/from_file.SI.1Rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/from_file.SI.1Rank.sh -------------------------------------------------------------------------------- /tests/from_file.normalized.1Rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/from_file.normalized.1Rank.sh -------------------------------------------------------------------------------- /tests/gaussian_linear_wake.SI.1Rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/gaussian_linear_wake.SI.1Rank.sh -------------------------------------------------------------------------------- /tests/gaussian_linear_wake.normalized.1Rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/gaussian_linear_wake.normalized.1Rank.sh -------------------------------------------------------------------------------- /tests/gaussian_weight.1Rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/gaussian_weight.1Rank.sh -------------------------------------------------------------------------------- /tests/grid_current.1Rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/grid_current.1Rank.sh -------------------------------------------------------------------------------- /tests/hosing.2Rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/hosing.2Rank.sh -------------------------------------------------------------------------------- /tests/ion_motion.SI.1Rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/ion_motion.SI.1Rank.sh -------------------------------------------------------------------------------- /tests/ionization.2Rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/ionization.2Rank.sh -------------------------------------------------------------------------------- /tests/laser_STC.1Rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/laser_STC.1Rank.sh -------------------------------------------------------------------------------- /tests/laser_blowout_wake_explicit.1Rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/laser_blowout_wake_explicit.1Rank.sh -------------------------------------------------------------------------------- /tests/laser_blowout_wake_explicit.SI.1Rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/laser_blowout_wake_explicit.SI.1Rank.sh -------------------------------------------------------------------------------- /tests/laser_evolution.SI.2Rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/laser_evolution.SI.2Rank.sh -------------------------------------------------------------------------------- /tests/laser_ionization.1Rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/laser_ionization.1Rank.sh -------------------------------------------------------------------------------- /tests/linear_wake.SI.1Rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/linear_wake.SI.1Rank.sh -------------------------------------------------------------------------------- /tests/linear_wake.normalized.1Rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/linear_wake.normalized.1Rank.sh -------------------------------------------------------------------------------- /tests/mesh_refinement.SI.2Rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/mesh_refinement.SI.2Rank.sh -------------------------------------------------------------------------------- /tests/next_deposition_beam.2Rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/next_deposition_beam.2Rank.sh -------------------------------------------------------------------------------- /tests/output_coarsening.2Rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/output_coarsening.2Rank.sh -------------------------------------------------------------------------------- /tests/plasma_density_from_file.SI.1Rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/plasma_density_from_file.SI.1Rank.sh -------------------------------------------------------------------------------- /tests/production_lwfa.SI.2Rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/production_lwfa.SI.2Rank.sh -------------------------------------------------------------------------------- /tests/production_pwfa.SI.2Rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/production_pwfa.SI.2Rank.sh -------------------------------------------------------------------------------- /tests/radiation_reaction.1Rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/radiation_reaction.1Rank.sh -------------------------------------------------------------------------------- /tests/reset.2Rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/reset.2Rank.sh -------------------------------------------------------------------------------- /tests/restart.normalized.1Rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/restart.normalized.1Rank.sh -------------------------------------------------------------------------------- /tests/slice_IO.1Rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/slice_IO.1Rank.sh -------------------------------------------------------------------------------- /tests/transverse_benchmark.1Rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tests/transverse_benchmark.1Rank.sh -------------------------------------------------------------------------------- /tools/convert_hipace_to_hipace++_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tools/convert_hipace_to_hipace++_file.py -------------------------------------------------------------------------------- /tools/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tools/pyproject.toml -------------------------------------------------------------------------------- /tools/read_insitu_diagnostics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tools/read_insitu_diagnostics.py -------------------------------------------------------------------------------- /tools/runClangTidy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tools/runClangTidy.sh -------------------------------------------------------------------------------- /tools/write_beam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tools/write_beam.py -------------------------------------------------------------------------------- /tools/write_plasma_density.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tools/write_plasma_density.py -------------------------------------------------------------------------------- /tools/write_plasma_density_rz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hi-PACE/hipace/HEAD/tools/write_plasma_density_rz.py --------------------------------------------------------------------------------