From b4fea3093218f0f0f9f2764a6ab2e3f06b2c3755 Mon Sep 17 00:00:00 2001 From: shimwell Date: Thu, 29 Feb 2024 22:30:55 +0000 Subject: [PATCH] removed energy filter from example --- examples/plot_minimal_example.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/plot_minimal_example.py b/examples/plot_minimal_example.py index 281cb21..04342ee 100644 --- a/examples/plot_minimal_example.py +++ b/examples/plot_minimal_example.py @@ -42,9 +42,8 @@ dimension=[40, 40, 40], ) mesh_filter = openmc.MeshFilter(mesh) -energy_filter = openmc.EnergyFilter([0, 1e6, 2e6]) mesh_tally_1 = openmc.Tally(name="mesh_tally") -mesh_tally_1.filters = [mesh_filter, energy_filter] +mesh_tally_1.filters = [mesh_filter] mesh_tally_1.scores = ["heating"] my_tallies.append(mesh_tally_1)