forked from ZoeRichter/cyclus-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main_input.xml
92 lines (83 loc) · 1.82 KB
/
main_input.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<simulation>
<control>
<duration>{{duration}}</duration>
<startmonth>{{start_month}}</startmonth>
<startyear>{{start_year}}</startyear>
<decay>{{decay}}</decay>
</control>
<archetypes>
<spec>
<lib>cycamore</lib>
<name>Enrichment</name>
</spec>
<spec>
<lib>cycamore</lib>
<name>Reactor</name>
</spec>
<spec>
<lib>cycamore</lib>
<name>Source</name>
</spec>
<spec>
<lib>cycamore</lib>
<name>Sink</name>
</spec>
<spec>
<lib>agents</lib>
<name>NullRegion</name>
</spec>
<spec>
<lib>agents</lib>
<name>NullInst</name>
</spec>
</archetypes>
<commodity>
<name>u-ore</name>
<solution_priority>1.0</solution_priority>
</commodity>
<commodity>
<name>fresh-uox</name>
<solution_priority>1.0</solution_priority>
</commodity>
<commodity>
<name>tails</name>
<solution_priority>1.0</solution_priority>
</commodity>
<commodity>
<name>spent-uox</name>
<solution_priority>1.0</solution_priority>
</commodity>
<facility>
<name>UraniumMine</name>
<config>
<Source>
<outcommod>u-ore</outcommod>
</Source>
</config>
</facility>
<facility>
<name>EnrichmentPlant</name>
<config>
<Enrichment>
<feed_commod>u-ore</feed_commod>
<feed_recipe>nat-u</feed_recipe>
<product_commod>fresh-uox</product_commod>
<tails_commod>tails</tails_commod>
<max_feed_inventory>1000000</max_feed_inventory>
</Enrichment>
</config>
</facility>
{{reactor_input}}
<facility>
<name>SNFRepository</name>
<config>
<Sink>
<in_commods>
<val>spent-uox</val>
</in_commods>
</Sink>
</config>
</facility>
{{region_input}}
{{recipe_input}}
</simulation>