Skip to content

Commit

Permalink
Merge branch 'sep' into travis-merge
Browse files Browse the repository at this point in the history
moving flat schema to non-flat
  • Loading branch information
gidden committed Apr 24, 2015
2 parents 5e2bade + 741fbfd commit c72c48e
Showing 1 changed file with 49 additions and 20 deletions.
69 changes: 49 additions & 20 deletions input/recycle.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
<simulation>
<schematype>flat</schematype>
<control>
<duration>600</duration>
<startmonth>1</startmonth>
<startyear>2000</startyear>
</control>

<archetypes>
<spec> <lib>agents</lib> <name>NullInst</name></spec>
<spec> <lib>agents</lib> <name>NullRegion</name></spec>
<spec> <lib>cycamore</lib> <name>Source</name></spec>
<spec> <lib>cycamore</lib> <name>Sink</name></spec>
<spec> <lib>cycamore</lib> <name>Enrichment</name> </spec>
Expand All @@ -15,7 +16,7 @@
<spec> <lib>cycamore</lib> <name>Separations</name> </spec>
</archetypes>

<prototype>
<facility>
<name>enrichment</name>
<config>
<Enrichment>
Expand All @@ -28,9 +29,9 @@
<initial_feed>1e100</initial_feed>
</Enrichment>
</config>
</prototype>
</facility>

<prototype>
<facility>
<name>separations</name>
<config>
<Separations>
Expand All @@ -51,9 +52,9 @@
<feed_commod_prefs> <val>2.0</val> </feed_commod_prefs>
</Separations>
</config>
</prototype>
</facility>

<prototype>
<facility>
<name>fuelfab</name>
<config>
<FuelFab>
Expand All @@ -69,9 +70,9 @@
<throughput>30001</throughput>
</FuelFab>
</config>
</prototype>
</facility>

<prototype>
<facility>
<name>reactor</name>
<config>
<Reactor>
Expand All @@ -88,34 +89,62 @@
<n_assem_batch>1</n_assem_batch>
</Reactor>
</config>
</prototype>
</facility>

<prototype>
<facility>
<name>repo</name>
<config>
<Sink>
<in_commods><val>waste</val></in_commods>
<capacity>1e100</capacity>
</Sink>
</config>
</prototype>
</facility>

<prototype>
<facility>
<name>depleted_src</name>
<config>
<Source>
<outcommod>depleted_u</outcommod>
<outrecipe>depleted_u</outrecipe>
</Source>
</config>
</prototype>

<agent> <name>repo1</name> <prototype>repo</prototype> </agent>
<agent> <name>r1</name> <prototype>reactor</prototype> </agent>
<agent> <name>depleted1</name> <prototype>depleted_src</prototype> </agent>
<agent> <name>fab1</name> <prototype>fuelfab</prototype> </agent>
<agent> <name>sep1</name> <prototype>separations</prototype> </agent>
<agent> <name>enrich1</name> <prototype>enrichment</prototype> </agent>
</facility>

<region>
<name>SingleRegion</name>
<config><NullRegion/></config>
<institution>
<name>SingleInstitution</name>
<initialfacilitylist>
<entry>
<prototype>repo</prototype>
<number>1</number>
</entry>
<entry>
<prototype>reactor</prototype>
<number>1</number>
</entry>
<entry>
<prototype>depleted_src</prototype>
<number>1</number>
</entry>
<entry>
<prototype>fuelfab</prototype>
<number>1</number>
</entry>
<entry>
<prototype>separations</prototype>
<number>1</number>
</entry>
<entry>
<prototype>enrichment</prototype>
<number>1</number>
</entry>
</initialfacilitylist>
<config><NullInst/></config>
</institution>
</region>

<recipe>
<name>natl_u</name>
Expand Down

0 comments on commit c72c48e

Please sign in to comment.