The provided code simulates synaptic dynamics, focusing on excitatory postsynaptic potentials (EPSPs) in a computational neuroscience model. Below are the biological elements being modeled:
Synapse Types: The model considers three pathways for synaptic input: MF (Mossy Fiber), AC (Associational/Commissural), and PP (Perforant Pathway). These are common pathways studied in hippocampal models.
Excitatory Synaptic Transmission:
NAratio
) indicates the relative contribution of NMDA and AMPA receptor currents, critical for synaptic plasticity and signaling. AMPA receptors mediate fast excitatory transmission, while NMDA receptors have slower kinetics and are voltage-dependent, allowing Ca²⁺ influx crucial for synaptic plasticity.Rise and Decay Times: atau
and ntau
represent the rise and decay time constants of AMPA (I_AMPA
) and NMDA (Inmda
) receptor-mediated currents, respectively. These parameters describe how quickly a synaptic current reaches its peak and how long it lasts, fundamental aspects that influence the shape and duration of EPSPs.
Release Probability and Facilitation:
p0
and Af
specify the basal release probability and the facilitation increment per action potential for associational/commissural synapses.p0mf
and Afmf
specify these values for Mossy Fiber synapses, reflecting differences in release dynamics between pathways.Short-term Plasticity:
tauD
and tauF
denote the recovery time of the readily releasable pool (RRP) and the decay time of facilitation, respectively, playing roles in short-term synaptic plasticity. These parameters influence the presynaptic terminal's ability to adapt to different firing rates.Weight Adjustments:
wt
and wtstep
control synaptic weight efficiency for specific synapse types. Synaptic weight refers to the strength of a synapse, affecting how signals are integrated across synapses.Timing and Frequency:
NetStim
object characterizes the timing and frequency of synaptic stimulation, controlled by parameters like start
, number
, and interval
. The stimulation mimics naturalistic synaptic input patterns, influencing the EPSP dynamics.Membrane Potential:
Vrest
denotes the resting membrane potential of neurons. A common assumption for many neuron types, this value typically lies around -70 mV and sets the baseline for any synaptic input-induced changes in membrane potential.The code aims to simulate the synaptic response under varying conditions, providing insights into synaptic integration and plasticity, fundamental phenomena in neural signal processing. These simulations help understand how different synapses and pathways contribute to overall network activity and behavior in neural circuits, especially within hippocampal structures where these pathways are prevalent.