aboutsummaryrefslogtreecommitdiff
path: root/Examples/Tests/photon_pusher/analysis_photon_pusher.py
diff options
context:
space:
mode:
authorGravatar Davide Terzani <titoiride@gmail.com> 2023-02-21 09:05:16 -0800
committerGravatar GitHub <noreply@github.com> 2023-02-21 09:05:16 -0800
commit8f31cea2a47749ca697b64a93837842f990312ed (patch)
tree155ec4b9d31063b407797203c2fa7202117ecd4c /Examples/Tests/photon_pusher/analysis_photon_pusher.py
parent7eae30870646a2efbdf9164d46c75e540251e5f0 (diff)
downloadWarpX-8f31cea2a47749ca697b64a93837842f990312ed.tar.gz
WarpX-8f31cea2a47749ca697b64a93837842f990312ed.tar.zst
WarpX-8f31cea2a47749ca697b64a93837842f990312ed.zip
Renamed "particle_vel" to "particle_mom" (#3672)
* Renamed particle_vel to particle_mom * Changed vel to u * Updated gitignore with vscode-specific folder * Updated docs for single particle * Revert "Updated gitignore with vscode-specific folder" This reverts commit cb44ef8d66c123daa93d6a13d5a1d88416e866bb. * Fixed typo * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Fixed other typo * Add species indication in warning --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Diffstat (limited to 'Examples/Tests/photon_pusher/analysis_photon_pusher.py')
-rwxr-xr-xExamples/Tests/photon_pusher/analysis_photon_pusher.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Examples/Tests/photon_pusher/analysis_photon_pusher.py b/Examples/Tests/photon_pusher/analysis_photon_pusher.py
index 92d1e95f7..7518bd5ad 100755
--- a/Examples/Tests/photon_pusher/analysis_photon_pusher.py
+++ b/Examples/Tests/photon_pusher/analysis_photon_pusher.py
@@ -149,7 +149,7 @@ def generate():
f.write('{}.injection_style = "SingleParticle"\n'.format(name))
f.write("{}.single_particle_pos = {} {} {}\n".
format(name, init_pos[0], init_pos[1], init_pos[2]))
- f.write("{}.single_particle_vel = {} {} {}\n".
+ f.write("{}.single_particle_u = {} {} {}\n".
format(name, velx, vely, velz))
f.write("{}.single_particle_weight = 1.0\n".format(name))
f.write("\n".format(name))