forked from ModelDBRepository/262670
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
af097ee
commit 7532ea8
Showing
7 changed files
with
213,436 additions
and
4 deletions.
There are no files selected for viewing
Binary file added
BIN
+46.7 KB
NEURON/mb/mod/Steady_state(s)_of_activation_variables_in_nas_at_6.3_degC.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+37.9 KB
NEURON/mb/mod/Time_course(s)_of_activation_variables_in_nas_at_6.3_degC.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
<?xml version="1.0" encoding="ISO-8859-1"?> | ||
<neuroml xmlns="http://www.neuroml.org/schema/neuroml2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.neuroml.org/schema/neuroml2 https://raw.github.com/NeuroML/NeuroML2/development/Schemas/NeuroML2/NeuroML_v2beta4.xsd" id="NeuroML_ionChannel"> | ||
|
||
<notes>NeuroML file containing a single ion channel</notes> | ||
|
||
<ionChannel id="Navp" conductance="1pS" type="ionChannelHH" species="na"> | ||
|
||
<notes> | ||
Implementation of slow Na+ channel ( NAS ) from Wustenberg DG, Boytcheva M, Grunewald B, Byrne JH, Menzel R, Baxter DA | ||
|
||
This is slow Na+ channel in Apis mellifera Kenyon cells :(cultured). | ||
</notes> | ||
|
||
<gate id="m" type="gateHHratesTau" instances="3"> | ||
<forwardRate type="HHExpLinearRate" rate="1per_ms" midpoint="-30.1mV" scale="6.65mV"/> | ||
<timeCourse type="Ray_nas_taum"/> | ||
</gate> | ||
|
||
<gate id="h" type="gateHHratesTau" instances="1"> | ||
<forwardRate type="HHExpLinearRate" rate="1per_ms" midpoint="-51.4mV" scale="5.9mV"/> | ||
<timeCourse type="Ray_nas_tauh"/> | ||
</gate> | ||
|
||
</ionChannel> | ||
|
||
<ComponentType name="Ray_nas_taum" | ||
extends="baseVoltageDepTime" | ||
description="Tau parameter to describe Navp"> | ||
|
||
<Constant name="TIME_SCALE" dimension="time" value="1 ms"/> | ||
<Constant name="VOLT_SCALE" dimension="voltage" value="1 mV"/> | ||
<Constant name="max_tau" dimension="per_time" value="0.83 per_time"/> | ||
<Constant name="min_tau" dimension="per_time" value="0.093 per_time"/> | ||
<Dynamics> | ||
<DerivedVariable name="V" dimension="none" value="v / VOLT_SCALE"/> | ||
<ConditionalDerivedVariable name="t" dimension="time" exposure="t"> | ||
<Case condition="(ALPHA + BETA) .eq. 0" value="( 0 ) * TIME_SCALE"/> | ||
<Case condition="1/( (ALPHA + BETA) * rateScale ) .lt. ( 0.02 )" value="( (0.02 * rateScale) ) * TIME_SCALE"/> | ||
<Case value="( 1/(ALPHA + BETA) ) * TIME_SCALE"/> | ||
</ConditionalDerivedVariable> | ||
|
||
</Dynamics> | ||
|
||
</ComponentType> | ||
|
||
<ComponentType name="Ray_nas_tauh" | ||
extends="baseVoltageDepTime" | ||
description="Tau parameter to describe Navp"> | ||
|
||
<Constant name="TIME_SCALE" dimension="time" value="1 ms"/> | ||
<Constant name="VOLT_SCALE" dimension="voltage" value="1 mV"/> | ||
|
||
<Requirement name="alpha" dimension="per_time"/> | ||
<Requirement name="beta" dimension="per_time"/> | ||
<Requirement name="rateScale" dimension="none"/> | ||
|
||
<Dynamics> | ||
<DerivedVariable name="V" dimension="none" value="v / VOLT_SCALE"/> | ||
<DerivedVariable name="ALPHA" dimension="none" value="alpha * TIME_SCALE"/> | ||
<DerivedVariable name="BETA" dimension="none" value="beta * TIME_SCALE"/> | ||
|
||
<ConditionalDerivedVariable name="t" exposure="t" dimension="time"> | ||
<Case condition="(ALPHA + BETA) .eq. 0" value="( 0 ) * TIME_SCALE"/> | ||
<Case condition="1/( (ALPHA + BETA) * rateScale ) .lt. ( 0.5 )" value="( (0.5 * rateScale) ) * TIME_SCALE"/> | ||
<Case value="( 1/(ALPHA + BETA) ) * TIME_SCALE"/> | ||
</ConditionalDerivedVariable> | ||
|
||
</Dynamics> | ||
|
||
</ComponentType> | ||
|
||
<ComponentType name="Ray_nas_taus" | ||
extends="baseVoltageDepTime" | ||
description="Tau parameter to describe Navp"> | ||
|
||
<Constant name="TIME_SCALE" dimension="time" value="1 ms"/> | ||
<Constant name="VOLT_SCALE" dimension="voltage" value="1 mV"/> | ||
<Constant name="TEMP_SCALE" dimension="temperature" value="1 K"/> | ||
<Constant name="R" dimension="none" value="8.315"/> | ||
<Constant name="F" dimension="none" value="96480"/> | ||
|
||
<Requirement name="rateScale" dimension="none"/> | ||
<Requirement name="temperature" dimension="temperature"/> | ||
|
||
<Dynamics> | ||
<DerivedVariable name="V" dimension="none" value="v / VOLT_SCALE"/> | ||
<DerivedVariable name="T" dimension="none" value="temperature / TEMP_SCALE"/> | ||
|
||
<DerivedVariable name="alpha" dimension="none" value="exp((1e-3*12*(V+45)*F) / (R*(T+0.01)))"/> <!-- NEURON code: 273.16 + celsius--> | ||
<DerivedVariable name="beta" dimension="none" value="exp((1e-3*12*0.2*(V+45)*F) / (R*(T+0.01)))"/> <!-- NEURON code: 273.16 + celsius--> | ||
|
||
<DerivedVariable name="tmp" value="beta / (3e-4*(1 + alpha))" dimension="none"/> | ||
<ConditionalDerivedVariable name="t" dimension="time" exposure="t" > | ||
<Case condition="(tmp / rateScale) .lt. 10" value="10 * rateScale * TIME_SCALE"/> | ||
<Case value="tmp * TIME_SCALE"/> | ||
</ConditionalDerivedVariable> | ||
|
||
</Dynamics> | ||
|
||
</ComponentType> | ||
|
||
<ComponentType name="Ray_nas_sss_ar2_1" | ||
extends="baseVoltageDepVariable" | ||
description="steadyState parameter to describe Navp"> | ||
|
||
<Constant name="no_inact" dimension="none" value="1"/> <!-- 1: no inact, 0: max inact--> | ||
<Constant name="VOLT_SCALE" dimension="voltage" value="1 mV"/> | ||
|
||
<Dynamics> | ||
<DerivedVariable name="V" dimension="none" value="v / VOLT_SCALE"/> | ||
|
||
<DerivedVariable name="alpha" dimension="none" value="1 / (1 + exp((V+43)/2))"/> | ||
|
||
<DerivedVariable name="x" exposure="x" dimension="none" value="alpha + no_inact*(1 - alpha)"/> | ||
</Dynamics> | ||
|
||
</ComponentType> | ||
|
||
|
||
<ComponentType name="Ray_nas_sss_ar2_0_8" | ||
extends="baseVoltageDepVariable" | ||
description="steadyState parameter to describe Navp"> | ||
|
||
<Constant name="no_inact" dimension="none" value="0.8"/> <!-- 1: no inact, 0: max inact--> | ||
<Constant name="VOLT_SCALE" dimension="voltage" value="1 mV"/> | ||
|
||
<Dynamics> | ||
<DerivedVariable name="V" dimension="none" value="v / VOLT_SCALE"/> | ||
|
||
<DerivedVariable name="alpha" dimension="none" value="1 / (1 + exp((V+43)/2))"/> | ||
|
||
<DerivedVariable name="x" exposure="x" dimension="none" value="alpha + no_inact*(1 - alpha)"/> | ||
</Dynamics> | ||
|
||
</ComponentType> | ||
|
||
</neuroml> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="ISO-8859-1"?> | ||
<neuroml xmlns="http://www.neuroml.org/schema/neuroml2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.neuroml.org/schema/neuroml2 https://raw.github.com/NeuroML/NeuroML2/development/Schemas/NeuroML2/NeuroML_v2beta4.xsd" id="pas"> | ||
|
||
<notes>NeuroML file containing a single Channel description</notes> | ||
|
||
<ionChannel id="pas" conductance="10pS" type="ionChannelPassive"> | ||
|
||
<notes>Simple example of a leak/passive conductance. Note: for GENESIS cells with a single leak conductance, | ||
it is better to use the Rm and Em variables for a passive current.</notes> | ||
|
||
</ionChannel> | ||
|
||
</neuroml> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters