- Author:
- WeiweiAi <wai484@aucklanduni.ac.nz>
- Date:
- 2021-09-29 14:19:13+13:00
- Desc:
- correct the interface def and add individual currents for clamp experiment
- Permanent Source URI:
- https://models.physiomeproject.org/workspace/701/rawfile/f5b5a6cc798b55f4a6f6a30cc839d5698a5a598c/Components/Iup.cellml
<?xml version='1.0' encoding='UTF-8'?>
<model name="Iup" xmlns="http://www.cellml.org/cellml/1.1#" xmlns:cellml="http://www.cellml.org/cellml/1.1#" xmlns:xlink="http://www.w3.org/1999/xlink">
<import xlink:href="../cellLib/Components/units.cellml">
<units name="pA" units_ref="pA"/>
<units name="mM" units_ref="mM"/>
</import>
<import xlink:href="../cellLib/Components/Hillfcn.cellml">
<component component_ref="Hillfcn" name="Hillfcn"/>
</import>
<component name="Iup">
<variable name="I_up0" public_interface="in" units="pA"/>
<variable name="K_mup" public_interface="in" units="mM"/>
<variable name="Cai" public_interface="in" units="mM"/>
<variable name="x_h" private_interface="out" units="dimensionless"/>
<variable initial_value="1" name="n_h" private_interface="out" units="dimensionless"/>
<variable name="H_up" private_interface="in" units="dimensionless"/>
<variable name="I_up" public_interface="out" units="pA"/>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<eq/>
<ci>x_h</ci>
<apply>
<divide/>
<ci>K_mup</ci>
<ci>Cai</ci>
</apply>
</apply>
<apply>
<eq/>
<ci>I_up</ci>
<apply>
<times/>
<ci>I_up0</ci>
<ci>H_up</ci>
</apply>
</apply>
</math>
</component>
<group>
<relationship_ref relationship="encapsulation"/>
<component_ref component="Iup">
<component_ref component="Hillfcn"/>
</component_ref>
</group>
<connection>
<map_components component_1="Iup" component_2="Hillfcn"/>
<map_variables variable_1="x_h" variable_2="x"/>
<map_variables variable_1="n_h" variable_2="n"/>
<map_variables variable_1="H_up" variable_2="H"/>
</connection>
</model>