diff options
Diffstat (limited to 'Examples/Modules/embedded_boundary_python_API/analysis.py')
-rw-r--r-- | Examples/Modules/embedded_boundary_python_API/analysis.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Examples/Modules/embedded_boundary_python_API/analysis.py b/Examples/Modules/embedded_boundary_python_API/analysis.py new file mode 100644 index 000000000..b6b2955cf --- /dev/null +++ b/Examples/Modules/embedded_boundary_python_API/analysis.py @@ -0,0 +1,10 @@ +#! /usr/bin/env python + +# This script just checks that the PICMI file executed successfully. +# If it did there will be a plotfile for the final step. + +import sys + +step = int(sys.argv[1][-5:]) + +assert step == 2 |