The provided code is designed to simulate the spatial organization of a neural network comprising multiple neuron types. The focus of this model is on the spatial distribution of two primary neuron types, Medium Spiny Neurons (MSNs) and Fast-Spiking Interneurons (FSNs), within a defined physical space. This setup is commonly used to emulate neural networks in the brain, such as those found in the striatum.
Medium Spiny Neurons (MSNs):
Fast-Spiking Interneurons (FSNs):
Physical Constraints:
net.PhysicalDimensions
). The neurons are distributed in space, maintaining a minimum distance from one another (limit
), which reflects the biological reality of physical constraints imposed by neurite arborizations and the extracellular matrix.Population Proportions:
net.FSpercentage
), mimicking the natural biological variability in neuron types within the brain regions.Spatial Randomization:
limit
). This process is biologically inspired by the physical space required for proper synaptic connectivity and to avoid overlap of neural dendrites and somas.By integrating these biological principles, the code attempts to create a realistic spatial model of a neuronal network, enabling the study of neural interactions and network dynamics that are representative of actual brain tissue organization. This spatial setup is a foundational step used in larger simulations to explore neural connectivity and functional implications in health and disease.