Skip to content

Commit

Permalink
max splits to max history splits
Browse files Browse the repository at this point in the history
  • Loading branch information
shimwell committed Oct 17, 2024
1 parent d067baf commit 81e4d20
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@
"# we are reducing the number of particles so this simulation takes a similar amount of time\n",
"# to the previous simulation that didn't use weight windows. So we can make a fair comparison\n",
"model.settings.particles = 4900\n",
"model.settings.max_splits = 1_000 # controls the maximum partile splits over the entire lifetime of the particle\n",
"model.settings.max_history_splits = 1_000 # controls the maximum partile splits over the entire lifetime of the particle\n",
"model.settings.weight_window_generators = wwg"
]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@
"my_settings.source = source\n",
"my_settings.particles = 120\n",
"my_settings.batches = 10\n",
"my_settings.max_splits = 4000 # controls the total number of maximum splits a particle can do over the entire lifetime\n",
"my_settings.max_history_splits = 4000 # controls the total number of maximum splits a particle can do over the entire lifetime\n",
"\n",
"# no need to write the tallies.out file which saves space and time when large meshes are used\n",
"my_settings.output = {'tallies': False}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@
"my_settings.source = source\n",
"my_settings.particles = 50000\n",
"my_settings.batches = 5\n",
"my_settings.max_splits = 100 # controls the total number of maximum splits a particle can do over the entire lifetime\n",
"my_settings.max_history_splits = 100 # controls the total number of maximum splits a particle can do over the entire lifetime\n",
"\n",
"# the mesh tallies produce large tallies.out files so this output setting avoids writing the tallies.out and saves time\n",
"my_settings.output = {'tallies': False}"
Expand Down

0 comments on commit 81e4d20

Please sign in to comment.