We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c65a577 commit 157a97fCopy full SHA for 157a97f
docs/src/model_creation/examples/hodgkin_huxley_equation.md
@@ -160,6 +160,7 @@ ILmodel = @reaction_network ILmodel begin
160
@variables V(t) Iₗ(t)
161
@equations Iₗ ~ ḡL*(V-EL)
162
end
163
+nothing # hide
164
```
165
166
We next define the voltage dynamics with unspecified values for the currents
@@ -169,6 +170,7 @@ hhmodel2 = @reaction_network hhmodel2 begin
169
170
@variables V(t) Iₖ(t) Iₙₐ(t) Iₗ(t)
171
@equations D(V) ~ -1/C * (Iₖ + Iₙₐ + Iₗ) + Iapp(t,I₀)
172
173
174
175
Finally, we extend the `hhmodel` with the systems defining the ion channel currents
176
```@example hh1
0 commit comments