Skip to content

Commit

Permalink
add attributes to spiking input ports
Browse files Browse the repository at this point in the history
  • Loading branch information
C.A.P. Linssen committed Jan 17, 2025
1 parent 5cbe0e3 commit 74c92f2
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
" equations:\n",
" # alpha shaped postsynaptic current kernel\n",
" kernel syn_kernel = (e / tau_syn) * t * exp(-t / tau_syn)\n",
" recordable inline I_syn pA = convolve(syn_kernel, spikes_in) * pA\n",
" recordable inline I_syn pA = convolve(syn_kernel, spikes_in.weight)\n",
" V_m' = -(V_m - E_L) / tau_m + (I_syn + I_dAP + I_e) / C_m\n",
"\n",
" parameters:\n",
Expand All @@ -153,7 +153,7 @@
" T_dAP ms = 10 ms # time window over which the dendritic current clamp is active\n",
"\n",
" input:\n",
" spikes_in <- spike\n",
" spikes_in <- spike(weight pA)\n",
"\n",
" output: \n",
" spike\n",
Expand Down Expand Up @@ -538,7 +538,7 @@
" equations:\n",
" # alpha shaped postsynaptic current kernel\n",
" kernel syn_kernel = (e / tau_syn) * t * exp(-t / tau_syn)\n",
" recordable inline I_syn pA = convolve(syn_kernel, spikes_in) * pA\n",
" recordable inline I_syn pA = convolve(syn_kernel, spikes_in.weight)\n",
" V_m' = -(V_m - E_L) / tau_m + (enable_I_syn * I_syn + I_dAP + I_e) / C_m\n",
"\n",
" parameters:\n",
Expand All @@ -556,7 +556,7 @@
" T_dAP ms = 10 ms # time window over which the dendritic current clamp is active\n",
"\n",
" input:\n",
" spikes_in <- spike\n",
" spikes_in <- spike(weight pA)\n",
"\n",
" output:\n",
" spike\n",
Expand Down Expand Up @@ -772,7 +772,7 @@
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
Expand Down

0 comments on commit 74c92f2

Please sign in to comment.