Skip to content

Commit

Permalink
Merge 2e0bc8d into 88e670c
Browse files Browse the repository at this point in the history
  • Loading branch information
agarny committed May 17, 2019
2 parents 88e670c + 2e0bc8d commit ac63805
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 15 deletions.
5 changes: 0 additions & 5 deletions models/hodgkin_huxley_squid_axon_model_1952.cellml
Expand Up @@ -421,7 +421,6 @@
<variable name="i_L" public_interface="out" units="microA_per_cm2"/>
<variable initial_value="0.3" name="g_L" units="milliS_per_cm2"/>
<variable name="E_L" units="millivolt"/>
<variable name="time" public_interface="in" units="millisecond"/>
<variable name="V" public_interface="in" units="millivolt"/>
<variable name="E_R" public_interface="in" units="millivolt"/>
<math xmlns="http://www.w3.org/1998/Math/MathML">
Expand Down Expand Up @@ -484,10 +483,6 @@
<map_components component_1="potassium_channel" component_2="environment"/>
<map_variables variable_1="time" variable_2="time"/>
</connection>
<connection>
<map_components component_1="leakage_current" component_2="environment"/>
<map_variables variable_1="time" variable_2="time"/>
</connection>
<connection>
<map_components component_1="membrane" component_2="sodium_channel"/>
<map_variables variable_1="V" variable_2="V"/>
Expand Down
5 changes: 0 additions & 5 deletions models/noble_model_1962.cellml
Expand Up @@ -482,7 +482,6 @@
<variable name="i_Leak" public_interface="out" units="microA_per_cm2"/>
<variable initial_value="0.075" name="g_L" units="milliS_per_cm2"/>
<variable initial_value="-60" name="E_L" units="millivolt"/>
<variable name="time" public_interface="in" units="millisecond"/>
<variable name="V" public_interface="in" units="millivolt"/>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
Expand Down Expand Up @@ -535,10 +534,6 @@
<map_components component_1="potassium_channel" component_2="environment"/>
<map_variables variable_1="time" variable_2="time"/>
</connection>
<connection>
<map_components component_1="leakage_current" component_2="environment"/>
<map_variables variable_1="time" variable_2="time"/>
</connection>
<connection>
<map_components component_1="membrane" component_2="sodium_channel"/>
<map_variables variable_1="V" variable_2="V"/>
Expand Down
Expand Up @@ -117,7 +117,6 @@ def model noble_model_1962 as
var i_Leak: microA_per_cm2 {pub: out};
var g_L: milliS_per_cm2 {init: 0.075};
var E_L: millivolt {init: -60};
var time: millisecond {pub: in};
var V: millivolt {pub: in};

i_Leak = g_L*(V-E_L);
Expand Down Expand Up @@ -161,10 +160,6 @@ def model noble_model_1962 as
vars time and time;
enddef;

def map between leakage_current and environment for
vars time and time;
enddef;

def map between membrane and sodium_channel for
vars V and V;
vars i_Na and i_Na;
Expand Down

0 comments on commit ac63805

Please sign in to comment.