diff options
author | 2023-02-27 13:04:58 -0800 | |
---|---|---|
committer | 2023-02-27 21:04:58 +0000 | |
commit | 3ac71fef9b83a3c3f94a93b492aec58329b546cc (patch) | |
tree | 53393c94f21b046bf777efeee1c55dc632c6956e /Source/Diagnostics/Diagnostics.cpp | |
parent | ce188a26a22c99f5c4b297c9ffab6fc3c5c0e180 (diff) | |
download | WarpX-3ac71fef9b83a3c3f94a93b492aec58329b546cc.tar.gz WarpX-3ac71fef9b83a3c3f94a93b492aec58329b546cc.tar.zst WarpX-3ac71fef9b83a3c3f94a93b492aec58329b546cc.zip |
Change plotfile RZ allowed diags to r,t from x,y (#3663)
* change plotfile RZ allowed diag to r,t from x,y
* Change labeling in checksums
* add rz silver mueller analysis script
* make analysis_silver_mueller_rz.py executable
* change x,y fields to r,t in more tests
* x->r in MR RZ checksums
* correct analysis for plotfiles saved as 'boxlib'
* add self to creator list
* change rz diags in PICMI
* correct PICMI changes
* another y->t in an rz test
* update picmi plotfile rz btd names
* review suggestion to condense analysis
* Apply suggestions from code review
Co-authored-by: Edoardo Zoni <59625522+EZoni@users.noreply.github.com>
* Apply suggestions from code review
Co-authored-by: Edoardo Zoni <59625522+EZoni@users.noreply.github.com>
---------
Co-authored-by: Remi Lehe <remi.lehe@normalesup.org>
Co-authored-by: Edoardo Zoni <59625522+EZoni@users.noreply.github.com>
Diffstat (limited to 'Source/Diagnostics/Diagnostics.cpp')
-rw-r--r-- | Source/Diagnostics/Diagnostics.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Diagnostics/Diagnostics.cpp b/Source/Diagnostics/Diagnostics.cpp index 91505b520..277510f03 100644 --- a/Source/Diagnostics/Diagnostics.cpp +++ b/Source/Diagnostics/Diagnostics.cpp @@ -64,7 +64,7 @@ Diagnostics::BaseReadParameters () // Query list of grid fields to write to output bool varnames_specified = pp_diag_name.queryarr("fields_to_plot", m_varnames_fields); if (!varnames_specified){ - if( dims == "RZ" and m_format == "openpmd" ) { + if( dims == "RZ" ) { m_varnames_fields = {"Er", "Et", "Ez", "Br", "Bt", "Bz", "jr", "jt", "jz"}; } else { |