passiveCell.cell.nml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <neuroml xmlns="http://www.neuroml.org/schema/neuroml2"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.neuroml.org/schema/neuroml2 ../Schemas/NeuroML2/NeuroML_v2beta4.xsd"
  5. id="hhcell">
  6. <!-- Single compartment cell -->
  7. <ionChannelHH id="passiveChan" conductance="10pS">
  8. <notes>Leak conductance</notes>
  9. </ionChannelHH>
  10. <cell id="passiveCell">
  11. <morphology id="morph1">
  12. <segment id="0" name="soma">
  13. <proximal x="0" y="0" z="0" diameter="17.841242"/> <!--Gives a convenient surface area of 1000.0 um^2-->
  14. <distal x="0" y="0" z="0" diameter="17.841242"/>
  15. </segment>
  16. <segmentGroup id="soma_group">
  17. <member segment="0"/>
  18. </segmentGroup>
  19. </morphology>
  20. <biophysicalProperties id="bioPhys1">
  21. <membraneProperties>
  22. <channelDensity id="leak" ionChannel="passiveChan" condDensity="3.0 S_per_m2" erev="-70.0mV" ion="non_specific"/>
  23. <spikeThresh value="-20mV"/>
  24. <specificCapacitance value="1.0 uF_per_cm2"/>
  25. <initMembPotential value="-65mV"/>
  26. </membraneProperties>
  27. <intracellularProperties>
  28. <resistivity value="0.0354 kohm_cm"/> <!-- Note: not used in single compartment simulations -->
  29. </intracellularProperties>
  30. </biophysicalProperties>
  31. </cell>
  32. </neuroml>