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 Member Functions | |
void | RecordPosition () |
Records an agent's latitude and longitude to the output db. | |
void | RecordPosition () |
Records an agent's latitude and longitude to the output db. | |
Private Attributes | |
cyclus::toolkit::Position | coordinates |
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_latitude |
std::vector< int > | cycpp_shape_longitude |
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 |
double | latitude |
double | longitude |
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.
|
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 535 of file build/cycamore/fuel_fab.h.
|
inlinevirtual |
Definition at line 436 of file build/cycamore/fuel_fab.h.
|
virtual |
Definition at line 143 of file build/cycamore/fuel_fab.cc.
References fill_commod_prefs, fill_commods, fiss_commod_prefs, fiss_commods, and RecordPosition().
|
virtual |
|
virtual |
|
virtual |
|
virtual |
Definition at line 170 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 |
|
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_latitude, cycpp_shape_longitude, 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, latitude, longitude, outcommod, spectrum, throughput, topup, topup_commod, topup_pref, topup_recipe, and topup_size.
|
inlinevirtual |
Definition at line 714 of file build/cycamore/fuel_fab.h.
|
private |
Records an agent's latitude and longitude to the output db.
Definition at line 499 of file build/cycamore/fuel_fab.cc.
References latitude, and longitude.
Referenced by EnterNotify().
|
private |
Records an agent's latitude and longitude to the output db.
|
inlinevirtual |
Definition at line 442 of file build/cycamore/fuel_fab.h.
|
inlinevirtual |
Definition at line 732 of file build/cycamore/fuel_fab.h.
|
inlinevirtual |
Definition at line 721 of file build/cycamore/fuel_fab.h.
|
inlinevirtual |
Definition at line 755 of file build/cycamore/fuel_fab.h.
|
inlinevirtual |
Definition at line 116 of file src/fuel_fab.h.
|
inlinevirtual |
Definition at line 756 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 895 of file build/cycamore/fuel_fab.h.
|
private |
Definition at line 797 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 782 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 777 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 787 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 792 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 824 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 809 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 804 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 819 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 884 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 891 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 859 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 873 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 866 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 852 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 831 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 836 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 842 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 847 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 796 of file build/cycamore/fuel_fab.h.
Referenced by GetMatlRequests(), and InitFrom().
|
private |
Definition at line 781 of file build/cycamore/fuel_fab.h.
Referenced by EnterNotify(), GetMatlRequests(), and InitFrom().
|
private |
Definition at line 776 of file build/cycamore/fuel_fab.h.
Referenced by EnterNotify(), GetMatlRequests(), and InitFrom().
|
private |
Definition at line 786 of file build/cycamore/fuel_fab.h.
Referenced by GetMatlRequests(), and InitFrom().
|
private |
Definition at line 791 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 823 of file build/cycamore/fuel_fab.h.
Referenced by GetMatlRequests(), and InitFrom().
|
private |
Definition at line 808 of file build/cycamore/fuel_fab.h.
Referenced by EnterNotify(), GetMatlRequests(), and InitFrom().
|
private |
Definition at line 803 of file build/cycamore/fuel_fab.h.
Referenced by EnterNotify(), GetMatlRequests(), and InitFrom().
|
private |
Definition at line 813 of file build/cycamore/fuel_fab.h.
Referenced by GetMatlRequests(), and InitFrom().
|
private |
Definition at line 818 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 883 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom(), and RecordPosition().
|
private |
Definition at line 890 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom(), and RecordPosition().
|
private |
Definition at line 858 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 879 of file build/cycamore/fuel_fab.h.
Referenced by GetMatlRequests().
|
private |
Definition at line 872 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 865 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().
|
private |
Definition at line 851 of file build/cycamore/fuel_fab.h.
Referenced by GetMatlRequests(), and InitFrom().
|
private |
Definition at line 830 of file build/cycamore/fuel_fab.h.
Referenced by GetMatlRequests(), and InitFrom().
|
private |
Definition at line 835 of file build/cycamore/fuel_fab.h.
Referenced by GetMatlRequests(), and InitFrom().
|
private |
Definition at line 841 of file build/cycamore/fuel_fab.h.
Referenced by GetMatlRequests(), and InitFrom().
|
private |
Definition at line 846 of file build/cycamore/fuel_fab.h.
Referenced by InitFrom().