Location: Hodgkin & Huxley (1952) model @ ab2962b87966 / components / Ileak.cellml

Author:
WeiweiAi <wai484@aucklanduni.ac.nz>
Date:
2022-03-31 10:48:40+13:00
Desc:
Add open channel IV of HH models; Add simulation and plot python scripts
Permanent Source URI:
https://models.cellml.org/workspace/64f/rawfile/ab2962b8796666ad9938a2577611c954f006b5fd/components/Ileak.cellml

<?xml version='1.0' encoding='UTF-8'?>
<model name="Ileak" 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="mV" units_ref="mV"/>
        <units name="uA_per_cmsq" units_ref="uA_per_cmsq"/>
        <units name="mS_per_cmsq" units_ref="mS_per_cmsq"/>
    </import>
    <component name="Ileak">
        <variable name="Ileak" private_interface="out" public_interface="out" units="uA_per_cmsq"/>
        <variable name="V" private_interface="out" public_interface="in" units="mV"/>
        <variable name="Vleak" private_interface="out" public_interface="in" units="mV"/>
        <variable name="gleak_max" private_interface="out" public_interface="in" units="mS_per_cmsq"/>
        <math xmlns="http://www.w3.org/1998/Math/MathML">
            <apply id="Ileak_calculation">
                <eq/>
                <ci>Ileak</ci>
                <apply>
                    <times/>
                    <ci>gleak_max</ci>
                    <apply>
                        <minus/>
                        <ci>V</ci>
                        <ci>Vleak</ci>
                    </apply>
                </apply>
            </apply>
        </math>
    </component>
</model>