diff options
Diffstat (limited to 'Examples/Tests/boundaries/analysis.py')
-rwxr-xr-x | Examples/Tests/boundaries/analysis.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Examples/Tests/boundaries/analysis.py b/Examples/Tests/boundaries/analysis.py index ca86d6b8b..0a879bb83 100755 --- a/Examples/Tests/boundaries/analysis.py +++ b/Examples/Tests/boundaries/analysis.py @@ -14,11 +14,13 @@ along each of the three axis. It launches particles heading toward each of the b and checks that they end up in the correct place (or are deleted). """ +import os import sys -import yt + import numpy as np -import os -from scipy.constants import m_e, c +from scipy.constants import c, m_e +import yt + yt.funcs.mylog.setLevel(0) sys.path.insert(1, '../../../../warpx/Regression/Checksum/') import checksumAPI |