Skip to content

Commit

Permalink
Merge pull request #6458 from nilsdeppe/fix_control_plot_bns
Browse files Browse the repository at this point in the history
Skip dat files when plotting control systems
  • Loading branch information
nilsdeppe authored Jan 31, 2025
2 parents 0e5065b + 6b83de3 commit 50b0913
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Visualization/Python/PlotControlSystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,10 @@ def extract_relevant_columns(
control_system_components = {
system: get_control_system_components(reduction_files[0], system)
for system in control_systems
if "Shape" not in system or with_shape
if (
("Shape" not in system or with_shape)
and not system.endswith(".dat")
)
}

# Open every h5file. For each h5file, turn each component of each control
Expand Down

0 comments on commit 50b0913

Please sign in to comment.