Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add sentence about request to Enrichment requiring recipe #526

Merged
merged 1 commit into from
Apr 22, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions src/enrichment.h
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class NatUConverter : public cyclus::Converter<cyclus::Material> {
/// The Enrichment facility is a simple Agent that enriches natural
/// uranium in a Cyclus simulation. It does not explicitly compute
/// the physical enrichment process, rather it calculates the SWU
/// required to convert an source uranium recipe (ie. natural uranium)
/// required to convert a source uranium recipe (ie. natural uranium)
/// into a requested enriched recipe (ie. 4% enriched uranium), given
/// the natural uranium inventory constraint and its SWU capacity
/// constraint.
Expand All @@ -109,7 +109,9 @@ class NatUConverter : public cyclus::Converter<cyclus::Material> {
/// If multiple output commodities with different enrichment levels are
/// requested and the facility does not have the SWU or quantity capacity
/// to meet all requests, the requests are fully, then partially filled
/// in unspecified but repeatable order.
/// in unspecified but repeatable order. A request for the product
/// commodity without an associated requested enriched recipe will not be
/// fulfilled.
///
/// The Enrichment facility also offers its tails as an output commodity with
/// no associated recipe. Bids for tails are constrained only by total
Expand All @@ -124,7 +126,7 @@ class Enrichment
"The Enrichment facility is a simple agent that enriches natural " \
"uranium in a Cyclus simulation. It does not explicitly compute " \
"the physical enrichment process, rather it calculates the SWU " \
"required to convert an source uranium recipe (i.e. natural uranium) " \
"required to convert a source uranium recipe (i.e. natural uranium) " \
"into a requested enriched recipe (i.e. 4% enriched uranium), given " \
"the natural uranium inventory constraint and its SWU capacity " \
"constraint." \
Expand All @@ -146,7 +148,9 @@ class Enrichment
"If multiple output commodities with different enrichment levels are " \
"requested and the facility does not have the SWU or quantity capacity " \
"to meet all requests, the requests are fully, then partially filled " \
"in unspecified but repeatable order." \
"in unspecified but repeatable order. A request for the product " \
"commodity without an associated requested enriched recipe will not be " \
"fulfilled." \
"\n\n" \
"Accumulated tails inventory is offered for trading as a specifiable " \
"output commodity.", \
Expand Down