forked from ECP-WarpX/WarpX
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Time-Averaged Field Diagnostics (ECP-WarpX#5285)
This PR adds time-averaged field diagnostics to the WarpX output. To-do: - [x] code - [x] docs - [x] tests - [x] example Follow-up PRs: - meta-data - make compatible with adaptive time stepping This PR is based on work performed during the *2024 WarpX Refactoring Hackathon* and was created together with @RevathiJambunathan. Successfully merging this pull request may close ECP-WarpX#5165. --------- Co-authored-by: RevathiJambunathan <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Edoardo Zoni <[email protected]> Co-authored-by: Edoardo Zoni <[email protected]>
- Loading branch information
1 parent
d34cc6c
commit a25faff
Showing
21 changed files
with
507 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
Examples/Physics_applications/laser_ion/analysis_default_openpmd_regression.py
This file was deleted.
Oops, something went wrong.
85 changes: 85 additions & 0 deletions
85
Examples/Physics_applications/laser_ion/analysis_test_laser_ion.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
#!/usr/bin/env python3 | ||
|
||
import os | ||
import sys | ||
|
||
import numpy as np | ||
import openpmd_api as io | ||
|
||
sys.path.insert(1, "../../../../warpx/Regression/Checksum/") | ||
from checksumAPI import evaluate_checksum | ||
|
||
|
||
def load_field_from_iteration( | ||
series, iteration: int, field: str, coord: str = None | ||
) -> np.ndarray: | ||
"""Load iteration of field data from file.""" | ||
|
||
it = series.iterations[iteration] | ||
field_obj = it.meshes[f"{field}"] | ||
|
||
if field_obj.scalar: | ||
field_data = field_obj[io.Mesh_Record_Component.SCALAR].load_chunk() | ||
elif coord in [item[0] for item in list(field_obj.items())]: | ||
field_data = field_obj[coord].load_chunk() | ||
else: | ||
raise Exception( | ||
f"Specified coordinate: f{coord} is not available for field: f{field}." | ||
) | ||
series.flush() | ||
|
||
return field_data | ||
|
||
|
||
def compare_time_avg_with_instantaneous_diags(dir_inst: str, dir_avg: str): | ||
"""Compare instantaneous data (multiple iterations averaged in post-processing) with in-situ averaged data.""" | ||
|
||
field = "E" | ||
coord = "z" | ||
avg_period_steps = 5 | ||
avg_output_step = 100 | ||
|
||
path_tpl_inst = f"{dir_inst}/openpmd_%T.h5" | ||
path_tpl_avg = f"{dir_avg}/openpmd_%T.h5" | ||
|
||
si = io.Series(path_tpl_inst, io.Access.read_only) | ||
sa = io.Series(path_tpl_avg, io.Access.read_only) | ||
|
||
ii0 = si.iterations[0] | ||
fi0 = ii0.meshes[field][coord] | ||
shape = fi0.shape | ||
|
||
data_inst = np.zeros(shape) | ||
|
||
for i in np.arange(avg_output_step - avg_period_steps + 1, avg_output_step + 1): | ||
data_inst += load_field_from_iteration(si, i, field, coord) | ||
|
||
data_inst = data_inst / avg_period_steps | ||
|
||
data_avg = load_field_from_iteration(sa, avg_output_step, field, coord) | ||
|
||
# Compare the data | ||
if np.allclose(data_inst, data_avg, rtol=1e-12): | ||
print("Test passed: actual data is close to expected data.") | ||
else: | ||
print("Test failed: actual data is not close to expected data.") | ||
sys.exit(1) | ||
|
||
|
||
if __name__ == "__main__": | ||
# NOTE: works only in the example directory due to relative path import | ||
# compare checksums | ||
evaluate_checksum( | ||
test_name=os.path.split(os.getcwd())[1], | ||
output_file=sys.argv[1], | ||
output_format="openpmd", | ||
) | ||
|
||
# TODO: implement intervals parser for PICMI that allows more complex output periods | ||
test_name = os.path.split(os.getcwd())[1] | ||
if "picmi" not in test_name: | ||
# Functionality test for TimeAveragedDiagnostics | ||
compare_time_avg_with_instantaneous_diags( | ||
dir_inst=sys.argv[1], | ||
dir_avg="diags/diagTimeAvg/", | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.