forked from AndySomogyi/sbmlsolver
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9f747bc
commit 9091c58
Showing
3 changed files
with
324 additions
and
14 deletions.
There are no files selected for viewing
This file contains 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
74 changes: 74 additions & 0 deletions
74
test/models/ModelAnalysis/jacobian_multi_comps_2sp_3rxn.xml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- Created by libAntimony version v2.13.2 with libSBML version 5.19.5. --> | ||
<sbml xmlns="http://www.sbml.org/sbml/level3/version1/core" level="3" version="1"> | ||
<model metaid="multiCompart_2sp_3rxn" id="multiCompart_2sp_3rxn"> | ||
<listOfCompartments> | ||
<compartment id="c1" spatialDimensions="3" size="1.5" constant="true"/> | ||
<compartment id="c2" spatialDimensions="3" size="2.6" constant="true"/> | ||
</listOfCompartments> | ||
<listOfSpecies> | ||
<species id="X0" compartment="c1" initialConcentration="10" hasOnlySubstanceUnits="false" boundaryCondition="true" constant="false"/> | ||
<species id="S1" compartment="c1" initialConcentration="0" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false"/> | ||
<species id="S2" compartment="c2" initialConcentration="0" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false"/> | ||
<species id="X1" compartment="c2" initialConcentration="0" hasOnlySubstanceUnits="false" boundaryCondition="true" constant="false"/> | ||
</listOfSpecies> | ||
<listOfParameters> | ||
<parameter id="k1" value="0.4" constant="true"/> | ||
<parameter id="k2" value="0.5" constant="true"/> | ||
<parameter id="k3" value="2.5" constant="true"/> | ||
</listOfParameters> | ||
<listOfReactions> | ||
<reaction id="J0" reversible="true" fast="false"> | ||
<listOfReactants> | ||
<speciesReference species="X0" stoichiometry="1" constant="true"/> | ||
</listOfReactants> | ||
<listOfProducts> | ||
<speciesReference species="S1" stoichiometry="1" constant="true"/> | ||
</listOfProducts> | ||
<kineticLaw> | ||
<math xmlns="http://www.w3.org/1998/Math/MathML"> | ||
<apply> | ||
<times/> | ||
<ci> k1 </ci> | ||
<ci> X0 </ci> | ||
</apply> | ||
</math> | ||
</kineticLaw> | ||
</reaction> | ||
<reaction id="J1" reversible="true" fast="false"> | ||
<listOfReactants> | ||
<speciesReference species="S1" stoichiometry="1" constant="true"/> | ||
</listOfReactants> | ||
<listOfProducts> | ||
<speciesReference species="S2" stoichiometry="1" constant="true"/> | ||
</listOfProducts> | ||
<kineticLaw> | ||
<math xmlns="http://www.w3.org/1998/Math/MathML"> | ||
<apply> | ||
<times/> | ||
<ci> k2 </ci> | ||
<ci> S1 </ci> | ||
</apply> | ||
</math> | ||
</kineticLaw> | ||
</reaction> | ||
<reaction id="J2" reversible="true" fast="false"> | ||
<listOfReactants> | ||
<speciesReference species="S2" stoichiometry="1" constant="true"/> | ||
</listOfReactants> | ||
<listOfProducts> | ||
<speciesReference species="X1" stoichiometry="1" constant="true"/> | ||
</listOfProducts> | ||
<kineticLaw> | ||
<math xmlns="http://www.w3.org/1998/Math/MathML"> | ||
<apply> | ||
<times/> | ||
<ci> k3 </ci> | ||
<ci> S2 </ci> | ||
</apply> | ||
</math> | ||
</kineticLaw> | ||
</reaction> | ||
</listOfReactions> | ||
</model> | ||
</sbml> |
This file contains 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