Location: 12 L Platform 1 model codes @ 507ac7eefb10 / USMC / DM+Mijaailovich_huxley_copy / velvar.m

Author:
aram148 <a.rampadarath@auckland.ac.nz>
Date:
2021-10-11 21:43:42+13:00
Desc:
Create VSM - Exported.cellml
Permanent Source URI:
http://models.cellml.org/workspace/6b0/rawfile/507ac7eefb10930c9eb5d5d9a7113ad5203639bd/USMC/DM+Mijaailovich_huxley_copy/velvar.m

function V =velvar(t,f)
if t<=50
    V=0;
elseif t>50 & t<=80
    %V=12*(0.01*2*pi*f*cos((2*pi*f.*t)));
    V=-0.125;
else
    V=25*(0.02*2*pi*f*cos((2*pi*f.*t)));
end