Skip to content

Commit

Permalink
Compound datafiles for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
NelisDrost committed Sep 3, 2012
1 parent 0821414 commit 6469218
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 0 deletions.
10 changes: 10 additions & 0 deletions res/Compounds.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<Compounds>
<Compound Name="Water" Color="#0" />
<Compound Name="Oxygen" Color="#0" />
<Compound Name="Carbon Dioxide" Color="#0" />
<Compound Name="Sugar" Color="#0" />
<Compound Name="ATP" Color="#0" />
<Compound Name="Light" Color="#0" />
<Compound Name="Lactic Acid" Color="#0" />
</Compounds>
5 changes: 5 additions & 0 deletions res/Organelles.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Organelles>
<Organelle Name="Mitochondrion" />
<Organelle Name="Chloroplast" />
</Organelles>
41 changes: 41 additions & 0 deletions res/Processes.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<?xml version="1.0" encoding="utf-8"?>
<Processes>
<Process Name="Photosynthesis" TimeTaken="1">
<Inputs>
<Input CompoundID="Water" Amount="6" />
<Input CompoundID="Carbon Dioxide" Amount="6" />
<Input CompoundID="Light" Amount="1" />
</Inputs>
<Outputs>
<Output CompoundID="Oxygen" Amount="6" />
<Output CompoundID="Sugar" Amount="1" />
</Outputs>
<Organelles>
<Organelle OrganelleID="Chloroplast" />
</Organelles>
</Process>
<Process Name="Aerobic Respiration" TimeTaken="1">
<Inputs>
<Input CompoundID="Sugar" Amount="1" />
<Input CompoundID="Oxygen" Amount="6" />
</Inputs>
<Outputs>
<Output CompoundID="Water" Amount="6" />
<Output CompoundID="Carbon Dioxide" Amount="6" />
<Output CompoundID="ATP" Amount="38" />
</Outputs>
<Organelles>
<Organelle OrganelleID="Mitochondrion" />
</Organelles>
</Process>
<Process Name="Lactic Acid Fermentation" TimeTaken="1">
<Inputs>
<Input CompoundID="Sugar" Amount="1" />
</Inputs>
<Outputs>
<Output CompoundID="Lactic Acid" Amount="2" />
<Output CompoundID="ATP" Amount="2" />
</Outputs>
<Organelles />
</Process>
</Processes>

0 comments on commit 6469218

Please sign in to comment.