CellParser.set_up_biophysics¶
- 
single_cell_parser.cell_parser.CellParser.set_up_biophysics(parameters, full=False)¶
- Initialize membrane properties. - Default method for determining the compartment sizes for NEURON simulation, initializing membrane properties, and mechanisms. Properties are constants that are defined for an entire structure. Mechanisms have specific densities (not always uniform), and can be transient. Poperties are added to the section by executing the NEURON command - sec.<property>=<value>.- Properties:
- \(C_m\) (see - insert_membrane_properties())
- \(R_a\) (see - insert_membrane_properties())
- ion properties (see - _insert_ion_properties())
 
 
- Mechanisms:
- range mechanisms (see - insert_range_mechanisms())
 
 
 - The workflow is as follows: - Add membrane properties to all structures (see - insert_membrane_properties()).
- Determine the number of segments for each structure (see - determine_nseg()).
- Add range mechanisms to all structures (see - insert_range_mechanisms()).
- Add ion properties to all structures (see - _insert_ion_properties()), if the- ionkeyword is present in the Cell parameters file.
- Add spines, if the spineskeyword is present in the Cell parameters file.
- 5.1 Add passive spines if - pasis present in the range mechanisms (see- _add_spines()). 5.2 Add passive spines to anomalously rectifying membrane if- aris present in the range mechanisms (see- _add_spines_ar()).
 
- Add spines, if the 
 - Parameters:¶
- parameters : NTParameterSet¶
- Neuron biophysical parameters, read from a Cell parameters file. 
- full : bool¶
- Whether or not to use full spatial discretization. 
 
 
Documentation unclear, incomplete, broken or wrong? Let us know