The provided computational code models a synaptic transmission process that incorporates both AMPA and NMDA receptors, with an added focus on NMDA receptor functionality influenced by magnesium (Mg) blocking. This model simulates synaptic activity and plasticity mechanisms that are central to understanding how neurons in the brain communicate and adapt over time. Here, the synaptic transmission is modeled with kinetics and learning rules commonly found in striatal medium spiny neurons.
AMPA Receptors:
tau1_ampa
and tau2_ampa
. These values determine the rise and decay of synaptic conductance.NMDA Receptors:
tau1_nmda
and tau2_nmda
. The model also includes a magnesium block (MgBlock
function), which is a prominent feature of NMDA receptors that depends on membrane potential.w_ampa
, w_nmda
) associated with both receptor types can change, governed by intracellular calcium concentrations (ca_nmdai
) and learning rules reflected by functions such as pind_LTP
and pind_LTD
.ca_nmdai
, cali
), contributing to weight changes of synaptic conductance indicative of plastic changes.Glutamate:
glu
) influences synaptic dynamics and is used in functions like gluind1
and gluind2
that dictate synaptic modulation.Dopamine:
dopamine
) affects synaptic modification rules, influencing AMPA receptor weights and potentially modulating plasticity.This code models the fast synaptic response and plastic nature of synaptic connections through AMPA and NMDA receptors. It captures essential aspects of synaptic strength modulation, including the impact of neurotransmitter concentration and neuromodulation, which are central to learning and memory processes in neural circuits. The inclusion of specific biological mechanisms such as Mg²⁺ block in NMDA receptors and calcium dynamics demonstrates the complexity underlying neural connectivity and adaptability.