- Author:
- WeiweiAi <wai484@aucklanduni.ac.nz>
- Date:
- 2022-01-20 12:46:30+13:00
- Desc:
- revert the scaling in the currents
- Permanent Source URI:
- https://models.physiomeproject.org/workspace/701/rawfile/1451a14f3fbe8fd7aacd0d0a73d87cec591b26de/test.cellml
<?xml version='1.0' encoding='UTF-8'?>
<model name="my_model" xmlns="http://www.cellml.org/cellml/1.1#" xmlns:cellml="http://www.cellml.org/cellml/1.1#">
<units name="ms">
<unit prefix="milli" units="second"/>
</units>
<units name="s">
<unit units="second"/>
</units>
<component name="time_component">
<variable name="time" public_interface="out" units="ms"/>
</component>
<component name="ms_time">
<variable name="time" public_interface="in" units="ms"/>
<variable initial_value="0" name="x" units="dimensionless"/>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<eq/>
<apply>
<diff/>
<bvar>
<ci>time</ci>
</bvar>
<ci>x</ci>
</apply>
<cn cellml:units="dimensionless">1</cn>
</apply>
</math>
</component>
<component name="s_time">
<variable name="time" public_interface="in" units="s"/>
<variable initial_value="1" name="x" units="dimensionless"/>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<eq/>
<apply>
<diff/>
<bvar>
<ci>time</ci>
</bvar>
<ci>x</ci>
</apply>
<cn cellml:units="dimensionless">1000</cn>
</apply>
</math>
</component>
<connection>
<map_components component_1="time_component" component_2="ms_time"/>
<map_variables variable_1="time" variable_2="time"/>
</connection>
<connection>
<map_components component_1="time_component" component_2="s_time"/>
<map_variables variable_1="time" variable_2="time"/>
</connection>
</model>