Created
October 21, 2017 19:11
-
-
Save jbae11/5eea9dc8c4a57425891070a4775bafbd to your computer and use it in GitHub Desktop.
[Reactor] Produces power at refueling outage if refueling outage time = exit time
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 1 Source Source, 1 Sink Sink --> | |
<simulation> | |
<control> | |
<duration>12</duration> | |
<startmonth>1</startmonth> | |
<startyear>2000</startyear> | |
</control> | |
<archetypes> | |
<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> | |
<spec> | |
<lib>cycamore</lib> | |
<name>Reactor</name> | |
</spec> | |
</archetypes> | |
<facility> | |
<name>SomeSource</name> | |
<config> | |
<Source> | |
<outcommod>uox</outcommod> | |
<outrecipe>uox_recipe</outrecipe> | |
<throughput>1e299</throughput> | |
</Source> | |
</config> | |
</facility> | |
<facility> | |
<name>reactor</name> | |
<lifetime>6</lifetime> | |
<config> | |
<Reactor> | |
<fuel_inrecipes> <val>uox_recipe</val> </fuel_inrecipes> | |
<fuel_outrecipes> <val>uox_recipe</val> </fuel_outrecipes> | |
<fuel_incommods> <val>uox</val> </fuel_incommods> | |
<fuel_outcommods> <val>waste</val> </fuel_outcommods> | |
<fuel_prefs> <val>1.0</val> </fuel_prefs> | |
<cycle_time>2</cycle_time> | |
<refuel_time>1</refuel_time> | |
<assem_size>1</assem_size> | |
<n_assem_core>3</n_assem_core> | |
<n_assem_batch>1</n_assem_batch> | |
<power_cap>1000</power_cap> | |
</Reactor> | |
</config> | |
</facility> | |
<region> | |
<name>SingleRegion</name> | |
<config><NullRegion/></config> | |
<institution> | |
<name>SingleInstitution</name> | |
<initialfacilitylist> | |
<entry> | |
<prototype>SomeSource</prototype> | |
<number>1</number> | |
</entry> | |
<entry> | |
<prototype>reactor</prototype> | |
<number>1</number> | |
</entry> | |
</initialfacilitylist> | |
<config><NullInst/></config> | |
</institution> | |
</region> | |
<recipe> | |
<name>uox_recipe</name> | |
<basis>mass</basis> | |
<nuclide> | |
<id>010010000</id> | |
<comp>1</comp> | |
</nuclide> | |
</recipe> | |
</simulation> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment