- Author:
- David Nickerson <nickerso@users.sourceforge.net>
- Date:
- 2012-09-26 15:21:03+12:00
- Desc:
- renaming the tutorial web page to work around a bug in making PMR2 exposures with files named index.html
- Permanent Source URI:
- http://models.cellml.org/w/andre/VPH-MIP/rawfile/eeb193d348e735266eae6b9948908adc88bc4c00/experiments/periodic-IStim-protocol.xml
<?xml version="1.0" encoding="iso-8859-1"?>
<model xmlns="http://www.cellml.org/cellml/1.1#" xmlns:cellml="http://www.cellml.org/cellml/1.1#" xmlns:cmeta="http://www.cellml.org/metadata/1.0#" xmlns:xlink="http://www.w3.org/1999/xlink" name="periodic_IStim" cmeta:id="periodic_IStim">
<import xlink:href="../components/units.xml">
<units name="ms" units_ref="ms"/>
<units name="uA_per_cmsq" units_ref="uA_per_cmsq"/>
</import>
<component name="stimulus_protocol" cmeta:id="stimulus_protocol">
<variable cmeta:id="IStim" name="IStim" public_interface="out" units="uA_per_cmsq"/>
<variable name="time" public_interface="in" units="ms"/>
<variable name="stimPeriod" public_interface="in" units="ms"/>
<variable name="stimDuration" public_interface="in" units="ms"/>
<variable name="stimCurrent" public_interface="in" units="uA_per_cmsq"/>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply id="stimulus_calculation"><eq/>
<ci>IStim</ci>
<piecewise>
<piece>
<ci>stimCurrent</ci>
<apply><lt/>
<apply><rem/>
<ci>time</ci>
<ci>stimPeriod</ci>
</apply>
<ci>stimDuration</ci>
</apply>
</piece>
<otherwise>
<cn cellml:units="uA_per_cmsq">0.0</cn>
</otherwise>
</piecewise>
</apply>
</math>
</component>
</model>