- Author:
- WeiweiAi <wai484@aucklanduni.ac.nz>
- Date:
- 2021-07-06 11:22:35+12:00
- Desc:
- Change the figures size to fit the Physiome paper;
Adjust the solver setting to remove the notch in Fig6.
Minor editting in README.
- Permanent Source URI:
- https://models.physiomeproject.org/workspace/692/rawfile/b98a10f69ee76a70243efdb648c598db5a866a2c/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>