-
Notifications
You must be signed in to change notification settings - Fork 4
/
example_reactor.xml
78 lines (71 loc) · 1.81 KB
/
example_reactor.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
<simulation>
<control>
<duration>15</duration>
<startmonth>1</startmonth>
<startyear>2000</startyear>
</control>
<archetypes>
<spec><lib>cyborg</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>NullInst</name></spec>
<spec><lib>agents</lib><name>NullRegion</name></spec>
</archetypes>
<facility>
<name>Source</name>
<config>
<Source>
<outcommod>UO2</outcommod>
<outrecipe>uo2</outrecipe>
</Source>
</config>
</facility>
<facility>
<name>reactor</name>
<config>
<reactor>
<fresh_fuel>UO2</fresh_fuel>
<fuel_recipe>uo2</fuel_recipe>
<spent_fuel>spent</spent_fuel>
<power_name>power</power_name>
<power_cap>200</power_cap>
<fuel_capacity>10</fuel_capacity>
<cycle_length>5</cycle_length>
<cap_factor>1</cap_factor>
</reactor>
</config>
</facility>
<facility>
<name>Sink</name>
<Sink>
<incommods> <val>spent</val> </incommods>
</Sink>
</facility>
<region>
<name>OneRegion</name>
<config> <NullRegion /> </config>
<institution>
<name>OneInst</name>
<initialfacilitylist>
<entry>
<prototype>reactor</prototype>
<number>1</number>
</entry>
<entry>
<prototype>Source</prototype>
<number>1</number>
</entry>
<entry>
<prototype>Sink</prototype>
<number>1</number>
</entry>
</initialfacilitylist>
<config> <NullInst /> </config>
</institution>
</region>
<recipe>
<name>uo2</name>
<basis>mass</basis>
<nuclide> <id>U235</id> <comp>1</comp> </nuclide>
</recipe>
</simulation>