Skip to content

Commit

Permalink
Merge pull request #438 from aglenn2/anno
Browse files Browse the repository at this point in the history
updated metadata
  • Loading branch information
scopatz committed Nov 11, 2016
2 parents ac34b55 + 390e0e5 commit ddc34aa
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/enrichment.h
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,9 @@ class Enrichment : public cyclus::Facility {

#pragma cyclus var { \
"default": 1e299, "tooltip": "max inventory of feed material (kg)", \
"uilabel": "Maximum Feed Inventory", \
"uilabel": "Maximum Feed Inventory", \
"uitype": "range", \
"range": [0.0, 1e299], \
"doc": "maximum total inventory of natural uranium in " \
"the enrichment facility (kg)" \
}
Expand All @@ -323,7 +325,7 @@ class Enrichment : public cyclus::Facility {
#pragma cyclus var { \
"default": 1.0, \
"tooltip": "maximum allowed enrichment fraction", \
"doc": "maximum allowed weight fraction of U235 in product",\
"doc": "maximum allowed weight fraction of U235 in product", \
"uilabel": "Maximum Allowed Enrichment", \
"schema": '<optional>' \
' <element name="max_enrich">' \
Expand All @@ -350,6 +352,8 @@ class Enrichment : public cyclus::Facility {
"default": 1e299, \
"tooltip": "SWU capacity (kgSWU/month)", \
"uilabel": "SWU Capacity", \
"uitype": "range", \
"range": [0.0, 1e299], \
"doc": "separative work unit (SWU) capacity of enrichment " \
"facility (kgSWU/timestep) " \
}
Expand Down
3 changes: 3 additions & 0 deletions src/fuel_fab.h
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,9 @@ class FuelFab : public cyclus::Facility {
"doc": "Maximum number of kg of fuel material that can be supplied per time step.", \
"uilabel": "Maximum Throughput", \
"units": "kg", \
"default": 1e299, \
"uitype": "range", \
"range": [0.0, 1e299], \
}
double throughput;

Expand Down
4 changes: 4 additions & 0 deletions src/mixer.h
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@ class Mixer : public cyclus::Facility {
" available.", \
"uilabel": "Maximum Leftover Inventory", \
"default": 1e299, \
"uitype": "range", \
"range": [0.0, 1e299], \
"units": "kg", \
}
double out_buf_size;
Expand All @@ -95,6 +97,8 @@ class Mixer : public cyclus::Facility {
"default": 1e299, \
"doc": "Maximum number of kg of fuel material that can be mixed per time step.", \
"uilabel": "Maximum Throughput", \
"uitype": "range", \
"range": [0.0, 1e299], \
"units": "kg", \
}
double throughput;
Expand Down
5 changes: 5 additions & 0 deletions src/separations.h
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,9 @@ class Separations : public cyclus::Facility {
"doc" : "Maximum quantity of feed material that can be processed per time "\
"step.", \
"uilabel": "Maximum Separations Throughput", \
"default": 1e299, \
"uitype": "range", \
"range": [0.0, 1e299], \
"units": "kg/(time step)", \
}
double throughput;
Expand All @@ -166,6 +169,8 @@ class Separations : public cyclus::Facility {
"available.", \
"uilabel": "Maximum Leftover Inventory", \
"default": 1e299, \
"uitype": "range", \
"range": [0.0, 1e299], \
"units": "kg", \
}
double leftoverbuf_size;
Expand Down

0 comments on commit ddc34aa

Please sign in to comment.