-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathrr_rn_multi_compartments.xml
More file actions
25 lines (25 loc) · 1.06 KB
/
rr_rn_multi_compartments.xml
File metadata and controls
25 lines (25 loc) · 1.06 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<sbml xmlns="http://www.sbml.org/sbml/level3/version1/core" level="3" version="1">
<model>
<listOfCompartments>
<compartment id="compartmentOne" spatialDimensions="3" size="1" constant="true"/>
<compartment id="compartmentTwo" spatialDimensions="3" size="1" constant="true"/>
</listOfCompartments>
<listOfSpecies>
<species id="y_1" name="y_1" compartment="compartmentOne" initialConcentration="0" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false"/>
<species id="y_2" name="y_2" compartment="compartmentTwo" initialConcentration="0" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false"/>
</listOfSpecies>
<listOfRules>
<rateRule variable="y_1">
<math xmlns="http://www.w3.org/1998/Math/MathML">
<cn> 11 </cn>
</math>
</rateRule>
<rateRule variable="y_2">
<math xmlns="http://www.w3.org/1998/Math/MathML">
<cn> 22 </cn>
</math>
</rateRule>
</listOfRules>
</model>
</sbml>