mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-27 21:55:41 -04:00
Kinetics parameters using Iterated Fission Probability (#3133)
Co-authored-by: Paul Romano <paul.k.romano@gmail.com>
This commit is contained in:
parent
c1a4d43da8
commit
47ca2916aa
28 changed files with 1002 additions and 6 deletions
|
|
@ -7,6 +7,7 @@
|
|||
#include "openmc/error.h"
|
||||
#include "openmc/event.h"
|
||||
#include "openmc/geometry_aux.h"
|
||||
#include "openmc/ifp.h"
|
||||
#include "openmc/material.h"
|
||||
#include "openmc/mcpl_interface.h"
|
||||
#include "openmc/message_passing.h"
|
||||
|
|
@ -335,6 +336,11 @@ void allocate_banks()
|
|||
|
||||
// Allocate fission bank
|
||||
init_fission_bank(3 * simulation::work_per_rank);
|
||||
|
||||
// Allocate IFP bank
|
||||
if (settings::ifp_on) {
|
||||
resize_simulation_ifp_banks();
|
||||
}
|
||||
}
|
||||
|
||||
if (settings::surf_source_write) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue