@@ -87,26 +87,6 @@ class Conversion
8787 }
8888 std::vector<std::string> incommods;
8989
90- #pragma cyclus var { \
91- " default" : [], \
92- " doc" :" preferences for each of the given commodities, in the same order." \
93- " Defauts to 1 if unspecified" ,\
94- " uilabel" :" In Commody Preferences" , \
95- " range" : [None, [CY_NEAR_ZERO, CY_LARGE_DOUBLE]], \
96- " uitype" :[" oneormore" , " range" ] \
97- }
98- std::vector<double > incommod_prefs;
99-
100- #pragma cyclus var { \
101- " default" : " " , \
102- " tooltip" : " requested composition" , \
103- " doc" : " name of recipe to use for material requests, where the default " \
104- " (empty string) is to accept everything" , \
105- " uilabel" : " Input Recipe" , \
106- " uitype" : " inrecipe" \
107- }
108- std::string inrecipe_name;
109-
11090 #pragma cyclus var { \
11191 " tooltip" : " output commodity" , \
11292 " doc" : " Output commodity on which the conversion facility offers material." , \
@@ -115,14 +95,14 @@ class Conversion
11595 }
11696 std::string outcommod;
11797
118- // / throughput per timestep
98+ // / Conversion throughput per timestep
11999 #pragma cyclus var { \
120100 " default" : CY_LARGE_DOUBLE, \
121- " tooltip" : " conversion capacity " , \
122- " uilabel" : " Maximum Throughput " , \
101+ " tooltip" : " conversion throughput per timestep " , \
102+ " uilabel" : " Maximum conversion throughput " , \
123103 " uitype" : " range" , \
124104 " range" : [0.0 , CY_LARGE_DOUBLE], \
125- " doc" : " capacity the conversion facility can convert at each time step" \
105+ " doc" : " throughput the facility can convert at each time step" \
126106 }
127107 double throughput;
128108
@@ -132,7 +112,9 @@ class Conversion
132112 " uilabel" : " Maximum Storage of Input Buffer" , \
133113 " uitype" : " range" , \
134114 " range" : [0.0 , CY_LARGE_DOUBLE], \
135- " doc" : " capacity the conversion facility can accept at each time step" \
115+ " doc" : " Total capacity of the input buffer. The amount requested per " \
116+ " time step is the minimum the conversion throughput and this capacity " \
117+ " minus the amount of material in the input buffer." \
136118 }
137119 double input_capacity;
138120
0 commit comments