![]() |
CYCAMORE
|
FuelFab takes in 2 streams of material and mixes them in ratios in order to supply material that matches some neutronics properties of reqeusted material. More...
#include <fuel_fab.h>
Public Member Functions | |
virtual void | AcceptMatlTrades (const std::vector< std::pair< cyclus::Trade< cyclus::Material >, cyclus::Material::Ptr > > &responses) |
virtual void | AcceptMatlTrades (const std::vector< std::pair< cyclus::Trade< cyclus::Material >, cyclus::Material::Ptr > > &responses) |
virtual Json::Value | annotations () |
virtual cyclus::Agent * | Clone () |
virtual void | EnterNotify () |
virtual void | EnterNotify () |
FuelFab (cyclus::Context *ctx) | |
FuelFab (cyclus::Context *ctx) | |
virtual std::set< cyclus::BidPortfolio< cyclus::Material >::Ptr > | GetMatlBids (cyclus::CommodMap< cyclus::Material >::type &commod_requests) |
virtual std::set< cyclus::BidPortfolio< cyclus::Material >::Ptr > | GetMatlBids (cyclus::CommodMap< cyclus::Material >::type &commod_requests) |
virtual std::set< cyclus::RequestPortfolio< cyclus::Material >::Ptr > | GetMatlRequests () |
virtual std::set< cyclus::RequestPortfolio< cyclus::Material >::Ptr > | GetMatlRequests () |
virtual void | GetMatlTrades (const std::vector< cyclus::Trade< cyclus::Material > > &trades, std::vector< std::pair< cyclus::Trade< cyclus::Material >, cyclus::Material::Ptr > > &responses) |
virtual void | GetMatlTrades (const std::vector< cyclus::Trade< cyclus::Material > > &trades, std::vector< std::pair< cyclus::Trade< cyclus::Material >, cyclus::Material::Ptr > > &responses) |
virtual void | InfileToDb (cyclus::InfileTree *tree, cyclus::DbInit di) |
virtual void | InitFrom (cycamore::FuelFab *m) |
virtual void | InitFrom (cyclus::QueryableBackend *b) |
virtual void | InitInv (cyclus::Inventories &inv) |
virtual std::string | schema () |
virtual void | Snapshot (cyclus::DbInit di) |
virtual cyclus::Inventories | SnapshotInv () |
virtual void | Tick () |
virtual void | Tick () |
virtual void | Tock () |
virtual void | Tock () |
virtual std::string | version () |
virtual std::string | version () |
virtual | ~FuelFab () |
virtual | ~FuelFab () |
Private Attributes | |
std::vector< int > | cycpp_shape_fill |
std::vector< int > | cycpp_shape_fill_commod_prefs |
std::vector< int > | cycpp_shape_fill_commods |
std::vector< int > | cycpp_shape_fill_recipe |
std::vector< int > | cycpp_shape_fill_size |
std::vector< int > | cycpp_shape_fiss |
std::vector< int > | cycpp_shape_fiss_commod_prefs |
std::vector< int > | cycpp_shape_fiss_commods |
std::vector< int > | cycpp_shape_fiss_recipe |
std::vector< int > | cycpp_shape_fiss_size |
std::vector< int > | cycpp_shape_outcommod |
std::vector< int > | cycpp_shape_spectrum |
std::vector< int > | cycpp_shape_throughput |
std::vector< int > | cycpp_shape_topup |
std::vector< int > | cycpp_shape_topup_commod |
std::vector< int > | cycpp_shape_topup_pref |
std::vector< int > | cycpp_shape_topup_recipe |
std::vector< int > | cycpp_shape_topup_size |
cyclus::toolkit::ResBuf< cyclus::Material > | fill |
std::vector< double > | fill_commod_prefs |
std::vector< std::string > | fill_commods |
std::string | fill_recipe |
double | fill_size |
cyclus::toolkit::ResBuf< cyclus::Material > | fiss |
std::vector< double > | fiss_commod_prefs |
std::vector< std::string > | fiss_commods |
std::string | fiss_recipe |
double | fiss_size |
std::string | outcommod |
std::map< cyclus::Request< cyclus::Material > *, std::string > | req_inventories_ |
std::string | spectrum |
double | throughput |
cyclus::toolkit::ResBuf< cyclus::Material > | topup |
std::string | topup_commod |
double | topup_pref |
std::string | topup_recipe |
double | topup_size |
FuelFab takes in 2 streams of material and mixes them in ratios in order to supply material that matches some neutronics properties of reqeusted material.
It uses an equivalence type method [1] inspired by a similar approach in the COSI fuel cycle simulator.
The FuelFab has 3 input inventories: fissile stream, filler stream, and an optional top-up inventory. All materials received into each inventory are always combined into a single material (i.e. a single fissile material, a single filler material, etc.). The input streams and requested fuel composition are each assigned weights based on summing:
N * (p_i - p_U238) / (p_Pu239 - p_U238)
for each nuclide where:
- p = nu*sigma_f - sigma_a for the nuclide - p_U238 is p for pure U238 - p_Pu239 is p for pure Pu239 - N is the nuclide's atom fraction - nu is the average # neutrons per fission - sigma_f is the microscopic fission cross-section - sigma_a is the microscopic neutron absorption cross-section
The cross sections are from the simple cross section library in PyNE. They can be set to either a thermal or fast neutron spectrum. A linear interpolation is performed using the weights of the fissile, filler, and target streams. The interpolation is used to compute a mixing ratio of the input streams that matches the target weight. In the event that the target weight is higher than the fissile stream weight, the FuelFab will attempt to use the top-up and fissile input streams together instead of the fissile and filler streams. All supplied material will always have the same weight as the requested material.
The supplying of mixed material is constrained by available inventory quantities and a per time step throughput limit. Requests for fuel material larger than the throughput can never be met. Fissile inventory can be requested/received via one or more commodities. The DRE request preference for each of these commodities can also optionally be specified. By default, the top-up inventory size is zero, and it is not used for mixing.
Definition at line 58 of file build/cycamore/fuel_fab.h.
cycamore::FuelFab::FuelFab | ( | cyclus::Context * | ctx | ) |
Definition at line 134 of file build/cycamore/fuel_fab.cc.
References fill_size, fiss_size, and throughput.
|
inlinevirtual |
Definition at line 65 of file build/cycamore/fuel_fab.h.
cycamore::FuelFab::FuelFab | ( | cyclus::Context * | ctx | ) |
|
inlinevirtual |
Definition at line 110 of file src/fuel_fab.h.
|
virtual |
|
virtual |
|
inlinevirtual |
Definition at line 548 of file build/cycamore/fuel_fab.h.
|
inlinevirtual |
Definition at line 436 of file build/cycamore/fuel_fab.h.
|
virtual |
Definition at line 140 of file build/cycamore/fuel_fab.cc.
References fill_commod_prefs, fill_commods, fiss_commod_prefs, and fiss_commods.
|
virtual |
|
virtual |
|
virtual |
|
virtual |
Definition at line 168 of file build/cycamore/fuel_fab.cc.
References fill, fill_commod_prefs, fill_commods, fill_recipe, fiss, fiss_commod_prefs, fiss_commods, fiss_recipe, req_inventories_, topup, topup_commod, topup_pref, and topup_recipe.
|
virtual |
References fill, fill_commod_prefs, fill_commods, fill_recipe, fill_size, fiss, fiss_commod_prefs, fiss_commods, fiss_recipe, fiss_size, outcommod, req_inventories_, spectrum, throughput, topup, topup_commod, topup_pref, topup_recipe, and topup_size.
|
virtual |
|
virtual |
|
inlinevirtual |
Definition at line 198 of file build/cycamore/fuel_fab.h.
|
inlinevirtual |
Definition at line 68 of file build/cycamore/fuel_fab.h.
References CYCAMORE_VERSION.
|
inlinevirtual |
Definition at line 133 of file build/cycamore/fuel_fab.h.
References cycpp_shape_fill, cycpp_shape_fill_commod_prefs, cycpp_shape_fill_commods, cycpp_shape_fill_recipe, cycpp_shape_fill_size, cycpp_shape_fiss, cycpp_shape_fiss_commod_prefs, cycpp_shape_fiss_commods, cycpp_shape_fiss_recipe, cycpp_shape_fiss_size, cycpp_shape_outcommod, cycpp_shape_spectrum, cycpp_shape_throughput, cycpp_shape_topup, cycpp_shape_topup_commod, cycpp_shape_topup_pref, cycpp_shape_topup_recipe, cycpp_shape_topup_size, fill, fill_commod_prefs, fill_commods, fill_recipe, fill_size, fiss, fiss_commod_prefs, fiss_commods, fiss_recipe, fiss_size, outcommod, spectrum, throughput, topup, topup_commod, topup_pref, topup_recipe, and topup_size.
|
inlinevirtual |
Definition at line 727 of file build/cycamore/fuel_fab.h.
|
inlinevirtual |
Definition at line 442 of file build/cycamore/fuel_fab.h.
|
inlinevirtual |
Definition at line 745 of file build/cycamore/fuel_fab.h.
|
inlinevirtual |
Definition at line 734 of file build/cycamore/fuel_fab.h.
|
inlinevirtual |
Definition at line 768 of file build/cycamore/fuel_fab.h.
|
inlinevirtual |
Definition at line 116 of file src/fuel_fab.h.
|
inlinevirtual |
Definition at line 769 of file build/cycamore/fuel_fab.h.
|
inlinevirtual |
Definition at line 117 of file src/fuel_fab.h.
|
inlinevirtual |
Definition at line 67 of file build/cycamore/fuel_fab.h.
|
inlinevirtual |
Definition at line 112 of file src/fuel_fab.h.
|
private |
Definition at line 820 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 800 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 793 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 807 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 814 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 854 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 834 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 827 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 841 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 848 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 894 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 908 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 901 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 887 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 861 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 868 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 874 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 881 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 819 of file build/cycamore/fuel_fab.h.
Referenced by GetMatlRequests(), and InitFrom().
|
private |
Definition at line 799 of file build/cycamore/fuel_fab.h.
Referenced by EnterNotify(), GetMatlRequests(), and InitFrom().
|
private |
Definition at line 792 of file build/cycamore/fuel_fab.h.
Referenced by EnterNotify(), GetMatlRequests(), and InitFrom().
|
private |
Definition at line 806 of file build/cycamore/fuel_fab.h.
Referenced by GetMatlRequests(), and InitFrom().
|
private |
Definition at line 813 of file build/cycamore/fuel_fab.h.
Referenced by FuelFab(), GetMatlRequests(), and InitFrom().
|
private |
Definition at line 853 of file build/cycamore/fuel_fab.h.
Referenced by GetMatlRequests(), and InitFrom().
|
private |
Definition at line 833 of file build/cycamore/fuel_fab.h.
Referenced by EnterNotify(), GetMatlRequests(), and InitFrom().
|
private |
Definition at line 826 of file build/cycamore/fuel_fab.h.
Referenced by EnterNotify(), GetMatlRequests(), and InitFrom().
|
private |
Definition at line 840 of file build/cycamore/fuel_fab.h.
Referenced by GetMatlRequests(), and InitFrom().
|
private |
Definition at line 847 of file build/cycamore/fuel_fab.h.
Referenced by FuelFab(), GetMatlRequests(), and InitFrom().
|
private |
Definition at line 893 of file build/cycamore/fuel_fab.h.
Referenced by GetMatlRequests(), and InitFrom().
|
private |
Definition at line 914 of file build/cycamore/fuel_fab.h.
Referenced by GetMatlRequests().
|
private |
Definition at line 907 of file build/cycamore/fuel_fab.h.
Referenced by GetMatlRequests(), and InitFrom().
|
private |
Definition at line 900 of file build/cycamore/fuel_fab.h.
Referenced by FuelFab(), GetMatlRequests(), and InitFrom().
|
private |
Definition at line 886 of file build/cycamore/fuel_fab.h.
Referenced by GetMatlRequests(), and InitFrom().
|
private |
Definition at line 860 of file build/cycamore/fuel_fab.h.
Referenced by GetMatlRequests(), and InitFrom().
|
private |
Definition at line 867 of file build/cycamore/fuel_fab.h.
Referenced by GetMatlRequests(), and InitFrom().
|
private |
Definition at line 873 of file build/cycamore/fuel_fab.h.
Referenced by GetMatlRequests(), and InitFrom().
|
private |
Definition at line 880 of file build/cycamore/fuel_fab.h.
Referenced by GetMatlRequests(), and InitFrom().