- Author:
- Hugh Sorby <h.sorby@auckland.ac.nz>
- Date:
- 2015-11-12 10:24:29+13:00
- Desc:
- Change filenames to use the cellml extension.
- Permanent Source URI:
- http://models.cellml.org/workspace/25d/rawfile/aec9dd2760d3512135605017226531ac1d4d0d0f/Firstorder.cellml
<?xml version='1.0'?>
<model name="first_order_model" xmlns="http://www.cellml.org/cellml/1.1#" xmlns:cellml="http://www.cellml.org/cellml/1.1#">
<component name="main">
<variable initial_value="0" name="t" units="dimensionless"/>
<variable initial_value="5" name="y" units="dimensionless"/>
<variable initial_value="1" name="a" units="dimensionless"/>
<variable initial_value="2" name="b" units="dimensionless"/>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<eq/>
<apply>
<diff/>
<bvar>
<ci>t</ci>
</bvar>
<ci>y</ci>
</apply>
<apply>
<plus/>
<apply>
<times/>
<ci>a</ci>
<ci>y</ci>
</apply>
<ci>b</ci>
</apply>
</apply>
</math>
</component>
</model>