nest / nestml

A domain specific language for neuron and synapse models in spiking neural network simulation
GNU General Public License v2.0
46 stars 45 forks source link

Add support for non-linear dynamics in synapses #1082

Open pnbabu opened 2 months ago

pnbabu commented 2 months ago

Currently, NESTML supports only synapse models with linear dynamics. The code should be extended to support synapses with non-linear dynamics.

For example,

equations:
  x' = (1. - x) / tau_D
  u' = (U - u) / tau_F
  U' = (U_0 - U) / tau_A