1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
<?xml version="1.0" encoding="UTF-8"?>
<!--
Pass: (1307) A Compartment with spatialDimensions='3' must have units
of 'volume', 'litre', or the id of a UnitDefinition that defines a
variant of 'metre' with exponent='3' or a variant of 'litre'
(L2v1 Section 4.5.4).
-->
<sbml xmlns="http://www.sbml.org/sbml/level2" level="2" version="1">
<model>
<listOfUnitDefinitions>
<unitDefinition id="cucm">
<listOfUnits>
<unit kind="metre" exponent="3" scale="-2"/>
</listOfUnits>
</unitDefinition>
</listOfUnitDefinitions>
<listOfCompartments>
<compartment id="c" spatialDimensions="3" units="cucm"/>
</listOfCompartments>
</model>
</sbml>
|