Location: Model of Human Jejunal Smooth Muscle Cell Electrophysiology @ 1194b15aca0a / Components / temperature_factor.cellml

Author:
WeiweiAi <wai484@aucklanduni.ac.nz>
Date:
2021-06-08 10:06:20+12:00
Desc:
Fixed the path errors /components..; Modify the parameters to comply with the ones that the author provided C code (https://computationalbiolab.github.io/jejunal_smc_model/) used.
Permanent Source URI:
https://staging.physiomeproject.org/workspace/692/rawfile/1194b15aca0ab0c5887f2d3e2f6193792e688f04/Components/temperature_factor.cellml

<?xml version='1.0' encoding='UTF-8'?>
<model name="temperature_factor" xmlns="http://www.cellml.org/cellml/1.1#" xmlns:cellml="http://www.cellml.org/cellml/1.1#">
    <!-- calculate temperature factor based on the Q10 temperature coefficient-->
    <component name="temperature_factor">
        <variable name="phi" public_interface="out" units="dimensionless"/>
        <variable name="T0" public_interface="in" units="kelvin"/>
        <variable name="T" public_interface="in" units="kelvin"/>
        <variable name="Q10" public_interface="in" units="dimensionless"/>
        <math xmlns="http://www.w3.org/1998/Math/MathML">
            <apply>
                <eq/>
                <ci>phi</ci>
                <apply>
                    <power/>
                    <ci>Q10</ci>
                    <apply>
                        <divide/>
                        <apply>
                            <minus/>
                            <ci>T</ci>
                            <ci>T0</ci>
                        </apply>
                        <cn cellml:units="kelvin">10</cn>
                    </apply>
                </apply>
            </apply>
        </math>
    </component>
</model>