Skip to content

Commit

Permalink
actually capitalize all v
Browse files Browse the repository at this point in the history
  • Loading branch information
harisorgn committed Dec 23, 2024
1 parent dd58834 commit 45674e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/blox/neural_mass.jl
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ struct PYR_Izh <: NeuralMassBlox
Δ, α, gₛ, η̄, I_ext, eᵣ, a, b, wⱼ, sⱼ, κ = p
sts = @variables r(t)=0.0 V(t)=0.0 w(t)=0.0 s(t)=0.0 [output=true] jcn(t) [input=true]
eqs = [ D(r) ~ Δ/π + 2*r*V -+gₛ*s)*r,
D(V) ~ v^2 - α*V - w + η̄ + I_ext*sin*t) + gₛ*s*κ*(eᵣ - V) + jcn -*r)^2,
D(V) ~ V^2 - α*V - w + η̄ + I_ext*sin*t) + gₛ*s*κ*(eᵣ - V) + jcn -*r)^2,
D(w) ~ a*(b*V - w) + wⱼ*r,
D(s) ~ -s/τₛ + sⱼ*r
]
Expand Down

0 comments on commit 45674e7

Please sign in to comment.